Use Case for Adding Employee Address

To add employee address, send a PATCH request with the address details in the request body.

          PATCH {{REST_SERVICES}}/record/v1/employee/<id>/
{
    "addressbook": {
        "items": [
            {
                "label": "New York HQ",
                "addressbookaddress": {
                    "country": "US",
                    "state": "NY",
                    "zip": "10001",
                    "addressee": "New company"
                }
            }
        ]
    }
} 

        

Related Topics

Employee Use Cases
Use Case for Adding a Supervisor to an Employee
Use Case for Adding Subscriptions to an Employee
Use Case for Creating an Expense Report from an Employee Record
Use Case for Finding All Employee Records Under a Supervisor
Use Case for Retrieving Permissions Assigned to a Role
Use Case for Finding IDs of Roles Assigned to an Employee
Use Case for Finding the Name of a Role

General Notices