Add Managers (bulk) to Order

Adds order managers (bulk) to a single Order if the requesting manager has access permissions to it.

POST /api/v1/orders/{id}/add_managers/

Path parameter:

  • id — Order identifier (in the URL)

Note: The endpoint requires that the requesting manager has access permissions to the order.

Request (example body).json
[
    {
        "email": "[email protected]",
        "password": "test1234!",
        "first_name": "First 1",
        "last_name": "Last 1",
        "metadata": {
            "this": "that"
        }
    },
    {
        "email": "[email protected]",
        "password": "test1234!",
        "first_name": "First 1",
        "last_name": "Last 1"
    }
]

Responses

Was this helpful?