POST
/
fusion
/
user-accounts
/
fetch
Fetch an account
curl --request POST \
  --url https://api.tapti.ai/fusion/user-accounts/fetch \
  --header 'Content-Type: application/json' \
  --data '{
  "user_account_ids": [
    "<string>"
  ]
}'
{
  "accounts": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "user_platform": "YOUTUBE",
      "platform_account_id": "UC_12345678",
      "display_name": "John Doe"
    }
  ]
}

Body

application/json

The account to fetch

The body is of type object.

Response

200
application/json

Account fetched successfully

The response is of type object.