POST
/
oauth
/
revoke
curl https://api.pipedream.com/v1/oauth/revoke \
  -H 'Content-Type: application/json' \
  -d '{ "token": "<access token>", "client_id": "<client_id>", "client_secret": "<client secret>" }'
# This endpoint will return a `200 OK` response with an empty body if the token was successfully revoked:
{}

Revokes an access token, rendering it invalid for future requests.

Endpoint

POST /oauth/revoke

Parameters




curl https://api.pipedream.com/v1/oauth/revoke \
  -H 'Content-Type: application/json' \
  -d '{ "token": "<access token>", "client_id": "<client_id>", "client_secret": "<client secret>" }'
# This endpoint will return a `200 OK` response with an empty body if the token was successfully revoked:
{}