Chilkat Online Tools

DataFlex / Support API / Create Custom Object Record

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sName
    String sCreated_at
    String sCreated_by_user_id
    String sDo8
    String sAdipisicing_e
    String sCommodo0
    String sSunta4
    String sCustom_object_key
    String sExternal_id
    String sId
    String sUpdated_at
    String sUpdated_by_user_id
    String sV_Url
    String sTemp1
    Boolean bTemp1

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Set ComBasicAuth Of hoHttp To True
    Set ComLogin Of hoHttp To "login"
    Set ComPassword Of hoHttp To "password"

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "custom_object_record": {
    //     "name": "<string>",
    //     "created_at": "<dateTime>",
    //     "created_by_user_id": "<string>",
    //     "custom_object_fields": {
    //       "do8": "<string>",
    //       "adipisicing_e": "<string>",
    //       "commodo0": "<string>",
    //       "sunta4": "<string>"
    //     },
    //     "custom_object_key": "<string>",
    //     "external_id": "<string>",
    //     "id": "<string>",
    //     "updated_at": "<dateTime>",
    //     "updated_by_user_id": "<string>",
    //     "url": "<string>"
    //   }
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "custom_object_record.name" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.created_at" "<dateTime>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.created_by_user_id" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.custom_object_fields.do8" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.custom_object_fields.adipisicing_e" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.custom_object_fields.commodo0" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.custom_object_fields.sunta4" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.custom_object_key" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.external_id" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.id" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.updated_at" "<dateTime>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.updated_by_user_id" "<string>" To iSuccess
    Get ComUpdateString Of hoJson "custom_object_record.url" "<string>" To iSuccess

    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
    Send ComSetRequestHeader To hoHttp "Accept" "application/json"

    Get pvComObject of hoJson to vJson
    Get ComPostJson3 Of hoHttp "https://example.zendesk.com/api/v2/custom_objects/:custom_object_key/records" "application/json" vJson To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "custom_object_record": {
    //     "name": "<string>",
    //     "created_at": "<dateTime>",
    //     "created_by_user_id": "<string>",
    //     "custom_object_fields": {
    //       "do8": "<string>",
    //       "adipisicing_e": "<string>",
    //       "commodo0": "<string>",
    //       "sunta4": "<string>"
    //     },
    //     "custom_object_key": "<string>",
    //     "external_id": "<string>",
    //     "id": "<string>",
    //     "updated_at": "<dateTime>",
    //     "updated_by_user_id": "<string>",
    //     "url": "<string>"
    //   }
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    Get ComStringOf Of hoJResp "custom_object_record.name" To sName
    Get ComStringOf Of hoJResp "custom_object_record.created_at" To sCreated_at
    Get ComStringOf Of hoJResp "custom_object_record.created_by_user_id" To sCreated_by_user_id
    Get ComStringOf Of hoJResp "custom_object_record.custom_object_fields.do8" To sDo8
    Get ComStringOf Of hoJResp "custom_object_record.custom_object_fields.adipisicing_e" To sAdipisicing_e
    Get ComStringOf Of hoJResp "custom_object_record.custom_object_fields.commodo0" To sCommodo0
    Get ComStringOf Of hoJResp "custom_object_record.custom_object_fields.sunta4" To sSunta4
    Get ComStringOf Of hoJResp "custom_object_record.custom_object_key" To sCustom_object_key
    Get ComStringOf Of hoJResp "custom_object_record.external_id" To sExternal_id
    Get ComStringOf Of hoJResp "custom_object_record.id" To sId
    Get ComStringOf Of hoJResp "custom_object_record.updated_at" To sUpdated_at
    Get ComStringOf Of hoJResp "custom_object_record.updated_by_user_id" To sUpdated_by_user_id
    Get ComStringOf Of hoJResp "custom_object_record.url" To sV_Url


End_Procedure

Curl Command

curl  -u login:password -X POST
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "custom_object_record": {
    "name": "<string>",
    "created_at": "<dateTime>",
    "created_by_user_id": "<string>",
    "custom_object_fields": {
      "do8": "<string>",
      "adipisicing_e": "<string>",
      "commodo0": "<string>",
      "sunta4": "<string>"
    },
    "custom_object_key": "<string>",
    "external_id": "<string>",
    "id": "<string>",
    "updated_at": "<dateTime>",
    "updated_by_user_id": "<string>",
    "url": "<string>"
  }
}'
https://example.zendesk.com/api/v2/custom_objects/:custom_object_key/records

Postman Collection Item JSON

{
  "name": "Create Custom Object Record",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"custom_object_record\": {\n    \"name\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"created_by_user_id\": \"<string>\",\n    \"custom_object_fields\": {\n      \"do8\": \"<string>\",\n      \"adipisicing_e\": \"<string>\",\n      \"commodo0\": \"<string>\",\n      \"sunta4\": \"<string>\"\n    },\n    \"custom_object_key\": \"<string>\",\n    \"external_id\": \"<string>\",\n    \"id\": \"<string>\",\n    \"updated_at\": \"<dateTime>\",\n    \"updated_by_user_id\": \"<string>\",\n    \"url\": \"<string>\"\n  }\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v2/custom_objects/:custom_object_key/records",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "custom_objects",
        ":custom_object_key",
        "records"
      ],
      "variable": [
        {
          "key": "custom_object_key",
          "value": "<string>"
        }
      ]
    },
    "description": "Creates a custom object record according to all the properties described by a custom object definition\n\n#### Allowed For\n\n* Agents\n"
  },
  "response": [
    {
      "name": "Created",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"custom_object_record\": {\n    \"name\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"created_by_user_id\": \"<string>\",\n    \"custom_object_fields\": {\n      \"do8\": \"<string>\",\n      \"adipisicing_e\": \"<string>\",\n      \"commodo0\": \"<string>\",\n      \"sunta4\": \"<string>\"\n    },\n    \"custom_object_key\": \"<string>\",\n    \"external_id\": \"<string>\",\n    \"id\": \"<string>\",\n    \"updated_at\": \"<dateTime>\",\n    \"updated_by_user_id\": \"<string>\",\n    \"url\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/custom_objects/:custom_object_key/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "custom_objects",
            ":custom_object_key",
            "records"
          ],
          "variable": [
            {
              "key": "custom_object_key"
            }
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"custom_object_record\": {\n    \"name\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"created_by_user_id\": \"<string>\",\n    \"custom_object_fields\": {\n      \"do8\": \"<string>\",\n      \"adipisicing_e\": \"<string>\",\n      \"commodo0\": \"<string>\",\n      \"sunta4\": \"<string>\"\n    },\n    \"custom_object_key\": \"<string>\",\n    \"external_id\": \"<string>\",\n    \"id\": \"<string>\",\n    \"updated_at\": \"<dateTime>\",\n    \"updated_by_user_id\": \"<string>\",\n    \"url\": \"<string>\"\n  }\n}"
    }
  ]
}