Imports
Gets an import by id
GET
/
imports
/
{importId}
Copy
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/imports/{importId} \
--header 'Authorization: Bearer <token>'
Copy
{
"importId": "<string>",
"type": "API",
"status": "NOT_STARTED",
"personCount": 123,
"failedRecords": [
{
"personId": "<string>"
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the import
Response
200
application/json
Information about the import
The response is of type object
.
Copy
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/imports/{importId} \
--header 'Authorization: Bearer <token>'
Copy
{
"importId": "<string>",
"type": "API",
"status": "NOT_STARTED",
"personCount": 123,
"failedRecords": [
{
"personId": "<string>"
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.