Create Managing Director

The endpoint allows to create a new Managing Director.

SecuritybearerAuth
Request
path Parameters
Business-ID
required
string <uuid>

Business-ID

Request Body schema: application/json

Request details

legal_name
required
string

Legal Name

person_type
required
string

Person type

Enum: "legal_person" "natural_person"
legal_form
string

Legal Form. Required when person_type is legal_person.

register_number
string

Register Number. Required when person_type is legal_person.

object
Responses
201

New Managing Director has been created

401

Unauthorized

403

Forbidden

422

Error

500

Internal Error

503

Maintenance or Service unavailable

post/v1/businesses/{Business-ID}/managing-directors
Request samples
application/json
{
  • "legal_name": "John Smith",
  • "person_type": "legal_person",
  • "legal_form": "some_legal_form",
  • "register_number": "AT 1441251007-2",
  • "address": {
    }
}
Response samples
application/json
{
  • "data": {
    }
}