Skip to main content
POST
/
api2
/
v3
/
users
Create user
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v3/users \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "timezone": "<string>",
  "userName": "<string>",
  "active": true,
  "note": "<string>",
  "password": "<string>",
  "receiveNewsletter": true
}
'
import requests

url = "https://cloud.memsource.com/web/api2/v3/users"

payload = {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"timezone": "<string>",
"userName": "<string>",
"active": True,
"note": "<string>",
"password": "<string>",
"receiveNewsletter": True
}
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>',
firstName: '<string>',
lastName: '<string>',
timezone: '<string>',
userName: '<string>',
active: true,
note: '<string>',
password: '<string>',
receiveNewsletter: true
})
};

fetch('https://cloud.memsource.com/web/api2/v3/users', 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://cloud.memsource.com/web/api2/v3/users",
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>',
'lastName' => '<string>',
'timezone' => '<string>',
'userName' => '<string>',
'active' => true,
'note' => '<string>',
'password' => '<string>',
'receiveNewsletter' => true
]),
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://cloud.memsource.com/web/api2/v3/users"

payload := strings.NewReader("{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"timezone\": \"<string>\",\n \"userName\": \"<string>\",\n \"active\": true,\n \"note\": \"<string>\",\n \"password\": \"<string>\",\n \"receiveNewsletter\": true\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://cloud.memsource.com/web/api2/v3/users")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"<string>\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"timezone\": \"<string>\",\n \"userName\": \"<string>\",\n \"active\": true,\n \"note\": \"<string>\",\n \"password\": \"<string>\",\n \"receiveNewsletter\": true\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://cloud.memsource.com/web/api2/v3/users")

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 \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"timezone\": \"<string>\",\n \"userName\": \"<string>\",\n \"active\": true,\n \"note\": \"<string>\",\n \"password\": \"<string>\",\n \"receiveNewsletter\": true\n}"

response = http.request(request)
puts response.read_body
{
  "email": "<string>",
  "firstName": "<string>",
  "id": 123,
  "lastName": "<string>",
  "timezone": "<string>",
  "uid": "<string>",
  "userName": "<string>",
  "active": true,
  "assignableRoles": [
    "<string>"
  ],
  "createdBy": {
    "email": "<string>",
    "firstName": "<string>",
    "id": "<string>",
    "lastName": "<string>",
    "uid": "<string>",
    "userName": "<string>"
  },
  "credentialsReadonly": true,
  "dateCreated": "2023-11-07T05:31:56Z",
  "dateDeleted": "2023-11-07T05:31:56Z",
  "editorVersion": "<string>",
  "jobsInProgress": 123,
  "lastLogin": "2023-11-07T05:31:56Z",
  "note": "<string>",
  "pendingEmailChange": true,
  "receiveNewsletter": true,
  "twoFactorAuthEnabled": true
}

Authorizations

Authorization
string
header
required

Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.

Query Parameters

sendInvitation
boolean
default:false

When true, sends an invitation email; password field is ignored

Body

application/json
email
string
required

Email address

Maximum string length: 255
firstName
string
required

First name

Maximum string length: 255
lastName
string
required

Last name

Maximum string length: 255
role
enum<string>
required

User role

Available options:
ADMIN,
PROJECT_MANAGER,
LINGUIST,
GUEST,
SUBMITTER,
PORTAL_MEMBER
timezone
string
required

IANA timezone identifier, e.g. Europe/Berlin

Maximum string length: 255
userName
string
required

Username (login name)

Maximum string length: 255
active
boolean

When false, the user account is created but immediately deactivated

note
string

Internal note about the user; max 4096 characters

Maximum string length: 4096
password
string

Initial password; ignored when sendInvitation=true

Maximum string length: 255
receiveNewsletter
boolean

When true, the user receives newsletter emails

Response

Created

User with all belonging objects

email
string
required

Email address

Maximum string length: 255
firstName
string
required

First name

Maximum string length: 255
id
integer<int64>
required

Internal numeric ID

lastName
string
required

Last name

Maximum string length: 255
role
enum<string>
required

User role

Available options:
ADMIN,
PROJECT_MANAGER,
LINGUIST,
GUEST,
SUBMITTER,
PORTAL_MEMBER
timezone
string
required

IANA timezone identifier

Maximum string length: 255
uid
string
required

Unique identifier (UID)

Maximum string length: 255
userName
string
required

Username (login name)

Maximum string length: 255
active
boolean

When false, the user account is deactivated

assignableRoles
string[]

Roles that the calling user may assign to this user

createdBy
object
credentialsReadonly
boolean

When true, the user credentials are read-only due to SSO

dateCreated
string<date-time>

Date the user account was created

dateDeleted
string<date-time>

Date the user account was deleted; null if the account is active

editorVersion
string

Preferred editor version for the user

jobsInProgress
integer<int32>

Number of jobs currently in progress for this user

lastLogin
string<date-time>

Date and time of the user's last successful login

note
string

Internal note about the user

Maximum string length: 4096
pendingEmailChange
boolean

When true, the user has a pending email change

receiveNewsletter
boolean

When true, the user receives newsletter emails

twoFactorAuthEnabled
boolean

When true, the user has two-factor authentication configured