Overview#
Retrieve the temporary token details after reserving token space. This provides the token identifier and streaming authentication needed for data exchange.Retrieve Temporary Data Token#
Endpoint: GET /data-token/retrieve-temporary-data-token/{token_space_request_id}Path Parameters#
| Parameter | Type | Required | Description |
|---|
token_space_request_id | string | Yes | The request ID returned from reserve token space |
Response#
The response contains the temporary token details including the token identifier and streaming authentication credentials.Use Case#
After reserving token space, use this endpoint to retrieve the temporary token details. The response provides two paths for data exchange:1.
Plain text exchange: Use the token with /data-token/exchange-data-for-token for direct data upload
2.
Stream upload: Use the streaming server details and authentication token to upload large files via authenticated streaming to {stream_server_id}:{stream_server_port}?auth={stream}
Retrieve the token details before the reservation TTL expires
Choose between direct exchange or stream upload based on data size and requirements
The stream authentication token is single-use and tied to this specific token reservation