DeltaX Client REST HTTP API
  1. company
DeltaX Client REST HTTP API
  • Webhook Integration Documentation
  • trip
    • Get Trip by ID
      GET
    • Update Trip
      PUT
    • Create Incidence
      POST
    • List Trips
      GET
  • route
    • List Routes
      GET
    • Get Route by ID
      GET
    • List Warehouses
      GET
    • Get Warehouse by ID
      GET
    • List Window Availability
      GET
  • company
    • List Transport Companies
      GET
    • Get Transport Company by ID
      GET
  • fleet
    • List Transport Units
      GET
    • Get Transport Unit by ID
      GET
    • List Truckers
      GET
    • Get Trucker by ID
      GET
    • List Dollies
      GET
    • Get Dolly by ID
      GET
  • rates
    • List Rates
      GET
  • Schemas
    • Schemas
      • IncidenceCreate
      • TripUpdate
      • TripUpdateResponse
      • ClientTripUpdate
      • ClientIncidence
      • IncidenceCreateResponse
      • Trip
      • TripResponse
      • TripsListResponse
      • PaginationInfo
      • Route
      • RouteResponse
      • RoutesListResponse
      • Warehouse
      • WarehouseResponse
      • WarehousesListResponse
      • TransportCompany
      • TransportCompanyResponse
      • TransportCompaniesListResponse
      • TransportUnit
      • TransportUnitResponse
      • TransportUnitsListResponse
      • Trucker
      • TruckerResponse
      • TruckersListResponse
      • Dolly
      • DollyResponse
      • DolliesListResponse
      • WindowAvailability
      • WindowAvailabilityResponse
    • Response
      • Success
      • SuccessCreated
      • InternalServerError
      • BadRequest
      • NotFound
      • Unauthenticated
      • TripUpdateSuccess
      • IncidenceCreateSuccess
      • TripSuccess
      • TripsListSuccess
      • RouteSuccess
      • RoutesListSuccess
      • WarehouseSuccess
      • WarehousesListSuccess
      • TransportCompanySuccess
      • TransportCompaniesListSuccess
      • TransportUnitSuccess
      • TransportUnitsListSuccess
      • TruckerSuccess
      • TruckersListSuccess
      • DollySuccess
      • DolliesListSuccess
      • WindowAvailabilitySuccess
      • Unauthorized
  1. company

List Transport Companies

GET
/transport-company
Retrieve available transport companies with pagination support, ordered by SAP code ascending. Returns comprehensive transport company information including fiscal data, tax identification, and address details.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200OK
application/json
Transport companies have been successfully retrieved with pagination
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fmsapi.deltax.la/clients/transport-company?page=1&size=20' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "Transport companies retrieved successfully",
    "data": {
        "transportCompanies": [
            {
                "_id": "507f1f77bcf86cd79943901a",
                "code": "0010007352",
                "name": "TRANSPORT COMPANY SA DE CV",
                "taxId": "TCO850101ABC",
                "fiscalName": "TRANSPORT COMPANY SOCIEDAD ANONIMA DE CAPITAL VARIABLE",
                "colonyName": "Centro",
                "fiscalRegimeCode": "601",
                "postalCode": "06000"
            },
            {
                "_id": "507f1f77bcf86cd79943901b",
                "code": "0010007353",
                "name": "LOGISTICA INTEGRAL SA DE CV",
                "taxId": "LIG920315DEF",
                "fiscalName": "LOGISTICA INTEGRAL SOCIEDAD ANONIMA DE CAPITAL VARIABLE",
                "colonyName": "Industrial",
                "fiscalRegimeCode": "601",
                "postalCode": "07300"
            }
        ],
        "pagination": {
            "page": 1,
            "size": 20,
            "totalTransportCompanies": 125,
            "totalPages": 7,
            "hasNextPage": true,
            "hasPreviousPage": false
        }
    }
}
Modified at 2025-11-21 22:26:35
Previous
List Window Availability
Next
Get Transport Company by ID
Built with