Complete Integration Oauth
curl --request GET \
--url https://api.veridical.dev/api/v1/integrations/oauth/callback \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.veridical.dev/api/v1/integrations/oauth/callback"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.veridical.dev/api/v1/integrations/oauth/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}control
Complete Integration Oauth
GET
/
api
/
v1
/
integrations
/
oauth
/
callback
Complete Integration Oauth
curl --request GET \
--url https://api.veridical.dev/api/v1/integrations/oauth/callback \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.veridical.dev/api/v1/integrations/oauth/callback"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.veridical.dev/api/v1/integrations/oauth/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Required string length:
1 - 4096Required string length:
32 - 512Response
Successful Response
The response is of type Response Complete Integration Oauth Api V1 Integrations Oauth Callback Get · object.
Last modified on July 28, 2026
⌘I

