GET
/
v1
/
linked-accounts
curl --request GET \
  --url https://api.papercuts.ai/v1/linked-accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'X-User-Token: <api-key>'
{
  "status": "ok",
  "linkedAccounts": [
    {
      "userId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "integrations": [
        {
          "integration": "<string>",
          "isAlive": true
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Papercuts API Key

X-User-Token
string
header
required

User Token received while integrating end user accounts

Response

200
application/json

Linked accounts retrieved successfully

The response is of type object.