Openportal Userinfo
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/openportal-userinfo/ |
List Openportal Userinfo |
| GET | /api/openportal-userinfo/{user}/ |
Retrieve |
| POST | /api/openportal-userinfo/ |
Create |
| PUT | /api/openportal-userinfo/{user}/ |
Update |
| PATCH | /api/openportal-userinfo/{user}/ |
Partial Update |
| DELETE | /api/openportal-userinfo/{user}/ |
Delete |
| Other Actions | ||
| GET | /api/openportal-userinfo/me/ |
Me |
| PUT | /api/openportal-userinfo/{user}/set_shortname/ |
Set shortname |
Core CRUD
List Openportal Userinfo
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
openportal_userinfo_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
user |
string | |
user_uuid |
string (uuid) |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. |
user |
string (uri) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
openportal_userinfo_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
user |
integer | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. |
user |
string (uri) |
Create
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
UserInfoRequest - API Source:
openportal_userinfo_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. | |
user |
string (uri) | ✓ |
201 -
| Field | Type | Description |
|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. |
user |
string (uri) |
Update
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
UserInfoRequest - API Source:
openportal_userinfo_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
user |
integer | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. | |
user |
string (uri) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. |
user |
string (uri) |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedUserInfoRequest - API Source:
openportal_userinfo_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
user |
integer | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. | |
user |
string (uri) |
200 -
| Field | Type | Description |
|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. |
user |
string (uri) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
openportal_userinfo_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
user |
integer | ✓ |
204 - No response body
Other Actions
Me
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 | |
- API Source:
openportal_userinfo_me_retrieve
1 2 3 4 5 6 7 8 9 10 | |
200 -
| Field | Type | Description |
|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. |
user |
string (uri) |
Set shortname
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
UserInfoRequest - API Source:
openportal_userinfo_set_shortname_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
user |
integer | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. | |
user |
string (uri) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
shortname |
string | A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter. |
user |
string (uri) |