Oauth Revoke
import requests
url = "https://app.ubik-agent.com/api/v1/oauth/revoke"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://app.ubik-agent.com/api/v1/oauth/revoke', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://app.ubik-agent.com/api/v1/oauth/revokeOauth Revoke
POST
/
oauth
/
revoke
Oauth Revoke
import requests
url = "https://app.ubik-agent.com/api/v1/oauth/revoke"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://app.ubik-agent.com/api/v1/oauth/revoke', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://app.ubik-agent.com/api/v1/oauth/revokeResponse
200 - application/json
Successful Response
Was this page helpful?
⌘I

