Skip to main content
DocsPlatformsAPI ReferenceAI & Integrations
Connect

Get pending Facebook Page choices

Returns the Facebook Pages available after OAuth when the user must choose which Pages to connect. The selection token is short-lived and one-time.

GET/v1/connect/facebook/selection/{token}

Path Parameters

token*string
Length1 <= length

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/connect/facebook/selection/string"
{
  "success": true,
  "platform": "facebook",
  "expiresInSeconds": 0,
  "accounts": [
    {
      "id": "string",
      "type": "page",
      "platformUserId": "string",
      "displayName": "string",
      "username": "string",
      "imageUrl": "http://example.com"
    }
  ]
}
{
  "error": "string"
}