List Social Accounts
Lists the social accounts linked to an account or user.
Query parameters
The Account that the social accounts are connected to. Provide either this or user_id.
The User that the social accounts are connected to. Provide either this or account_id.
Only return social accounts for the platform that is specified.
Only return social accounts that are verified on the platform.
Only return social accounts that have these scopes.
The number of social accounts to return.
Cursor to fetch the page after (from page_info.end_cursor).
The number of social accounts to return from the end of the range.
Cursor to fetch the page before (from page_info.start_cursor).
The field to sort social accounts by.
Sort direction.
Response
filtered to accounts holding the requested scope
Example response
{
"data": [
{
"error": "You don't have permission to share this account. Ask an admin of its Meta Business Portfolio to grant you full control, then share it again.",
"external_id": "1234567891",
"id": "sacc_xxxxxxxxxxxxxx",
"name": "Shine Time Auto Detailing",
"parent_social_account": {
"external_id": "555111",
"id": "sacc_xxxxxxxxxxxxxx",
"name": "Shine Time Auto Detailing",
"platform": "facebook",
"profile_picture_url": "https://shinetime.example/logo.png",
"username": "shinetimedetailing",
"verified": true
},
"platform": "instagram",
"profile_picture_url": "https://shinetime.example/logo.png",
"scopes": [
"advertise"
],
"url": "https://instagram.com/shinetimedetail",
"username": "shinetimedetail",
"verified": true
}
],
"page_info": {
"end_cursor": "WyJjdXJzb3IiLDFd",
"start_cursor": "WyJjdXJzb3IiLDFd"
}
}Changes
Changed in 4 of the 41 revisions of this API.226
- ○
added the required property
data/items/parent_social_accountto the response with the200statusresponse-required-property-added
- ○
- ○
added the optional property
error/codeto the response with the400statusresponse-optional-property-added
- ○
added the optional property
error/codeto the response with the401statusresponse-optional-property-added
This revision also has 9 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ●
added the new
discordenum value to thedata/items/platformresponse property for the response status200response-property-enum-value-added
- ●
added the new
telegramenum value to thedata/items/platformresponse property for the response status200response-property-enum-value-added
- ○
added the new enum value
discordto thequeryrequest parameterplatformrequest-parameter-enum-value-added
- ○
added the new enum value
telegramto thequeryrequest parameterplatformrequest-parameter-enum-value-added
- ○
added the required property
data/items/errorto the response with the200statusresponse-required-property-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●
- ▲
the response property
data/items/urlbecame nullable for the status200response-property-became-nullable
- ▲
the response property
data/items/usernamebecame nullable for the status200response-property-became-nullable
- ▲