Applies to integrated customers using the RecoveryConnect API
Create Assignment Address
Description: This endpoint creates a new address record associated with a specific assignment.
Assignment addresses represent locations related to an assignment, such as borrower addresses, investigation locations, or other relevant sites connected to the assignment workflow. This endpoint allows users to add a new address and provide details, including address lines, unit number, geographic coordinates, and address category.
URL: /api/v150/assignments/{assignment_id}/addresses
Method: POST
Request Body Parameters:
PARAMETER | DESCRIPTION | MANDATORY | EXAMPLE |
name | Name or label used to identify the address | Yes | Home Address |
address_1 | Primary address line | Yes | 3620 W Greenway Rd |
address_2 | Secondary address line or additional address information | No | 3620 W Cliffland Phoenix, AZ Phoenix AZ 85014 |
zip | Zip or postal code of the address | Yes | 83012 |
unit | Apartment, suite, or unit number within the address | No | 1234 |
type_id | Identifier representing the address type (refer to Address Type IDs reference table) | No | 1 |
category_id | Identifier representing the address category (refer to Address Category ID Mapping table) | No | 1 |
latitude | Latitude coordinate of the address location | No | 0 |
longitude | Longitude coordinate of the address location | No | 0 |
Success Code: 200 OK – Request Successful
Example:
URL: https://api.mbsisystems.com/api/v150/assignments/57075006/addresses |
Request Body:
{ "name": "Home Address", "address_1": "4600 W Greenway Rd", "address_2": "36220 W Cliffland Phoenix, AZ Phoenix AZ 85014", "zip": 83012, "unit": 1234, "type_id": 1, "category_id": 1, "latitude": 0, "longitude": 0 } |
Response:
{ "data": { "id": 219115412, "created_at": "2026-03-10 17:53:43", "dwelling_type": "Unknown Type", "category": "3rd Party Address", "category_type": "3rdparty2", "address_id": 120094473, "name": "Home Address", "address_1": "4600 W Greenway Rd", "address_2": "36220 W Cliffland Phoenix, AZ Phoenix AZ 85014", "state_abbr": "WY", "city_name": "Moose", "zip_code": "83012", "county_name": "Teton", "longitude": -112.072549, "latitude": 33.448295, "unit": 1234 }, "status": "success" } |
Create Assignment Case Alert
Description: This endpoint creates a case alert associated with a specific assignment.
The alert can be configured with a message content, a scheduled date and time, and an intrusive flag indicating whether the alert should be displayed prominently to the user.
URL: /api/v150/assignments/{assignment_id}/casealerts
Method: POST
Request Body Parameters:
PARAMETER | DESCRIPTION | MANDATORY | EXAMPLE |
content | Message or description of the case alert | No | Test Content |
scheduled_at | Date and time when the alert should be triggered | Yes | 2026-03-20 05:50:00
|
is_intrusive | Indicates whether the alert is intrusive (1 = Intrusive alert, 0 = Non-intrusive alert) | Yes | 1 |
Success Code: 200 OK – Request Successful
Example:
URL: https://api.mbsisystems.com/api/v150/assignments/57075642/casealerts |
Request Body:
{ "content": "Case alert reach out to admin", "scheduled_at": "2026-03-20 05:50:00", "is_intrusive": 1 } |
Response:
{ "data": { "id": 130529, "order_id": 57075642, "added_by": 408564, "viewable_by_id": null, "viewable_by": "all", "content": "Case alert reach out to admin", "scheduled_at": "2026-03-20 05:50:00", "is_intrusive": 1, "created_at": "2026-03-11 10:17:27", "updated_at": "2026-03-11 10:17:27", "deleted_at": null }, "meta": { "fixme": { "message": "GenericResource: create specific resource object", "source": { "file": "/var/www/mobile_dev/releases/20210210171746/versions/v140/app/Http/Controllers/Api/Mixins/Actions/Get/Assignments.php", "line": 138, "function": "__construct", "class": "App\\Http\\Resources\\GenericResource", "type": "->" } } } } |
Attach Case Tags on 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/v150/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/v150/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" } ] } |