Skip to main content

Link Generation

GET /v1/link/atlas

Returns a Doorstep Atlas URL for a specified tracking session. Doorstep Atlas is a web app for replaying individual deliveries to understand what happened during a delivery, and can be launched from within your application.

Requires an API key sent as a Bearer token in the Authorization header.

Request

Query Parameters

ParameterTypeRequired?Description
sessionIDstringYesUnique identifier for the session as passed into the Doorstep SDK.
Example: a7fcaea4-9a2c-3001-956d-e08b4560267f

Example Request

curl "https://api.core.doorstep.ai/v1/link/atlas?sessionID=a7fcaea4-9a2c-3001-956d-e08b4560267f" \
-H "Authorization: Bearer $API_KEY"

Response

A link to the Atlas tracking session.

Response Body

FieldTypeDescription
statusnumberStatus of the request.
messagestringA description of the result.
linkstringThe generated link to the Doorstep Atlas application.

Example Response

{
"status": 200,
"message": "Link created successfully",
"link": "https://atlas.doorstep.ai/clientName?id=f47ac10b-58cc-4372-a567-0e02b2c3d479"
}

Generated links have the following structure:

https://atlas.doorstep.ai/[clientName]?id=[uuid]

The id parameter is the internal Doorstep session UUID resolved from your sessionID.