For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add Managers (bulk) to Order

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

Method : POST

Data example

[
    {
        "email": "example1@gmail.com",
        "password": "test1234!",
        "first_name": "First 1",
        "last_name": "Last 1"
    },
    {
        "email": "example2@gmail.com",
        "password": "test1234!",
        "first_name": "First 1",
        "last_name": "Last 1"
    }
]

Success Response

Code : 200 OK

Content examples :

Last updated

Was this helpful?