Chilkat Online Tools

Xojo / Anypoint Platform APIs / Reset client secret for consumer app

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 Chilkat.Http
Dim success As Boolean

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

Dim resp As Chilkat.HttpResponse
resp = http.QuickRequest("POST","https://domain.com/exchange/api/v1/organizations/{{organization_id}}/applications/895851/secret/reset")
If (http.LastMethodSuccess = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

System.DebugLog(Str(resp.StatusCode))
System.DebugLog(resp.BodyStr)

Curl Command

curl -X POST
	-H "Authorization: Bearer {{token}}"
	-H "Content-Type: application/json"
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/applications/895851/secret/reset

Postman Collection Item JSON

{
  "name": "Reset client secret for consumer app",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/applications/895851/secret/reset",
      "host": [
        "{{url}}"
      ],
      "path": [
        "exchange",
        "api",
        "v1",
        "organizations",
        "{{organization_id}}",
        "applications",
        "895851",
        "secret",
        "reset"
      ]
    }
  },
  "response": [
  ]
}