Chilkat Online Tools

VBScript / Anypoint Platform APIs / Get all consumer application instances

Back to Collection Items

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

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

set http = CreateObject("Chilkat_9_5_0.Http")

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

set sbResponseBody = CreateObject("Chilkat_9_5_0.StringBuilder")
success = http.QuickGetSb("https://domain.com/exchange/api/v2/organizations/{{organization_id}}/applications/895843/instances",sbResponseBody)
If (success = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine("Response status code = " & http.LastStatus)
outFile.WriteLine(sbResponseBody.GetAsString())

outFile.Close

Curl Command

curl -X GET
	-H "Authorization: Bearer {{token}}"
	-H "Content-Type: application/json"
https://domain.com/exchange/api/v2/organizations/{{organization_id}}/applications/895843/instances

Postman Collection Item JSON

{
  "name": "Get all consumer application instances",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{url}}/exchange/api/v2/organizations/{{organization_id}}/applications/895843/instances",
      "host": [
        "{{url}}"
      ],
      "path": [
        "exchange",
        "api",
        "v2",
        "organizations",
        "{{organization_id}}",
        "applications",
        "895843",
        "instances"
      ]
    },
    "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": [
  ]
}