Chilkat Online Tools

PureBasic / Anypoint Platform APIs / Get csv formatted audit logs

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkHttpRequest.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

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

    CkHttpRequest::ckAddParam(req,"startDate","2021-04-20T12:24:36.971Z")
    CkHttpRequest::ckAddParam(req,"endDate","2021-04-21T12:24:36.971Z")
    CkHttpRequest::ckAddParam(req,"ascending","false")

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

    CkHttpRequest::ckAddParam(req,"accessToken",CkJsonObject::ckEmit(jsonParam4))

    CkHttpRequest::ckAddHeader(req,"Authorization","Bearer {{token}}")

    resp.i = CkHttp::ckPostUrlEncoded(http,"https://domain.com/audit/v2/organizations/{{organization_id}}/query.csv",req)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkHttpRequest::ckDispose(req)
        CkJsonObject::ckDispose(jsonParam4)
        ProcedureReturn
    EndIf

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



    CkHttp::ckDispose(http)
    CkHttpRequest::ckDispose(req)
    CkJsonObject::ckDispose(jsonParam4)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Authorization: Bearer {{token}}"
	--data-urlencode 'startDate=2021-04-20T12:24:36.971Z'
	--data-urlencode 'endDate=2021-04-21T12:24:36.971Z'
	--data-urlencode 'ascending=false'
	--data-urlencode 'accessToken={{token}}'
https://domain.com/audit/v2/organizations/{{organization_id}}/query.csv

Postman Collection Item JSON

{
  "name": "Get csv formatted audit logs",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "urlencoded",
      "urlencoded": [
        {
          "key": "startDate",
          "value": "2021-04-20T12:24:36.971Z",
          "type": "text"
        },
        {
          "key": "endDate",
          "value": "2021-04-21T12:24:36.971Z",
          "type": "text"
        },
        {
          "key": "ascending",
          "value": "false",
          "type": "text"
        },
        {
          "key": "accessToken",
          "value": "{{token}}",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{url}}/audit/v2/organizations/{{organization_id}}/query.csv",
      "host": [
        "{{url}}"
      ],
      "path": [
        "audit",
        "v2",
        "organizations",
        "{{organization_id}}",
        "query.csv"
      ]
    }
  },
  "response": [
  ]
}