Skip to main content
POST
/
integrations
/
plaid
/
accounts
Access Plaid accounts
curl --request POST \
  --url https://api.guile.app/integrations/plaid/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "body": {
    "accessToken": "<string>"
  }
}
'
{
  "items": [
    {
      "id": "<string>",
      "maskedAccountNumber": "<string>",
      "type": "checking",
      "name": "<string>",
      "financialInstitutionName": "<string>"
    }
  ],
  "count": 1
}

Body

application/json
body
object
required

A token to exchange with Plaid to authorize access to financial institutions.

Response

Ok. The operation succeeded.

A list response for resources. This response contains the full result set after any filters are applied.

items
object[]
required
count
integer<int16>
required
Required range: x >= 0