Skip to content

MVMNT API (1.0.0)

The MVMNT API enables you to automate freight brokerage workflows by integrating directly with our Transportation Management System.

Authentication

OAuth 2.0 client credentials flow. See Authentication Guide for details.

Token Endpoint

POST https://api.mvmnt.io/oauth2/token

Request

Headers:

Content-Type: application/x-www-form-urlencoded

Body Parameters:

grant_type=client_credentials
client_id=YOUR_CLIENT_ID
client_secret=YOUR_CLIENT_SECRET

Example Request

curl -X POST https://api.mvmnt.io/oauth2/token \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "grant_type=client_credentials" \
  -d "client_id=YOUR_CLIENT_ID" \
  -d "client_secret=YOUR_CLIENT_SECRET"

Success Response

Status: 200 OK

{
  "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
  "token_type": "Bearer",
  "expires_in": 3600
}

Response Fields:

  • access_token: JWT Bearer token to use for API requests
  • token_type: Always Bearer
  • expires_in: Token lifetime in seconds (3600 = 1 hour)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://docs.mvmnt.io/_mock/apis/openapi/
Production
https://api.mvmnt.io/v1/

Companies

Operations

Carrier Contacts

Operations

Carriers

Operations

Carrier Factors

Operations

Carrier Payment Methods

Operations

Customer Contacts

Operations

Customers

Operations

Locations

Operations

Location Contacts

Operations

Payment Terms

Operations

Teams

Operations

Users

Operations

Vendors

Operations

Vendor Contacts

Operations

Filter vendor contacts

Request

Query vendor contacts using flexible filter criteria with AND/OR logic.

By default, only non-deleted contacts are returned (deletedAt: { isNull: true }). Override this by explicitly setting deletedAt filter criteria.

Security
BearerAuth
Bodyapplication/jsonrequired
filterobject(VendorContactFilter)
Example: {"and":[{"roles":{"includes":"BILLING"}},{"vendorId":{"equalTo":"550e8400-e29b-41d4-a716-446655440001"}}]}
pageSizeinteger[ 1 .. 250 ]

Number of results per page

Default 50
Example: 50
cursorstring

Pagination cursor for next page

curl -i -X POST \
  https://docs.mvmnt.io/_mock/apis/openapi/vendor-contacts/filter \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "filter": {
      "and": [
        {
          "roles": {
            "includes": "BILLING"
          }
        },
        {
          "vendorId": {
            "equalTo": "550e8400-e29b-41d4-a716-446655440001"
          }
        }
      ]
    },
    "pageSize": 50
  }'

Responses

Filtered vendor contacts with pagination

Bodyapplication/json
dataArray of objects(VendorContact)required
data[].​objectstringread-only

Object type identifier

Value"VENDOR_CONTACT"
Example: "VENDOR_CONTACT"
data[].​vendorobject(ResourceReference)required
data[].​vendor.​idstring(uuid)required

Resource UUID

data[].​vendor.​keystring or null

Client-defined reference ID if set

data[].​emailstring or null(email)

Contact email address

Example: "john.smith@abcwarehouse.com"
data[].​phonestring or null

Contact phone number

Example: "+1-555-123-4567"
data[].​rolestring or null

Contact role or title (deprecated - use roles array)

Example: "Billing Manager"
data[].​rolesArray of strings or null(VendorContactRole)

Types/roles this contact serves

Enum"AGENT""BILLING""OPERATION""OWNER"
Example: ["BILLING","AGENT"]
data[].​deletedByUserReference (object) or nullread-only
Any of:

Enhanced reference to a user resource (returned in responses). Includes full user details in addition to id/key.

Note: Does NOT include nested references (teams, etc.) to prevent recursion. Maximum nesting depth: 1 level.

object UserReference Recursive
data[].​createdAtstring(date-time)read-onlyrequired

When the contact was created

Example: "2025-01-15T10:00:00Z"
data[].​deletedAtstring or null(date-time)read-only

When the contact was soft deleted (null if active)

Example: null
pageInfoobject(PaginationInfo)required
pageInfo.​pageSizeintegerrequired

Number of items per page

Example: 50
pageInfo.​hasNextPagebooleanrequired

Whether there are more pages

Example: true
pageInfo.​hasPreviousPageboolean

Whether there are previous pages

Example: false
pageInfo.​endCursorstring or null

Cursor for the next page (null if no next page)

Example: "eyJpZCI6IjU1MGU4NDAwLWUyOWItNDFkNC1hNzE2LTQ0NjY1NTQ0MDAwMCJ9"
Response
application/json
{ "data": [ {} ], "pageInfo": { "pageSize": 50, "hasNextPage": true, "hasPreviousPage": false, "endCursor": "eyJpZCI6IjU1MGU4NDAwLWUyOWItNDFkNC1hNzE2LTQ0NjY1NTQ0MDAwMCJ9" } }

Create a new vendor contact

