Skip to main content
POST
/
users
/
add
curl --request POST \
--url https://api.velt.dev/v2/users/add \
--header 'Content-Type: application/json' \
--header 'x-velt-api-key: <api-key>' \
--header 'x-velt-auth-token: <api-key>' \
--data '{
"data": {
"organizationId": "yourOrganizationId",
"users": [
{
"userId": "yourUserId1",
"name": "User Name",
"email": "user@email.com",
"accessRole": "editor"
}
]
}
}'
{
  "result": {
    "status": "<string>",
    "message": "<string>",
    "data": {}
  }
}

Authorizations

x-velt-api-key
string
header
required

Your API key from the Velt Console

x-velt-auth-token
string
header
required

Your Auth Token for authentication

Body

application/json
data
object
required

Response

Users processed successfully

result
object