Skip to main content
POST
/
api
/
company
/
{company_uid}
/
members
Add company member
curl --request POST \
  --url https://dev.exante.app/api/company/{company_uid}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "user_id": 123
}'
{
  "status": "success",
  "status_code": 200,
  "message": "Success",
  "data": {}
}
Adds an existing user to a company.
This endpoint only creates the CompanyMember relationship. Adding the user to specific organizations remains a separate step.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

company_uid
string<uuid>
required

Company UID

Body

application/json
user_id
integer
required

Internal user ID to add to the company

Response

Member added

status
string
Example:

"success"

status_code
integer
Example:

200

message
string
Example:

"Success"

data
object

Optional payload included by endpoints that use the standard success wrapper.