Request

Create a new contact for a vendor.

Contacts represent individuals at the vendor who can be reached for various purposes.

Security
BearerAuth
Bodyapplication/jsonrequired
vendorIdstring(uuid)required

Vendor this contact belongs to

Example: "550e8400-e29b-41d4-a716-446655440001"
emailstring(email)

Contact email address

Example: "john.smith@abcwarehouse.com"
phonestring

Contact phone number

Example: "+1-555-123-4567"
rolestring

Contact role or title (deprecated - use roles array)

Example: "Billing Manager"
rolesArray of strings(VendorContactRole)

Types/roles this contact serves

Items Enum"AGENT""BILLING""OPERATION""OWNER"
Example: ["BILLING","AGENT"]
curl -i -X POST \
  https://docs.mvmnt.io/_mock/apis/openapi/vendor-contacts \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "vendorId": "550e8400-e29b-41d4-a716-446655440001",
    "email": "billing@abcwarehouse.com",
    "phone": "+1-555-123-4567",
    "roles": [
      "BILLING"
    ]
  }'

Responses

Vendor contact created successfully

Bodyapplication/json
objectstringread-only

Object type identifier

Value"VENDOR_CONTACT"
Example: "VENDOR_CONTACT"
vendorobject(ResourceReference)required
vendor.​idstring(uuid)required

Resource UUID

vendor.​keystring or null

Client-defined reference ID if set

emailstring or null(email)

Contact email address

Example: "john.smith@abcwarehouse.com"
phonestring or null

Contact phone number

Example: "+1-555-123-4567"
rolestring or null

Contact role or title (deprecated - use roles array)

Example: "Billing Manager"
rolesArray of strings or null(VendorContactRole)

Types/roles this contact serves

Enum"AGENT""BILLING""OPERATION""OWNER"
Example: ["BILLING","AGENT"]
deletedByUserReference (object) or nullread-only
Any of:

Enhanced reference to a user resource (returned in responses). Includes full user details in addition to id/key.

Note: Does NOT include nested references (teams, etc.) to prevent recursion. Maximum nesting depth: 1 level.

object UserReference Recursive
createdAtstring(date-time)read-onlyrequired

When the contact was created

Example: "2025-01-15T10:00:00Z"
deletedAtstring or null(date-time)read-only

When the contact was soft deleted (null if active)

Example: null
Response
application/json
{ "object": "VENDOR_CONTACT", "vendor": { "id": "550e8400-e29b-41d4-a716-446655440000", "key": "ERP-USER-12345" }, "email": "john.smith@abcwarehouse.com", "phone": "+1-555-123-4567", "role": "Billing Manager", "roles": [ "BILLING", "AGENT" ], "deletedBy": { "id": "550e8400-e29b-41d4-a716-446655440000", "key": "ERP-USER-12345", "email": "john.doe@example.com", "name": "John Doe", "phone": "+1-555-123-4567", "phoneExt": "123", "status": "ACTIVE", "avatarId": "7c9e6679-7425-40de-944b-e07fc1f90ae7", "createdAt": "2025-01-15T10:00:00Z", "updatedAt": "2025-01-15T14:30:00Z", "deletedAt": null }, "createdAt": "2025-01-15T10:00:00Z", "deletedAt": null }

Get a vendor contact by ID

Request

Retrieve a single vendor contact by its unique identifier.

Security
BearerAuth
Path
idstringrequired

Resource ID (UUID) or client key

Example: 550e8400-e29b-41d4-a716-446655440000
curl -i -X GET \
  https://docs.mvmnt.io/_mock/apis/openapi/vendor-contacts/550e8400-e29b-41d4-a716-446655440000 \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Vendor contact found

Bodyapplication/json
objectstringread-only

Object type identifier

Value"VENDOR_CONTACT"
Example: "VENDOR_CONTACT"
vendorobject(ResourceReference)required
vendor.​idstring(uuid)required

Resource UUID

vendor.​keystring or null

Client-defined reference ID if set

emailstring or null(email)

Contact email address

Example: "john.smith@abcwarehouse.com"
phonestring or null

Contact phone number

Example: "+1-555-123-4567"
rolestring or null

Contact role or title (deprecated - use roles array)

Example: "Billing Manager"
rolesArray of strings or null(VendorContactRole)

Types/roles this contact serves

Enum"AGENT""BILLING""OPERATION""OWNER"
Example: ["BILLING","AGENT"]
deletedByUserReference (object) or nullread-only
Any of:

Enhanced reference to a user resource (returned in responses). Includes full user details in addition to id/key.

Note: Does NOT include nested references (teams, etc.) to prevent recursion. Maximum nesting depth: 1 level.

object UserReference Recursive
createdAtstring(date-time)read-onlyrequired

When the contact was created

Example: "2025-01-15T10:00:00Z"
deletedAtstring or null(date-time)read-only

When the contact was soft deleted (null if active)

