Look up a fulfilled purchase by Stripe Checkout Session id
GET
/v1/portal/purchase/{sessionId}
const url = 'https://api.extport.dev/api/v1/portal/purchase/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.extport.dev/api/v1/portal/purchase/examplePolled by the checkout success page. 404 until the webhook fulfills; 410 once the 24h window has passed.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”sessionId
required
string
Responses
Section titled “Responses”Fulfilled
Not fulfilled (yet)
Window expired