User Schemas
User
Properties
| Property | Type | Description |
|---|---|---|
status | string | |
user_id | integer | |
first_name | string | |
last_name | string | |
email | string |
UserCreateRequest
Properties
| Property | Type | Description |
|---|---|---|
email | string | |
first_name | string | |
last_name | string | |
password | string | |
agency_name | string | |
website | string | |
phone | string | |
address | string | |
make_api_token | integer | Set to 1 to also create an API token for the new user |
UserCreateResponse
Properties
| Property | Type | Description |
|---|---|---|
status | string | |
user_id | integer | |
access_token | string | Only returned if make_api_token=1 |
ApiAccessRequest
Properties
| Property | Type | Description |
|---|---|---|
user_id | integer | User ID to create API access for |
ApiAccessResponse
Properties
| Property | Type | Description |
|---|---|---|
status | string | |
access_token | string |