Applies to integrated customers using the RecoveryConnect API
Update Special Instruction for Company
Description: This endpoint updates an existing special instruction associated with a specific company.
Special instructions define operational guidelines, requirements, or notes that must be followed when handling cases related to the company. This endpoint allows users to modify the instruction content, associated lienholder conditions, collateral status conditions, and visibility settings for service providers.
Only the fields provided in the request body will be updated. Fields not included will remain unchanged.
All requests must include a valid Bearer Token in the request header.
URL: /api/v150/companies/{company_id}/special_instuctions/{special_instuction_id}
Method: PUT
Request Body Parameters:
PARAMETER | DESCRIPTION | MANDATORY | EXAMPLE |
case_lienholder | Identifier of the lienholder associated with the case | No | 65690 |
collateral_status | Identifier representing the collateral status for which the instruction applies | No | 0 |
content | Text content of the special instruction | No | special instruction |
display_to_serviceprovider | Indicates whether the instruction should be displayed to service providers (0 = No, 1 = Yes) | No | 0 |
Success Code: 200 OK – Request Successful
Example:
URL: https://api.mbsisystems.com/api/v150/companies/65690/special_instructions/2473 |
Request Body:
{ "case_lienholder": 10001, "collateral_status": 0, "content": "ALternate instruction", "display_to_serviceprovider": 0 } |
Response:
{ "data": { "id": 2473, "created_by": 408564, "created_by_company": 10004, "created_for_company": 65690, "case_lienholder": 10001, "collateral_status": 0, "content": "ALternate instruction", "display_to_serviceprovider": 0, "created_at": "2026-03-12 11:23:54", "updated_at": "2026-03-12 11:53:40" }, "status": "success" } |
Delete Special Instruction for Company
Description: This endpoint deletes an existing special instruction associated with a specific company.
Special instructions define operational guidelines or requirements for handling cases related to the company. This endpoint allows users to remove a special instruction that is no longer required or applicable.
All requests must include a valid Bearer Token in the request header.
URL: /api/v150/companies/{company_id}/special_instuctions/{special_instuction_id}
Method: DELETE
Request Body Parameters: NA
Success Code: 200 OK – Request Successful
Example:
URL: https://api.mbsisystems.com/api/v150/companies/65690/special_instructions/2473 |
Request Body: NA
Response:
{ "data": { "success": true } } |