Get carrier

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

The Get Carrier by ID endpoint retrieves detailed information for a specific carrier or subsidiary using its unique ID. This is helpful when you need a complete view of a single entity, including address, MC and DOT numbers, insurance information, and current status.


Request Parameters

The following parameter is required in the URL path:

ParameterTypeRequiredDescription
versionStringYesThe version of the API being requested.
idStringYesThe unique identifier of the carrier.

Example CURL Request

curl --location 'https://integrations.alvys.com/api/p/v{version}/carriers/{id}' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Replace {version} with the API version number, {Id} with the actual carrier ID, and YOUR_ACCESS_TOKEN with your actual Bearer token.

Response Parameters

The response contains a list of carriers or subsidiaries matching the search criteria, each represented by the following parameters:

ParameterTypeDescription
IdString (UUID)The unique identifier of the carrier or subsidiary.
NameStringThe name of the carrier or subsidiary.
AddressObjectThe address details (Street, City, State, ZipCode).
Address.StreetStringThe street of the carrier’s address.
Address.CityStringThe city of the carrier’s address.
Address.StateStringThe state of the carrier’s address.
Address.ZipCodeStringThe zip code of the carrier’s address.
McNumStringThe MC (Motor Carrier) number.
UsDotNumStringThe USDOT number.
ExternalNameStringExternal/QuickBooks name for accounting integration. Null if not set.
ExternalAccountReferenceStringExternal/QuickBooks account reference. Null if not set or not available.
TypeStringType of the entity (e.g., Carrier, Subsidiary).
StatusStringCurrent status of the carrier or subsidiary (e.g., Pending, Active, Packet Sent, Packet Completed, Do Not Load, Expired Insurance, Interested, Invited).
ExternalComplianceStatusStringExternal compliance certification status (e.g., RMIS or MCP). Null if not set.
CreatedAtString (Date-Time)The creation date of the carrier/subsidiary record.
CreatedByStringThe user who created the carrier. Null if not set.
SourceStringSource of carrier data (e.g., import, manual). Null if not set.
UpdatedAtString (Date-Time)The date and time of the last update. Null if not set.
NotesArray of ObjectsA list of notes about the carrier. Null or empty if not set.
SalesAgentIdStringThe assigned sales agent ID. Null if not set.
ExternalIdsArray of ObjectsExternal ID settings mapped from all external accounting ID settings. Null if none set.
PaymentMethodStringPayment method for the carrier (e.g., "Factoring Company", "Direct Deposit", "Check"). Null if not set.
FactoringCompanyObjectFactoring company details if the carrier uses factoring. Null if not using factoring.
PaymentProviderObjectPayment provider integration mapped to this carrier (e.g. TriumphPay). Null if not set.
ContactsArray of ObjectsCarrier contacts (name, email, phone, mobile, title). Null or empty if the carrier has no contacts.
InsuranceInfoArray of ObjectsA list of insurance policies associated with the carrier.
InsuranceInfo.TypeStringThe type of insurance (e.g., Auto, Cargo, General, Workers Compensation).
InsuranceInfo.PolicyNumberStringThe insurance policy number.
InsuranceInfo.IssueDateString (Date-Time)The issue date of the insurance policy.
InsuranceInfo.ExpirationDateString (Date-Time)The expiration date of the insurance policy.
InsuranceInfo.AmountNumberThe coverage amount of the insurance policy.
InsuranceInfo.AgentObjectInformation about the insurance agent.
InsuranceInfo.Agent.CompanyStringThe name of the agent’s company.
InsuranceInfo.Agent.NameStringThe name of the insurance agent.
InsuranceInfo.Agent.ContactObjectContact details for the insurance agent (name, email, phone, mobile, title).
InsuranceInfo.NotesStringNotes associated with the insurance policy.

Example Response

    {
      "Id": "6c7f5ee3-f44c-4c19-92bf-89cfbd5d87a0",
      "Name": "EVENT PRO LOGISTICS",
      "Address": {
        "Street": "3749 E 150 S",
        "City": "TIPTON",
        "State": "IN",
        "ZipCode": "46072"
      },
      "McNum": "63504",
      "UsDotNum": "4204692",
      "Type": "Subsidiary",
      "Status": "Active",
      "CreatedAt": "2024-04-02T08:42:31.269118+00:00"
       "InsuranceInfo": [
        {
          "Type": "Auto",
          "PolicyNumber": "2445",
          "IssueDate": "2024-11-14T00:00:00+00:00",
          "ExpirationDate": "2030-11-14T00:00:00+00:00",
          "Amount": 0.0,
          "Agent": {
            "Company": "PG Company",
            "Name": ""
          },
          "Notes": ""
        }
      ]
    }

Rate Limits

All endpoints are subject to rate limits to protect the API from traffic spikes. For detailed information on rate limits, please refer to the Rate Limits section.

This page is interactive, allowing you to try a request by completing the fields for the parameters below. As you fill out the parameters, the CURL command on the right side of the page will be automatically updated. Alternatively, you can fork our Public API Postman Collection directly. Make sure to authorize yourself before trying a request.

Path Params
string
required
string
required
Defaults to 1.0

API version (e.g., 1.0)

Headers
string
enum
Defaults to application/json

Generated from available response content types

Allowed:
Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json
application/problem+json