Add Manager to Order

Adds an order manager to a single order if the requesting manager has access permissions to it.

  • Method: POST

  • URL: /api/v1/orders/{id}/add_manager/

Example request

Request body (application/json)
{
    "email": "[email protected]",
    "password": "4q3dg7!_"
}

Example responses

200 OK
{
    "id": 1941,
    "true_email": "[email protected]",
    "is_initial_password": true,
    "initial_password": "4q3dg7!_",
    "first_name": "",
    "last_name": "",
    "phone_number": "",
    "new_user": true,
    "password": "4q3dg7!_"
}

Was this helpful?