Applies to integrated customers using the RecoveryConnect API



Retrieve Office Employees

 
Description: This endpoint retrieves the list of office employees assigned to a specific order.

URL: /api/v150/orders/{order_id}/office_employees
Method: GET
 
Request Body Parameters: NA
 Success Code: 
200 OK – Request Successful

Example:

URL: https://api.mbsisystems.com/api/v150/orders/57070212/office_employees


 
Request Body: NA
Response:

{

    "data": [

        {

            "id": 124937951,

            "order_id": 57070212,

            "employee_id": 83268,

            "person_id": 2262442,

            "firstname": "QA",

            "middlename": null,

            "lastname": "DemoFor",

            "role": null,

            "is_violent": 0,

            "is_primary": 0

        },

        {

            "id": 124941377,

            "order_id": 57070212,

            "employee_id": 78830,

            "person_id": 1971583,

            "firstname": "William",

            "middlename": null,

            "lastname": "Sheehan",

            "role": null,

            "is_violent": 0,

            "is_primary": 0

        },

        {

            "id": 124941378,

            "order_id": 57070212,

            "employee_id": 80034,

            "person_id": 2046199,

            "firstname": "Erika",

            "middlename": null,

            "lastname": "Clark",

            "role": null,

            "is_violent": 0,

            "is_primary": 0

        }

    ]

}

 

 

Delete Office Employees

 
Description: This endpoint removes an office employee assigned to a specific order

URL: /api/v150/orders/{order_id}/office_employees/{employee_id}
Method: DELETE
 
Request Body Parameters: NA
 Success Code: 
200 OK – Request Successful

Example:

URL: https://api.mbsisystems.com/api/v150/orders/57070212/office_employees/83268


 
Request Body: NA
Response:

{

  "data": {

    "success": true

  }

}

 

 

Retrieve Critical Dates

 
Description: This endpoint retrieves the critical dates associated with the collateral of a specific order. These dates represent important milestones in the order lifecycle such as repossession, transport, redemption, and case closure.

URL: /api/v150/orders/{order_id}/collateral_critical_dates
Method: GET
 
Request Body Parameters: NA
 Success Code: 
200 OK – Request Successful

Example:

URL: https://api.mbsisystems.com/api/v150/orders/57070212/collateral_critical_dates


 
Request Body: NA
Response:

{

    "data": [

        {

            "date_type_id": 10,

            "date_at": "2026-03-02 06:34:54",

            "timezone": "UTC"

        },

        {

            "date_type_id": 20,

            "date_at": "2026-03-02 06:35:00",

            "timezone": "UTC"

        }

    ]

}

 

 

Transfer Order Attachment

 
Description: This endpoint transfers an attachment associated with an order to another order.
URL: /api/v150/orders/{order_id}/attachments/{attachment_id}/transfer

Method: PUT

Request Body Parameters:

PARAMETER

DESCRIPTION

MANDATORY

EXAMPLE

transfer_to

Array containing the target order ID(s) to which the attachment will be transferred

Yes

262552


 Success Code: 
200 OK – Request Successful

Example:

URL: https://api.mbsisystems.com/api/v150/orders/56934626/attachments/67288827/transfer

 

Request Body:

{

  "transfer_to": [

    262552

  ]

}

 

Response:

{

  "orders": [

    {

      "id": 262552,

      "attachments": [

        {

          "id": 6299652,

          "status": "fail"

        }

      ]

    }

  ]

}