POST
/
item
/
public_token
/
exchange
curl --request POST \
  --url http://localhost:8080/plaid-compatible/item/public_token/exchange \
  --header 'Content-Type: application/json' \
  --header 'PLAID-CLIENT-ID: <api-key>' \
  --data '{
  "client_id": "<string>",
  "secret": "<string>",
  "public_token": "<string>"
}'
{
  "access_token": "<string>",
  "item_id": "<string>",
  "request_id": "<string>"
}

Authorizations

PLAID-CLIENT-ID
string
header
required

Headers

Plaid-Version
string | null

Body

application/json

ItemPublicTokenExchangeRequest defines the request schema for /item/public_token/exchange

Response

200
application/json

OK

ItemPublicTokenExchangeResponse defines the response schema for /item/public_token/exchange