curl --request POST \
--url https://api.kajabi.com/v1/oauth/revoke \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'token=<string>'access_token and refresh_tokenEither token may be provided to “log out” of the API session. Both tokens we be invalidated.
token with your access_token or refresh_tokenAuthorization header as Bearer access_token to authenticate the request.curl --request POST \
--url https://api.kajabi.com/v1/oauth/revoke \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'token=<string>'Was this page helpful?