Add Managers (bulk) to Order

URL : /api/v1/orders/{id}/add_managers/

Method : POST

Data example

[
    {
        "email": "[email protected]",
        "password": "test1234!",
        "first_name": "First 1",
        "last_name": "Last 1"
    },
    {
        "email": "[email protected]",
        "password": "test1234!",
        "first_name": "First 1",
        "last_name": "Last 1"
    }
]

Success Response

Code : 200 OK

Content examples :

Last updated

Was this helpful?