Skip to main content
POST
/
v1
/
orgs
/
current
/
invites
Invite a user to the current org
curl --request POST \
  --url https://api.nuon.co/v1/orgs/current/invites \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "role_type": "org_admin"
}
'
{
  "created_at": "<string>",
  "created_by_id": "<string>",
  "email": "<string>",
  "id": "<string>",
  "org_id": "<string>",
  "role_type": "org_admin",
  "status": "pending",
  "status_v2": {
    "created_at_ts": 123,
    "created_by_id": "<string>",
    "history": "<array>",
    "metadata": {},
    "status": "error",
    "status_human_description": "<string>"
  },
  "updated_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nuon.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and token.

Body

application/json

Input

email
string
required
role_type
enum<string>
Available options:
org_admin,
org_support,
installer,
runner,
hosted-installer

Response

Created

created_at
string
created_by_id
string
email
string
id
string
org_id
string

parent relationship

role_type
enum<string>
Available options:
org_admin,
org_support,
installer,
runner,
hosted-installer
status
enum<string>
Available options:
pending,
accepted
status_v2
object
updated_at
string