Android / Support API / Update Support Address
Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
http.put_BasicAuth(true);
http.put_Login("login");
http.put_Password("password");
http.SetRequestHeader("Accept","application/json");
CkHttpResponse resp = http.QuickRequest("PUT","https://example.zendesk.com/api/v2/recipient_addresses/:support_address_id");
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
CkStringBuilder sbResponseBody = new CkStringBuilder();
resp.GetBodySb(sbResponseBody);
CkJsonObject jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
Log.i(TAG, "Response Body:");
Log.i(TAG, jResp.emit());
int respStatusCode = resp.get_StatusCode();
Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
if (respStatusCode >= 400) {
Log.i(TAG, "Response Header:");
Log.i(TAG, resp.header());
Log.i(TAG, "Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "recipient_address": {
// "email": "<string>",
// "brand_id": "<integer>",
// "cname_status": "unknown",
// "created_at": "<dateTime>",
// "default": "<boolean>",
// "dns_results": "verified",
// "domain_verification_code": "<string>",
// "domain_verification_status": "failed",
// "forwarding_status": "unknown",
// "id": "<integer>",
// "name": "<string>",
// "spf_status": "unknown",
// "updated_at": "<dateTime>"
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
String v_Email = jResp.stringOf("recipient_address.email");
String Brand_id = jResp.stringOf("recipient_address.brand_id");
String Cname_status = jResp.stringOf("recipient_address.cname_status");
String Created_at = jResp.stringOf("recipient_address.created_at");
String Default = jResp.stringOf("recipient_address.default");
String Dns_results = jResp.stringOf("recipient_address.dns_results");
String Domain_verification_code = jResp.stringOf("recipient_address.domain_verification_code");
String Domain_verification_status = jResp.stringOf("recipient_address.domain_verification_status");
String Forwarding_status = jResp.stringOf("recipient_address.forwarding_status");
String Id = jResp.stringOf("recipient_address.id");
String Name = jResp.stringOf("recipient_address.name");
String Spf_status = jResp.stringOf("recipient_address.spf_status");
String Updated_at = jResp.stringOf("recipient_address.updated_at");
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
Curl Command
curl -u login:password -X PUT
-H "Accept: application/json"
https://example.zendesk.com/api/v2/recipient_addresses/:support_address_id
Postman Collection Item JSON
{
"name": "Update Support Address",
"request": {
"method": "PUT",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/recipient_addresses/:support_address_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"recipient_addresses",
":support_address_id"
],
"variable": [
{
"key": "support_address_id",
"value": "<integer>"
}
]
},
"description": "Updates an existing support address for your account.\n\nYou can't use this endpoint to update a support address's `email` property.\nInstead, you can create a new address using the [Create Support\nAddress](#create-support-address) endpoint.\n\n#### Allowed For\n\n* Admins\n* Agents with permission to manage channels and extensions. See the system permissions in [Creating custom roles and assigning agents (Enterprise)](https://support.zendesk.com/hc/en-us/articles/203662026-Creating-custom-roles-and-assigning-agents-Enterprise-#topic_cxn_hig_bd) in the Support Help Center\n"
},
"response": [
{
"name": "Success response",
"originalRequest": {
"method": "PUT",
"header": [
{
"description": "Added as a part of security scheme: basic",
"key": "Authorization",
"value": "Basic <credentials>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/recipient_addresses/:support_address_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"recipient_addresses",
":support_address_id"
],
"variable": [
{
"key": "support_address_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"recipient_address\": {\n \"email\": \"<string>\",\n \"brand_id\": \"<integer>\",\n \"cname_status\": \"unknown\",\n \"created_at\": \"<dateTime>\",\n \"default\": \"<boolean>\",\n \"dns_results\": \"verified\",\n \"domain_verification_code\": \"<string>\",\n \"domain_verification_status\": \"failed\",\n \"forwarding_status\": \"unknown\",\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"spf_status\": \"unknown\",\n \"updated_at\": \"<dateTime>\"\n }\n}"
}
]
}