User
Create User (from client)
TERMINAL 3 API
SIGN IN WITH TERMINAL 3
- Getting Started
- Authorization
- User
- User Credential
NOTIFICATION
VERIFIABLE CREDENTIAL SDK
- Getting Started
- Issuer SDK
- Verifier SDK
User
Create User (from client)
Create a new user on Terminal 3 from the client without encryption and user acknowledgment.
POST
/
v1
/
user
/
create
curl --request POST \
--url https://staging.terminal3.io/v1/user/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-token: <x-api-token>' \
--data '{
"wallet": {
"address": "<string>",
"chain_id": "<string>"
},
"profile": {
"first_name": "<string>",
"middle_name": "<string>",
"last_name": "<string>",
"user_name": "<string>",
"email_address": "jsmith@example.com",
"mobile_number": 1,
"mobile_country_code": "<string>",
"avatar": "<string>",
"language_others": [
"<string>"
],
"residence_country": "<string>",
"residence_province": "<string>",
"residence_city": "<string>",
"gender": "male",
"date_of_birth": "<string>",
"language_primary": "<string>",
"employment_status": "employed",
"employment_industry": 123,
"marital_status": "single",
"education": "doctorate",
"household_income": "10000-"
}
}'
{
"data": {
"user_id": 123
}
}
This API allows you to create a Terminal 3 user account based on an email or (optional) wallet address. User data will be securely stored in decentralized storage.
The UserProfile
schema must adhere to the following format. Please ask us for more details on the validation rules for each field.
JSON
{
email_address: string;
first_name: string;
middle_name?: string;
last_name: string;
user_name?: string;
residence_country?: CountryOptions;
residence_province?: ProvinceOptions;
residence_city?: CityOptions;
mobile_number?: number;
mobile_country_code?: string;
gender?: GenderOptions;
date_of_birth?: string;
language_primary?: LanguageOptions;
language_others?: LanguageOptions;
employment_status?: EmploymentStatusOptions;
employment_industry?: EmploymentIndustryOptions;
marital_status?: MaritalStatusOptions;
education?: EducationOptions;
household_income?: HouseholdIncomeOptions;
}
Example input payload:
JSON
{
"wallet": {
"address": "0x2EF2922885EDcf2151f6C863e58adcEc70c11356",
"chain_id": "1"
},
"profile": { ...UserProfile }
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Required string length:
1 - 50
Required string length:
1 - 50
Maximum length:
80
Required string length:
1 - 50
Required string length:
3 - 60
Required range:
x > 0
Minimum length:
1
Minimum length:
1
Minimum length:
1
Minimum length:
1
Minimum length:
1
Available options:
male
, female
, other_gender
, unknown_gender
Minimum length:
1
Minimum length:
1
Available options:
employed
, self-employed
, unemployed
, student
, retired
Available options:
single
, married
, divorced
, separated
, widowed
, co-habiting
Available options:
doctorate
, master
, bachelor
, associate
, secondary_school
, primary_school
, no_schooling
Available options:
10000-
, 10000-14999
, 15000-19999
, 20000-39999
, 40000-49999
, 50000-74999
, 75000-99999
, 100000-149999
, 150000-174999
, 175000-199999
, 200000-249999
, 250000+
curl --request POST \
--url https://staging.terminal3.io/v1/user/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-token: <x-api-token>' \
--data '{
"wallet": {
"address": "<string>",
"chain_id": "<string>"
},
"profile": {
"first_name": "<string>",
"middle_name": "<string>",
"last_name": "<string>",
"user_name": "<string>",
"email_address": "jsmith@example.com",
"mobile_number": 1,
"mobile_country_code": "<string>",
"avatar": "<string>",
"language_others": [
"<string>"
],
"residence_country": "<string>",
"residence_province": "<string>",
"residence_city": "<string>",
"gender": "male",
"date_of_birth": "<string>",
"language_primary": "<string>",
"employment_status": "employed",
"employment_industry": 123,
"marital_status": "single",
"education": "doctorate",
"household_income": "10000-"
}
}'
{
"data": {
"user_id": 123
}
}