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;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "account_name": "{{acc_name}}",
// "channel": "CP",
// "country": "CA",
// "device": {
// "time": "2019-09-23T12:45:58.000Z"
// }
// }
CkJsonObject json = new CkJsonObject();
json.UpdateString("account_name","{{acc_name}}");
json.UpdateString("channel","CP");
json.UpdateString("country","CA");
json.UpdateString("device.time","2019-09-23T12:45:58.000Z");
http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("X-GP-Idempotency","12348");
http.SetRequestHeader("X-GP-Version","{{version}}");
// Adds the "Authorization: Bearer {{token}}" header.
http.put_AuthToken("{{token}}");
http.SetRequestHeader("Accept","application/json");
CkHttpResponse resp = http.PostJson3("https://{{url}}/ucp/devices","application/json",json);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
Log.i(TAG, resp.bodyStr());
}
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 -X POST
-H "Content-Type: application/json"
-H "Authorization: Bearer {{token}}"
-H "Accept: application/json"
-H "X-GP-Version: {{version}}"
-H "X-GP-Idempotency: 12348"
-d '{
"account_name": "{{acc_name}}",
"channel": "CP",
"country":"CA",
"device": {
"time": "2019-09-23T12:45:58.000Z"
}
}'
https://{{url}}/ucp/devices
Postman Collection Item JSON
{
"name": "TRA_10.0 Device Sync",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"var str = String(\"00000000\"+ Math.floor(Math.random()*100000000) + 1).slice(-8);",
"",
"pm.environment.set(\"reference\",str);"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
},
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
},
{
"key": "X-GP-Version",
"value": "{{version}}",
"type": "text"
},
{
"key": "X-GP-Idempotency",
"value": "12348",
"type": "text",
"disabled": true
}
],
"body": {
"mode": "raw",
"raw": "{\r\n\r\n \"account_name\": \"{{acc_name}}\",\r\n \"channel\": \"CP\",\r\n \"country\":\"CA\",\r\n \"device\": {\r\n \"time\": \"2019-09-23T12:45:58.000Z\"\r\n }\r\n }"
},
"url": {
"raw": "https://{{url}}/ucp/devices",
"protocol": "https",
"host": [
"{{url}}"
],
"path": [
"ucp",
"devices"
]
}
},
"response": [
]
}