Skip to main content
GET
/
oauth
/
token
/
{integration}
Get Access Token
curl --request GET \
  --url https://api.veryfront.com/oauth/token/{integration} \
  --header 'Authorization: Bearer <token>'
{
  "accessToken": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

integration
string
required

Integration name (e.g., "github", "slack")

Query Parameters

projectId
string<uuid>

Project ID (omit for user-level)

endUserId
string

End-user ID for per-user token flows

Maximum string length: 255

Response

Token response (success, auth required, or refresh failed)

accessToken
string
required