createUser
curl --request POST \
--url https://api.artemis.cynopsis.co/api/user \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Domain-ID: <x-domain-id>' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"address": "<string>",
"bio": "<string>",
"enabledTwoFactorAuth": true,
"id": "<string>",
"lastChangePassword": "2023-11-07T05:31:56Z",
"lastName": "<string>",
"permissions": [],
"phone": "<string>",
"rolesList": [
{
"roleId": 123
}
]
}
'import requests
url = "https://api.artemis.cynopsis.co/api/user"
payload = {
"email": "<string>",
"firstName": "<string>",
"address": "<string>",
"bio": "<string>",
"enabledTwoFactorAuth": True,
"id": "<string>",
"lastChangePassword": "2023-11-07T05:31:56Z",
"lastName": "<string>",
"permissions": [],
"phone": "<string>",
"rolesList": [{ "roleId": 123 }]
}
headers = {
"X-Domain-ID": "<x-domain-id>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Domain-ID': '<x-domain-id>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: '<string>',
firstName: '<string>',
address: '<string>',
bio: '<string>',
enabledTwoFactorAuth: true,
id: '<string>',
lastChangePassword: '2023-11-07T05:31:56Z',
lastName: '<string>',
permissions: [],
phone: '<string>',
rolesList: [{roleId: 123}]
})
};
fetch('https://api.artemis.cynopsis.co/api/user', 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.artemis.cynopsis.co/api/user",
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>',
'firstName' => '<string>',
'address' => '<string>',
'bio' => '<string>',
'enabledTwoFactorAuth' => true,
'id' => '<string>',
'lastChangePassword' => '2023-11-07T05:31:56Z',
'lastName' => '<string>',
'permissions' => [
],
'phone' => '<string>',
'rolesList' => [
[
'roleId' => 123
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Domain-ID: <x-domain-id>"
],
]);
$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.artemis.cynopsis.co/api/user"
payload := strings.NewReader("{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"address\": \"<string>\",\n \"bio\": \"<string>\",\n \"enabledTwoFactorAuth\": true,\n \"id\": \"<string>\",\n \"lastChangePassword\": \"2023-11-07T05:31:56Z\",\n \"lastName\": \"<string>\",\n \"permissions\": [],\n \"phone\": \"<string>\",\n \"rolesList\": [\n {\n \"roleId\": 123\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Domain-ID", "<x-domain-id>")
req.Header.Add("Authorization", "Bearer <token>")
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.artemis.cynopsis.co/api/user")
.header("X-Domain-ID", "<x-domain-id>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"address\": \"<string>\",\n \"bio\": \"<string>\",\n \"enabledTwoFactorAuth\": true,\n \"id\": \"<string>\",\n \"lastChangePassword\": \"2023-11-07T05:31:56Z\",\n \"lastName\": \"<string>\",\n \"permissions\": [],\n \"phone\": \"<string>\",\n \"rolesList\": [\n {\n \"roleId\": 123\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.artemis.cynopsis.co/api/user")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Domain-ID"] = '<x-domain-id>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"address\": \"<string>\",\n \"bio\": \"<string>\",\n \"enabledTwoFactorAuth\": true,\n \"id\": \"<string>\",\n \"lastChangePassword\": \"2023-11-07T05:31:56Z\",\n \"lastName\": \"<string>\",\n \"permissions\": [],\n \"phone\": \"<string>\",\n \"rolesList\": [\n {\n \"roleId\": 123\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"address": "<string>",
"avatar": "<string>",
"bio": "<string>",
"colorCode": "<string>",
"createdAt": {
"date": 123,
"day": 123,
"hours": 123,
"minutes": 123,
"month": 123,
"nanos": 123,
"seconds": 123,
"time": 123,
"timezoneOffset": 123,
"year": 123
},
"createdBy": {
"avatar": "<string>",
"colorCode": "<string>",
"email": "<string>",
"firstName": "<string>",
"id": 123,
"lastName": "<string>"
},
"email": "<string>",
"enabledTwoFactorAuth": true,
"firstName": "<string>",
"id": 123,
"lastAccessed": "<string>",
"lastName": "<string>",
"locked": true,
"phone": "<string>",
"role": "<string>",
"updatedAt": {
"date": 123,
"day": 123,
"hours": 123,
"minutes": 123,
"month": 123,
"nanos": 123,
"seconds": 123,
"time": 123,
"timezoneOffset": 123,
"year": 123
},
"updatedBy": {
"avatar": "<string>",
"colorCode": "<string>",
"email": "<string>",
"firstName": "<string>",
"id": 123,
"lastName": "<string>"
},
"verified": true
}user-controller
createUser
POST
/
api
/
user
createUser
curl --request POST \
--url https://api.artemis.cynopsis.co/api/user \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Domain-ID: <x-domain-id>' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"address": "<string>",
"bio": "<string>",
"enabledTwoFactorAuth": true,
"id": "<string>",
"lastChangePassword": "2023-11-07T05:31:56Z",
"lastName": "<string>",
"permissions": [],
"phone": "<string>",
"rolesList": [
{
"roleId": 123
}
]
}
'import requests
url = "https://api.artemis.cynopsis.co/api/user"
payload = {
"email": "<string>",
"firstName": "<string>",
"address": "<string>",
"bio": "<string>",
"enabledTwoFactorAuth": True,
"id": "<string>",
"lastChangePassword": "2023-11-07T05:31:56Z",
"lastName": "<string>",
"permissions": [],
"phone": "<string>",
"rolesList": [{ "roleId": 123 }]
}
headers = {
"X-Domain-ID": "<x-domain-id>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Domain-ID': '<x-domain-id>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: '<string>',
firstName: '<string>',
address: '<string>',
bio: '<string>',
enabledTwoFactorAuth: true,
id: '<string>',
lastChangePassword: '2023-11-07T05:31:56Z',
lastName: '<string>',
permissions: [],
phone: '<string>',
rolesList: [{roleId: 123}]
})
};
fetch('https://api.artemis.cynopsis.co/api/user', 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.artemis.cynopsis.co/api/user",
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>',
'firstName' => '<string>',
'address' => '<string>',
'bio' => '<string>',
'enabledTwoFactorAuth' => true,
'id' => '<string>',
'lastChangePassword' => '2023-11-07T05:31:56Z',
'lastName' => '<string>',
'permissions' => [
],
'phone' => '<string>',
'rolesList' => [
[
'roleId' => 123
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Domain-ID: <x-domain-id>"
],
]);
$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.artemis.cynopsis.co/api/user"
payload := strings.NewReader("{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"address\": \"<string>\",\n \"bio\": \"<string>\",\n \"enabledTwoFactorAuth\": true,\n \"id\": \"<string>\",\n \"lastChangePassword\": \"2023-11-07T05:31:56Z\",\n \"lastName\": \"<string>\",\n \"permissions\": [],\n \"phone\": \"<string>\",\n \"rolesList\": [\n {\n \"roleId\": 123\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Domain-ID", "<x-domain-id>")
req.Header.Add("Authorization", "Bearer <token>")
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.artemis.cynopsis.co/api/user")
.header("X-Domain-ID", "<x-domain-id>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"address\": \"<string>\",\n \"bio\": \"<string>\",\n \"enabledTwoFactorAuth\": true,\n \"id\": \"<string>\",\n \"lastChangePassword\": \"2023-11-07T05:31:56Z\",\n \"lastName\": \"<string>\",\n \"permissions\": [],\n \"phone\": \"<string>\",\n \"rolesList\": [\n {\n \"roleId\": 123\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.artemis.cynopsis.co/api/user")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Domain-ID"] = '<x-domain-id>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"address\": \"<string>\",\n \"bio\": \"<string>\",\n \"enabledTwoFactorAuth\": true,\n \"id\": \"<string>\",\n \"lastChangePassword\": \"2023-11-07T05:31:56Z\",\n \"lastName\": \"<string>\",\n \"permissions\": [],\n \"phone\": \"<string>\",\n \"rolesList\": [\n {\n \"roleId\": 123\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"address": "<string>",
"avatar": "<string>",
"bio": "<string>",
"colorCode": "<string>",
"createdAt": {
"date": 123,
"day": 123,
"hours": 123,
"minutes": 123,
"month": 123,
"nanos": 123,
"seconds": 123,
"time": 123,
"timezoneOffset": 123,
"year": 123
},
"createdBy": {
"avatar": "<string>",
"colorCode": "<string>",
"email": "<string>",
"firstName": "<string>",
"id": 123,
"lastName": "<string>"
},
"email": "<string>",
"enabledTwoFactorAuth": true,
"firstName": "<string>",
"id": 123,
"lastAccessed": "<string>",
"lastName": "<string>",
"locked": true,
"phone": "<string>",
"role": "<string>",
"updatedAt": {
"date": 123,
"day": 123,
"hours": 123,
"minutes": 123,
"month": 123,
"nanos": 123,
"seconds": 123,
"time": 123,
"timezoneOffset": 123,
"year": 123
},
"updatedBy": {
"avatar": "<string>",
"colorCode": "<string>",
"email": "<string>",
"firstName": "<string>",
"id": 123,
"lastName": "<string>"
},
"verified": true
}Authorizations
OAuth2_Client_CredentialsOAuth2_Password
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
X-Domain-ID
Body
application/json
userDetailDto
Available options:
ADMIN, ANONYMOUS, CASE_APPROVE, CASE_APPROVE_ACCEPTED, CASE_APPROVE_ACCEPTED_HIGH_RISK, CASE_APPROVE_ACCEPTED_LOW_RISK, CASE_APPROVE_ACCEPTED_MEDIUM_HIGH_RISK, CASE_APPROVE_ACCEPTED_MEDIUM_LOW_RISK, CASE_APPROVE_ACCEPTED_MEDIUM_RISK, CASE_APPROVE_REJECTED, CASE_ASSIGN, CASE_CREATE, CASE_DELETE, CASE_DELETE_COMMENT, CASE_DELETE_DOCUMENT, CASE_GROUP_PERMISSIVE, CASE_PERMISSIVE, CASE_REQUEST_UPDATE, CASE_UPDATE, CASE_VIEW, ORL_CREATE, ORL_DELETE, ORL_UPDATE, ORL_VIEW, SERVICE, USER_CREATE, USER_DELETE, USER_GROUP_CREATE, USER_GROUP_DELETE, USER_GROUP_UPDATE, USER_GROUP_VIEW, USER_REACTIVATE, USER_UPDATE_PERMISSION, USER_VIEW Show child attributes
Show child attributes
Response
OK
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I
