v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
External Connections

List all Upload requests

Returns a list of your Upload requests for the given external connection.

get/external_connections/{id}/uploads

Path parameters

idstring required
Example:1293384261075731499

Identifies the resource.

Query parameters

Filter parameter for uploads (deepObject style). Supports filtering by status, civic_address_id, location_id, and phone_number with eq/contains operations.

{
  "civic_address_id": {
    "eq": "19990261512338516954"
  },
  "location_id": {
    "eq": "19995665508264022121"
  },
  "phone_number": {
    "contains": "+1970",
    "eq": "+19705555098"
  },
  "status": {
    "eq": [
      "pending_upload",
      "pending"
    ]
  }
}
numberinteger

The page number to load

sizeinteger

The size of the page

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

Response

Successful response

Example response

{
  "data": [
    {
      "location_id": "c37e5036-1e87-42e6-86a2-b3e8dd39a2ad",
      "status": "error",
      "tenant_id": "ea175aba-f47c-4702-9400-efaa42688048",
      "ticket_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761",
      "tn_upload_entries": [
        {
          "error_code": "internal_error",
          "internal_status": "error",
          "number_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761",
          "status": "error"
        }
      ]
    }
  ],
  "meta": {
    "page_number": 2,
    "page_size": 25,
    "total_pages": 3,
    "total_results": 55
  }
}