v2

latestOpenAPI 3.1.02026-07-3139137119.0 KB
onramp

Create Onramp Auth Token

Create a short-lived Stripe Link auth token client secret for React Native seamless sign-in. The server uses the previously stored Link OAuth token for the provided auth intent.

post/onramp/auth/token

Headers

X-API-KEYstring required

API key for authentication

Request body

auth_intent_idstring required

Example request

{
  "auth_intent_id": "lai_test_123"
}

Response

Link auth token client secret created

link_auth_token_client_secretstring required
expires_ininteger required

Example response

{
  "expires_in": 5400,
  "link_auth_token_client_secret": "latcs_test_123"
}