Applies to integrated customers using the RecoveryConnect APIAttach Case Tags to the Assignment
Description: This endpoint attaches one or more case tags to a specific assignment.
Multiple tags can be attached in a single request by providing a list of tag IDs.
URL: /api/v130/assignments/{assignment_id}/tags
Method: POST
Request Body Parameters:
PARAMETER | DESCRIPTION | MANDATORY | EXAMPLE |
id | Unique identifier of the tag | Yes | 2412, 2428 |
Success Code: 200 OK – Request Successful
Example:
URL: https://api.mbsisystems.com/api/v130/assignments/57075642/tags |
Request Body:
{ "tags": [ { "id": 2412 }, { "id": 2428 } ] } |
Response:
{ "data": [ { "id": 2428, "company_id": 10004, "name": "Hurricane Hold - David" }, { "id": 2412, "company_id": 10004, "name": "Transport needed" } ] } |
Delete Case Tag on Assignment
Description: This endpoint removes a specific case tag associated with an assignment.
Tags are used to categorize or label assignments for tracking, filtering, and workflow management. This endpoint allows users to delete a tag that has previously been attached to an assignment.
URL: /api/v130/assignments/{assignment_id}/tags/{tag_id}
Method: DELETE
Request Body Parameters: NA
Success Code: 200 OK – Request Successful
Example:
URL: https://api.mbsisystems.com/api/v130/assignments/57075642/tags/2412 |
Request Body: NA
Response:
{ "data": [ { "id": 2428, "company_id": 10004, "name": "Hurricane Hold - David" } ] } |
Retrieve Collaterals for Assignment
Description: This endpoint retrieves the collateral details associated with a specific assignment.
Collaterals represent the assets linked to the assignment, such as vehicles or other repossessed property. This endpoint returns detailed information about each collateral associated with the assignment, including identification details and related metadata.
URL: /api/v130/assignments/{assignment_id}/collaterals
Method: GET
Request Body Parameters: NA
Success Code: 200 OK – Request Successful
Example:
URL: https://api.mbsisystems.com/api/v130/assignments/57075642/collaterals |
Request Body: NA
Response:
{ "data": [ { "id": 58855257, "is_primary": 1, "vehicle_type_id": 1, "vehicle_type": "Car", "year": "2014", "make": "Ford", "model": "Fusion", "color": "", "drive_train": "Front-Wheel Drive", "fuel_type": "Diesel", "engine": "3.7-L V-6 DOHC 24V", "selling_dealer": "", "original_loan_amount": "900.00", "payment_amount": "500.00", "past_due_amount": "200.00", "unpaid_balance": "200.00", "chargeoff_date": "2020-01-01 17:56:48", "key_codes": "", "maximum_bailout": "0.00", "additional_info": "No Data", "contract_date": "2020-01-01 17:56:48", "license_no": "139507", "license_state": "OH", "license_exp": null, "vin": "1FALP13P9VW12034999000", "status": "New From Client", "status_id": 9, "status_date": "2026-03-11 16:55:59", "status_reason": null, "status_note": null, "on_hook_by": null, "assignment_on_hook_by": null, "vehicle_value": null, "created_at": "2026-03-11 09:55:59", "updated_at": "2026-03-11 09:55:59", "meta": [] } ], "links": { "first": "http://stg-api.mbsisystems.com/api/v140/assignments/57075642/collaterals?q=%2Fapi%2Fv140%2Fassignments%2F57075642%2Fcollaterals&page=1", "last": "http://stg-api.mbsisystems.com/api/v140/assignments/57075642/collaterals?q=%2Fapi%2Fv140%2Fassignments%2F57075642%2Fcollaterals&page=1", "prev": null, "next": null }, "meta": { "current_page": 1, "from": 1, "last_page": 1, "path": "http://stg-api.mbsisystems.com/api/v140/assignments/57075642/collaterals", "per_page": "20", "to": 1, "total": 1, "count": 1, "available_filters": { "vin": { "vin_attribute": { "name": "VIN filter", "description": "Matches vehicle VINs", "has_valid_options": false, "valid_options": [] } }, "search": { "vin_attribute": { "name": "VIN filter", "description": "Matches vehicle VINs", "has_valid_options": false, "valid_options": [] }, "make_attribute": { "name": "Vehicle Make filter", "description": "Matches vehicle make", "has_valid_options": true, "valid_options": [ "Ford" ] }, "model_attribute": { "name": "Vehicle Model filter", "description": "Matches vehicle model", "has_valid_options": false, "valid_options": [] }, "proptery_license_no": { "name": "Vehicle License filter", "description": "Matches vehicle license number", "has_valid_options": false, "valid_options": [] } }, "make": { "make_attribute": { "name": "Vehicle Make filter", "description": "Matches vehicle make", "has_valid_options": true, "valid_options": [ "Ford" ] } }, "model": { "model_attribute": { "name": "Vehicle Model filter", "description": "Matches vehicle model", "has_valid_options": false, "valid_options": [] } }, "license_no": { "proptery_license_no": { "name": "Vehicle License filter", "description": "Matches vehicle license number", "has_valid_options": false, "valid_options": [] } }, "collateral_status": { "collateral_status": { "name": "Collateral Status", "description": "Matches collateral status", "has_valid_options": true, "valid_options": [ "New From Client" ] } }, "on_hook_by": { "on_hook_by": { "name": "OnHook By filter", "description": "Matches OnHook By", "has_valid_options": false, "valid_options": [] } } } }, "warnings": [] } |