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>"
}
'
import requests

url = "https://api.nuon.co/v1/orgs/current/invites"

payload = { "email": "<string>" }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({email: '<string>'})
};

fetch('https://api.nuon.co/v1/orgs/current/invites', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nuon.co/v1/orgs/current/invites",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'email' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.nuon.co/v1/orgs/current/invites"

payload := strings.NewReader("{\n \"email\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.nuon.co/v1/orgs/current/invites")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.nuon.co/v1/orgs/current/invites")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "created_at": "<string>",
  "created_by_id": "<string>",
  "email": "<string>",
  "id": "<string>",
  "org_id": "<string>",
  "status_v2": {
    "created_at_ts": 123,
    "created_by_id": "<string>",
    "history": "<array>",
    "metadata": {},
    "status_human_description": "<string>"
  },
  "updated_at": "<string>"
}
{
"description": "<string>",
"error": "<string>",
"user_error": true
}
{
"description": "<string>",
"error": "<string>",
"user_error": true
}
{
"description": "<string>",
"error": "<string>",
"user_error": true
}
{
"description": "<string>",
"error": "<string>",
"user_error": true
}
{
"description": "<string>",
"error": "<string>",
"user_error": true
}
{
"description": "<string>",
"error": "<string>",
"user_error": true
}

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,
revoked
status_v2
object
updated_at
string