Javascript
import Ivy from '@getivy/node-sdk'; const client = new Ivy({ apiKey: 'My API Key', }); const session = await client.data.session.retrieve({ id: 'id' }); console.log(session.id);
{ "id": "<string>", "referenceId": "<string>", "displayId": "<string>", "merchantId": "<string>", "status": "open", "createdAt": 123, "updatedAt": 123, "expiresAt": 123, "locale": "de", "market": "AF", "metadata": {}, "prefill": { "bankId": "<string>" }, "disableBankSelection": true, "successCallbackUrl": "<string>", "errorCallbackUrl": "<string>" }
Retrieves the details of a data session by its ID.
API key for authentication
Returns the details of the data session
The response is of type object.
object
Was this page helpful?