GET
/
v1
/
linked-accounts
/
{linkedAccountId}
curl --request GET \
  --url https://api.papercuts.ai/v1/linked-accounts/{linkedAccountId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-User-Token: <api-key>'
{
  "status": "ok",
  "linkedAccount": {
    "linkedAccountId": "<string>",
    "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

Path Parameters

linkedAccountId
string
required

Unique identifier for the linked account

Response

200
application/json
Linked account retrieved successfully
status
enum<string>
Available options:
ok,
error
linkedAccount
object