Chilkat Online Tools

PureBasic / Anypoint Platform APIs / Add new category

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

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

    ; The following JSON is sent in the request body.

    ; {
    ;   "displayName": "test3",
    ;   "acceptedValues": [
    ;     "test",
    ;     "test2"
    ;   ],
    ;   "assetTypeRestrictions": [
    ;     "connector",
    ;     "extension"
    ;   ]
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"displayName","test3")
    CkJsonObject::ckUpdateString(json,"acceptedValues[0]","test")
    CkJsonObject::ckUpdateString(json,"acceptedValues[1]","test2")
    CkJsonObject::ckUpdateString(json,"assetTypeRestrictions[0]","connector")
    CkJsonObject::ckUpdateString(json,"assetTypeRestrictions[1]","extension")

    ; Adds the "Authorization: Bearer {{token}}" header.
    CkHttp::setCkAuthToken(http, "{{token}}")
    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")

    resp.i = CkHttp::ckPostJson3(http,"https://domain.com/exchange/api/v1/organizations/{{organization_id}}/categories","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Authorization: Bearer {{token}}"
	-H "Content-Type: application/json"
	-d '{
   "displayName":"test3",
   "acceptedValues":[
      "test",
      "test2"
   ],
   "assetTypeRestrictions":[
      "connector",
      "extension"
   ]
}'
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/categories

Postman Collection Item JSON

{
  "name": "Add new category",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n   \"displayName\":\"test3\",\r\n   \"acceptedValues\":[\r\n      \"test\",\r\n      \"test2\"\r\n   ],\r\n   \"assetTypeRestrictions\":[\r\n      \"connector\",\r\n      \"extension\"\r\n   ]\r\n}"
    },
    "url": {
      "raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/categories",
      "host": [
        "{{url}}"
      ],
      "path": [
        "exchange",
        "api",
        "v1",
        "organizations",
        "{{organization_id}}",
        "categories"
      ]
    },
    "description": "Generated from a curl request: \ncurl -X POST -H \\\"Authorization: Bearer d4677804-dab3-445a-9792-54de530ef345\\\" -H \\\"Content-Type: application/json\\\" -d '{\n  \\\"displayName\\\": “Custom_Field_Test”,\n  \\\"tagKey\\\": “Tag_Key_Test”,\n  \\\"dataType\\\": \\\"text\\\",\n  \\\"assetTypeRestrictions\\\": []\n}\n' \\\"https://anypoint.mulesoft.com/exchange/api/v1/organizations/59995d29-ebe2-43d9-a52b-766683fd41a7/fields\\\""
  },
  "response": [
  ]
}