class Stytch::Users
def revoke(
(no documentation yet)
status_code::
The type of this field is +String+.
Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue.
request_id::
An object with the following fields:
== Returns:
The type of this field is +String+.
The ID of the Connected App.
connected_app_id::
The type of this field is +String+.
The unique ID of a specific User. You may use an `external_id` here if one is set for the user.
user_id::
== Parameters:
Connected App.
on the User's behalf. New tokens cannot be created until the User completes a new authorization flow with the
Revoke Connected App revokes a Connected App's access to a User and revokes all active tokens that have been created
def revoke( user_id:, connected_app_id: ) headers = {} request = {} post_request("/v1/users/#{user_id}/connected_apps/#{connected_app_id}/revoke", request, headers) end