plaid

Get Link Token

The /link/token/get endpoint gets information about a Link session, including all callbacks fired during the session along with their metadata, including the public token. This endpoint is used with Link flows that don't provide a public token via frontend callbacks, such as the Hosted Link flow and the Multi-Item Link flow. It also can be useful for debugging purposes.

post/link/token/get

Request body

client_idstring

Your Plaid API client_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.

secretstring

Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.

link_tokenstring required

A link_token from a previous invocation of /link/token/create

Response

OK

link_tokenstring required

A link_token, which can be supplied to Link in order to initialize it and receive a public_token, which can be exchanged for an access_token.

created_atstring date-time nullable required

The creation timestamp for the link_token, in ISO 8601 format.

expirationstring date-time nullable required

The expiration timestamp for the link_token, in ISO 8601 format.

request_idstring required

A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.

Changes