Example: null
Response
application/json
{ "object": "VENDOR_CONTACT", "vendor": { "id": "550e8400-e29b-41d4-a716-446655440000", "key": "ERP-USER-12345" }, "email": "john.smith@abcwarehouse.com", "phone": "+1-555-123-4567", "role": "Billing Manager", "roles": [ "BILLING", "AGENT" ], "deletedBy": { "id": "550e8400-e29b-41d4-a716-446655440000", "key": "ERP-USER-12345", "email": "john.doe@example.com", "name": "John Doe", "phone": "+1-555-123-4567", "phoneExt": "123", "status": "ACTIVE", "avatarId": "7c9e6679-7425-40de-944b-e07fc1f90ae7", "createdAt": "2025-01-15T10:00:00Z", "updatedAt": "2025-01-15T14:30:00Z", "deletedAt": null }, "createdAt": "2025-01-15T10:00:00Z", "deletedAt": null }

Update a vendor contact

Request

Partially update a vendor contact. Only provided fields will be updated.

  • Omitted fields: Not modified (current value preserved)
  • Provided fields: Updated to the new value
  • Null values: Clear the field (set to null) where applicable
Security
BearerAuth
Path
idstringrequired

Resource ID (UUID) or client key

Example: 550e8400-e29b-41d4-a716-446655440000
Bodyapplication/jsonrequired
emailstring or null(email)

Contact email address

Example: "john.smith@abcwarehouse.com"
phonestring or null

Contact phone number

Example: "+1-555-123-4567"
rolestring or null

Contact role or title (deprecated - use roles array)

Example: "Billing Manager"
rolesArray of strings or null(VendorContactRole)

Types/roles this contact serves (replaces entire array)

Enum"AGENT""BILLING""OPERATION""OWNER"
Example: ["BILLING","AGENT"]
curl -i -X PATCH \
  https://docs.mvmnt.io/_mock/apis/openapi/vendor-contacts/550e8400-e29b-41d4-a716-446655440000 \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "newemail@abcwarehouse.com"
  }'

Responses

Vendor contact updated successfully

Bodyapplication/json
objectstringread-only

Object type identifier

Value"VENDOR_CONTACT"
Example: "VENDOR_CONTACT"
vendorobject(ResourceReference)required
vendor.​idstring(uuid)required

Resource UUID

vendor.​keystring or null

Client-defined reference ID if set

emailstring or null(email)

Contact email address

Example: "john.smith@abcwarehouse.com"
phonestring or null

Contact phone number

Example: "+1-555-123-4567"
rolestring or null

Contact role or title (deprecated - use roles array)

Example: "Billing Manager"
rolesArray of strings or null(VendorContactRole)

Types/roles this contact serves

Enum"AGENT""BILLING""OPERATION""OWNER"
Example: ["BILLING","AGENT"]
deletedByUserReference (object) or nullread-only
Any of:

Enhanced reference to a user resource (returned in responses). Includes full user details in addition to id/key.

Note: Does NOT include nested references (teams, etc.) to prevent recursion. Maximum nesting depth: 1 level.

object UserReference Recursive
createdAtstring(date-time)read-onlyrequired

When the contact was created

Example: "2025-01-15T10:00:00Z"
deletedAtstring or null(date-time)read-only

When the contact was soft deleted (null if active)

Example: null
Response
application/json
{ "object": "VENDOR_CONTACT", "vendor": { "id": "550e8400-e29b-41d4-a716-446655440000", "key": "ERP-USER-12345" }, "email": "john.smith@abcwarehouse.com", "phone": "+1-555-123-4567", "role": "Billing Manager", "roles": [ "BILLING", "AGENT" ], "deletedBy": { "id": "550e8400-e29b-41d4-a716-446655440000", "key": "ERP-USER-12345", "email": "john.doe@example.com", "name": "John Doe", "phone": "+1-555-123-4567", "phoneExt": "123", "status": "ACTIVE", "avatarId": "7c9e6679-7425-40de-944b-e07fc1f90ae7", "createdAt": "2025-01-15T10:00:00Z", "updatedAt": "2025-01-15T14:30:00Z", "deletedAt": null }, "createdAt": "2025-01-15T10:00:00Z", "deletedAt": null }

Delete a vendor contact

Request

Soft delete a vendor contact (sets deletedAt timestamp).

The contact will no longer appear in default queries but can be retrieved by explicitly filtering for deleted records.

Security
BearerAuth
Path
idstringrequired

Resource ID (UUID) or client key

Example: 550e8400-e29b-41d4-a716-446655440000
curl -i -X DELETE \
  https://docs.mvmnt.io/_mock/apis/openapi/vendor-contacts/550e8400-e29b-41d4-a716-446655440000 \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Vendor contact deleted successfully

Response
No content

Vendor Payment Methods

Operations

Saved Searches

Operations

Event Notifications

Webhooks