LogoRecal
Rest apiEndpoints

Get OAuth Links

GET
/v1/users/{userId}/oauth/links

Get the auth urls for the oauth providers

AuthorizationBearer <token>

Recal API token

In: header

Path Parameters

userId*string
Match^[A-Za-z0-9][A-Za-z0-9._-]{2,127}$

Query Parameters

accessType*|

Access type of the oauth connection

scope*array<string>||||

Scope of the oauth connection

provider?array<>|unknown|unknown

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/users/user_123/oauth/links?accessType=offline&scope=string"
{  "data": [    {      "link": "http://example.com",      "provider": "google"    }  ]}