GET
/
table
/
{id}
Get
curl --request GET \
  --url https://routing.solvice.io/table/{id} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "status": "IN_PROGRESS",
  "errorMessage": "<string>",
  "hash": 123,
  "nrOfSources": 123,
  "nrOfDestinations": 123,
  "tableResponseId": 123,
  "updatedAt": "<string>",
  "createdAt": "<string>"
}
Get table status

Authorizations

Authorization
string
header
required

Api Key based authentication (apikey)

Path Parameters

id
integer
required

Response

200 - application/json

OK

id
integer

Table id.

status
enum<string> | null

Table status (IN_PROGRESS, SUCCEEDED, FAILED).

Available options:
IN_PROGRESS,
AGGREGATING,
SUCCEEDED,
FAILED
errorMessage
string | null

Error message if the Cube failed.

hash
integer | null

Hash of the Cube request

nrOfSources
integer | null

Number of sources in the table

nrOfDestinations
integer | null

Number of destinations in the table

tableResponseId
integer

Table response id.

updatedAt
string | null

Last update time of the table.

createdAt
string | null

Creation time of the table.