Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* Use this online tool to generate code from sample JSON: Generate Code to Create JSON
* The following JSON is sent in the request body.
* {
* "aud": "",
* "jti": ""
* }
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJson = CreateObject('Chilkat.JsonObject')
loJson.UpdateString("aud","")
loJson.UpdateString("jti","")
* Adds the "Authorization: Bearer {{auth0_token}}" header.
loHttp.AuthToken = "{{auth0_token}}"
loHttp.SetRequestHeader("Content-Type","application/json")
loResp = loHttp.PostJson3("https://{{auth0_domain}}/api/v2/blacklists/tokens","application/json",loJson)
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loJson
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
RELEASE loJson
Curl Command
curl -X POST
-H "Authorization: Bearer {{auth0_token}}"
-H "Content-Type: application/json"
-d '{
"aud": "",
"jti": ""
}'
https://{{auth0_domain}}/api/v2/blacklists/tokens
Postman Collection Item JSON
{
"name": "Blacklist a token",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{auth0_token}}"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"aud\": \"\",\r\n \"jti\": \"\"\r\n}"
},
"url": {
"raw": "https://{{auth0_domain}}/api/v2/blacklists/tokens",
"protocol": "https",
"host": [
"{{auth0_domain}}"
],
"path": [
"api",
"v2",
"blacklists",
"tokens"
]
},
"description": "Adds the token identified by the <code>jti</code> to a blacklist for the tenant."
},
"response": [
]
}