Back to Collection Items
var os = require('os');
if (os.platform() == 'win32') {
if (os.arch() == 'ia32') {
var chilkat = require('@chilkat/ck-node21-win-ia32');
} else {
var chilkat = require('@chilkat/ck-node21-win64');
}
} else if (os.platform() == 'linux') {
if (os.arch() == 'arm') {
var chilkat = require('@chilkat/ck-node21-arm');
} else if (os.arch() == 'x86') {
var chilkat = require('@chilkat/ck-node21-linux32');
} else {
var chilkat = require('@chilkat/ck-node21-linux64');
}
} else if (os.platform() == 'darwin') {
if (os.arch() == 'arm64') {
var chilkat = require('@chilkat/ck-node21-mac-m1');
} else {
var chilkat = require('@chilkat/ck-node21-macosx');
}
}
function chilkatExample() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
var http = new chilkat.Http();
var 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.
// {
// "text": "EVENT_DESCRIPTION",
// "type": "EVENT_TYPE",
// "comments": "EVENT_COMMENTS",
// "resources": [
// {
// "id": "{{partner_resource_id}}",
// "name": "{{partner_resource_name}}",
// "mimeType": "{{partner_resource_mimeType}}"
// }
// ]
// }
var json = new chilkat.JsonObject();
json.UpdateString("text","EVENT_DESCRIPTION");
json.UpdateString("type","EVENT_TYPE");
json.UpdateString("comments","EVENT_COMMENTS");
json.UpdateString("resources[0].id","{{partner_resource_id}}");
json.UpdateString("resources[0].name","{{partner_resource_name}}");
json.UpdateString("resources[0].mimeType","{{partner_resource_mimeType}}");
// Adds the "Authorization: Bearer {{partner_token}}" header.
http.AuthToken = "{{partner_token}}";
http.SetRequestHeader("Content-Type","application/json");
// resp: HttpResponse
var resp = http.PostJson3("https://domain.com/","application/json",json);
if (http.LastMethodSuccess == false) {
console.log(http.LastErrorText);
return;
}
console.log(resp.StatusCode);
console.log(resp.BodyStr);
}
chilkatExample();
Curl Command
curl -X POST
-H "Authorization: Bearer {{partner_token}}"
-H "Content-Type: application/json"
-d '{
"text": "EVENT_DESCRIPTION",
"type": "EVENT_TYPE",
"comments": "EVENT_COMMENTS",
"resources": [
{
"id": "{{partner_resource_id}}",
"name": "{{partner_resource_name}}",
"mimeType": "{{partner_resource_mimeType}}"
}
]
}'
https://domain.com/
Postman Collection Item JSON
{
"name": "[Partner] Create a Transaction Event",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"// Extract Event identifier from response body",
"var jsonData = JSON.parse(responseBody);",
"var eventId = jsonData.id;",
"",
"// Set to an environment variable",
"postman.setEnvironmentVariable(\"event_id\", eventId);"
]
}
}
],
"_postman_id": "13de08d0-ce97-4bfa-9b95-518e06b6becc",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"type": "text",
"value": "Bearer {{partner_token}}"
},
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"text\": \"EVENT_DESCRIPTION\",\n \"type\": \"EVENT_TYPE\",\n \"comments\": \"EVENT_COMMENTS\",\n \"resources\": [\n {\n \"id\": \"{{partner_resource_id}}\",\n \"name\": \"{{partner_resource_name}}\",\n \"mimeType\": \"{{partner_resource_mimeType}}\"\n }\n ]\n}"
},
"url": "{{api_host}}/partner/v2/transactions/{{transaction_id}}/events"
},
"response": [
]
}