Publishing
GET
/profiles/{id}

One profile and the social accounts connected to it. Pass ?refresh=true to re-sync them first.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings > API & Webhooks. Keys start with sf_live_.

In: header

Path Parameters

id*string

Query Parameters

refresh?string

Re-sync the connected accounts before answering.

Value in

  • "true"
  • "1"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/profiles/string"
{  "data": {    "id": "string",    "name": "string",    "description": "string",    "color": "string",    "isDefault": true,    "createdAt": "2019-08-24T14:15:22Z",    "accounts": [      {        "id": "string",        "platform": "string",        "username": "string",        "displayName": "string",        "pictureUrl": "http://example.com"      }    ]  }}