Examples - Instruction search service Introducer Supplier
Simple search for all active instructions
@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.
@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
}
