The Moving Portal API documentationThe Moving Portal API documentation
Key concepts
API concepts
Services
Key concepts
API concepts
Services
  • Key concepts
  • API concepts
  • GDPR
  • Development
  • Releases
  • Services
  • Authentication
  • Instruction
  • Instruction search
  • Notes
  • Data
  • Referral
  • Quote
  • Quotes search
  • Supplier operations
  • Notifications
  • Testing
  • Email integration
  • Objects
  • Examples
    • Introducer
      • Authentication
      • Data
      • Quote
      • Quotes search
      • Referral
      • Instruction
      • Instructions search
      • Instruction notification
      • Notes
    • Supplier
      • Authentication
      • Data
      • Instruction
      • Instructions search
      • Instruction notification
      • Notes
      • Supplier operations
  • OTHER

Examples - Instruction search service Introducer Supplier

Simple search for all active instructions

Instructions search service
@host=https://api.themovingportal.dev
@auth=BASICAUTHHEADER

###
GET {{host}}/instructions
Authorization: Basic {{auth}}
Content-Type: application/json

{
  "pageNumber": 1,
  "pageSize": 50,
  "tmpReference": "",
  "productCode": "",
  "searchTypeCode": "",
  "partialCustomerName": "",
  "partialPostcode": "",
  "dateSearchCode": "",
  "dateFromTimestamp": null,
  "dateToTimestamp": null,
  "hasUnreadNotes": null,
  "isOnHold": null,
  "sortColumnName": "Created",
  "sortAscending": true
}

Search on Completed cases

When searching on completed cases it is best to restrict by date.

Instructions search service
@host=https://api.themovingportal.dev
@auth=BASICAUTHHEADER

###
GET {{host}}/instructions
Authorization: Basic {{auth}}
Content-Type: application/json

{
  "pageNumber": 1,
  "pageSize": 50,
  "tmpReference": "",
  "productCode": "",
  "searchTypeCode": "COMPLETED",
  "partialCustomerName": "",
  "partialPostcode": "",
  "dateSearchCode": "Appointment",
  "dateFromTimestamp": "2025-02-26T14:23:48.0129359Z",
  "dateToTimestamp": null,
  "hasUnreadNotes": null,
  "isOnHold": null,
  "sortColumnName": "Created",
  "sortAscending": true
}
Last Updated: 11/4/25, 10:52 AM
Prev
Instruction
Next
Instruction notification