Chilkat Online Tools

PureBasic / Anypoint Platform APIs / Get all applications

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

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

    CkJsonObject::ckUpdateString(queryParams,"ascending","true")
    CkJsonObject::ckUpdateString(queryParams,"filter","all")
    CkJsonObject::ckUpdateInt(queryParams,"limit",10)
    CkJsonObject::ckUpdateString(queryParams,"literalMatch","true")
    CkJsonObject::ckUpdateInt(queryParams,"offset",0)
    CkJsonObject::ckUpdateString(queryParams,"sort","name")
    CkJsonObject::ckUpdateString(queryParams,"targetAdminSite","true")

    ; Adds the "Authorization: Bearer {{token}}" header.
    CkHttp::setCkAuthToken(http, "{{token}}")

    resp.i = CkHttp::ckQuickRequestParams(http,"GET","https://domain.com/apiplatform/repository/v2/organizations/{{organization_id}}/applications",queryParams)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(queryParams)
        ProcedureReturn
    EndIf

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



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(queryParams)


    ProcedureReturn
EndProcedure

Curl Command

curl -G -d "ascending=true"
	-d "filter=all"
	-d "limit=10"
	-d "literalMatch=true"
	-d "offset=0"
	-d "sort=name"
	-d "targetAdminSite=true"
	-H "Authorization: Bearer {{token}}"
https://domain.com/apiplatform/repository/v2/organizations/{{organization_id}}/applications

Postman Collection Item JSON

{
  "name": "Get all applications",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/apiplatform/repository/v2/organizations/{{organization_id}}/applications?ascending=true&filter=all&limit=10&literalMatch=true&offset=0&sort=name&targetAdminSite=true",
      "host": [
        "{{url}}"
      ],
      "path": [
        "apiplatform",
        "repository",
        "v2",
        "organizations",
        "{{organization_id}}",
        "applications"
      ],
      "query": [
        {
          "key": "ascending",
          "value": "true"
        },
        {
          "key": "filter",
          "value": "all"
        },
        {
          "key": "limit",
          "value": "10"
        },
        {
          "key": "literalMatch",
          "value": "true"
        },
        {
          "key": "offset",
          "value": "0"
        },
        {
          "key": "sort",
          "value": "name"
        },
        {
          "key": "targetAdminSite",
          "value": "true"
        }
      ]
    }
  },
  "response": [
  ]
}