Chilkat Online Tools

VB6 / EPC 2.0 - Partner Sandbox - 19.4 November [External] / [Partner] Send Acknowledgment Response

Back to Collection Items

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

Dim http As New ChilkatHttp
Dim success As Long

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

' The following JSON is sent in the request body.

' {
'   "status": "processing",
'   "partnerStatus": "Order Accepted",
'   "referenceNumber": "ORDER_REFERENCE_NUMBER",
'   "respondingParty ": {
'     "name": "COMPANY_NAME",
'     "address": "COMPANY_STREET_ADDRESS",
'     "city": "COMPANY_CITY",
'     "state": "COMPANY_STATE",
'     "postalCode": "COMPANY_ZIP_CODE",
'     "pointOfContact": {
'       "name": "CONTACT_NAME",
'       "role": "CONTACT_ROLE",
'       "phone": "CONTACT_PHONE_NUMBER",
'       "email": "CONTACT_EMAIL"
'     }
'   }
' }

Dim json As New ChilkatJsonObject
success = json.UpdateString("status","processing")
success = json.UpdateString("partnerStatus","Order Accepted")
success = json.UpdateString("referenceNumber","ORDER_REFERENCE_NUMBER")
success = json.UpdateString("""respondingParty "".name","COMPANY_NAME")
success = json.UpdateString("""respondingParty "".address","COMPANY_STREET_ADDRESS")
success = json.UpdateString("""respondingParty "".city","COMPANY_CITY")
success = json.UpdateString("""respondingParty "".state","COMPANY_STATE")
success = json.UpdateString("""respondingParty "".postalCode","COMPANY_ZIP_CODE")
success = json.UpdateString("""respondingParty "".pointOfContact.name","CONTACT_NAME")
success = json.UpdateString("""respondingParty "".pointOfContact.role","CONTACT_ROLE")
success = json.UpdateString("""respondingParty "".pointOfContact.phone","CONTACT_PHONE_NUMBER")
success = json.UpdateString("""respondingParty "".pointOfContact.email","CONTACT_EMAIL")

' Adds the "Authorization: Bearer {{partner_token}}" header.
http.AuthToken = "{{partner_token}}"
http.SetRequestHeader "Content-Type","application/json"

Dim sbRequestBody As New ChilkatStringBuilder
success = json.EmitSb(sbRequestBody)

Dim resp As ChilkatHttpResponse
Set resp = http.PTextSb("PATCH","https://domain.com/",sbRequestBody,"utf-8","application/json",0,0)
If (http.LastMethodSuccess = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Debug.Print resp.StatusCode
Debug.Print resp.BodyStr

Curl Command

curl -X PATCH
	-H "Authorization: Bearer {{partner_token}}"
	-H "Content-Type: application/json"
	-d '{
    "status": "processing",
    "partnerStatus": "Order Accepted",
    "referenceNumber": "ORDER_REFERENCE_NUMBER",
    "respondingParty ": {
        "name": "COMPANY_NAME",
        "address": "COMPANY_STREET_ADDRESS",
        "city": "COMPANY_CITY",
        "state": "COMPANY_STATE",
        "postalCode": "COMPANY_ZIP_CODE",
        "pointOfContact": {
            "name": "CONTACT_NAME",
            "role": "CONTACT_ROLE",
            "phone": "CONTACT_PHONE_NUMBER",
            "email": "CONTACT_EMAIL"
        }
    }
}'
https://domain.com/

Postman Collection Item JSON

{
  "name": "[Partner] Send Acknowledgment Response",
  "_postman_id": "1165b237-e991-481e-bd7b-f05d17b2de2f",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{partner_token}}",
        "type": "text"
      },
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"status\": \"processing\",\n    \"partnerStatus\": \"Order Accepted\",\n    \"referenceNumber\": \"ORDER_REFERENCE_NUMBER\",\n    \"respondingParty \": {\n        \"name\": \"COMPANY_NAME\",\n        \"address\": \"COMPANY_STREET_ADDRESS\",\n        \"city\": \"COMPANY_CITY\",\n        \"state\": \"COMPANY_STATE\",\n        \"postalCode\": \"COMPANY_ZIP_CODE\",\n        \"pointOfContact\": {\n            \"name\": \"CONTACT_NAME\",\n            \"role\": \"CONTACT_ROLE\",\n            \"phone\": \"CONTACT_PHONE_NUMBER\",\n            \"email\": \"CONTACT_EMAIL\"\n        }\n    }\n}"
    },
    "url": "{{api_host}}/partner/v2/transactions/{{transaction_id}}/response"
  },
  "response": [
  ]
}