Last updated 6 days ago
This API gives you list of all the platforms supported by TexAu.
This API gives you the list of authVariables that will be used in adding a social account.
authVariables
Page
1
Size
50
Search Param
string
Search Type
Pass orgUserId and workspaceId as ‘{"orgUserId":"123","workspaceId":"123"}’
curl -L \ --url '/api/v1/public/platforms?start=1&limit=50' \ --header 'Authorization: Bearer JWT' \ --header 'X-TexAu-Context: text'
{ "success": true, "message": "Platforms fetch successful", "total": 1, "data": [ { "id": "Platform ID", "name": "Platforms Name", "label": "Platforms Label", "auth": { "type": "cookie|apiKey|OAuth2", "isOptional": false } } ] }
curl -L \ --url '/api/v1/public/platforms/{platformId}' \ --header 'Authorization: Bearer JWT' \ --header 'X-TexAu-Context: text'
{ "success": true, "message": "Platform fetched successfully", "data": { "id": "Platform ID", "name": "Platforms Name", "label": "Platforms Label", "auth": { "type": "cookie|apiKey|OAuth2", "isOptional": false }, "authVariables": [ { "id": "The ID of platform authentication variable", "placement": "header|query|body|url|cookie", "type": "text", "description": "text", "label": "CSRF Token", "name": "csrf-token" } ] } }