Lexis Links
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/lexis-links/ |
List Lexis Links |
| GET | /api/lexis-links/{uuid}/ |
Retrieve |
| POST | /api/lexis-links/ |
Create |
| PUT | /api/lexis-links/{uuid}/ |
Update |
| PATCH | /api/lexis-links/{uuid}/ |
Partial Update |
| DELETE | /api/lexis-links/{uuid}/ |
Delete |
List Lexis Links
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
lexis_links_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
customer_uuid |
string (uuid) | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
project_uuid |
string (uuid) | |
query |
string | Filter by robot account username or type |
resource_uuid |
string (uuid) | |
uuid |
string (uuid) |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
created |
string (date-time) |
modified |
string (date-time) |
robot_account |
string (uri) |
robot_account_username |
string |
robot_account_type |
string |
state |
string |
resource_uuid |
string (uuid) |
resource_name |
string |
resource_type |
string |
resource_backend_id |
string |
resource_end_date |
string (date-time) |
project_uuid |
string (uuid) |
project_name |
string |
customer_uuid |
string (uuid) |
customer_name |
string |
heappe_project_id |
integer |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
lexis_links_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
created |
string (date-time) |
modified |
string (date-time) |
robot_account |
string (uri) |
robot_account_username |
string |
robot_account_type |
string |
state |
string |
resource_uuid |
string (uuid) |
resource_name |
string |
resource_type |
string |
resource_backend_id |
string |
resource_end_date |
string (date-time) |
project_uuid |
string (uuid) |
project_name |
string |
customer_uuid |
string (uuid) |
customer_name |
string |
heappe_project_id |
integer |
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:
LexisLinkCreateRequest - API Source:
lexis_links_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required |
|---|---|---|
resource |
string (uri) | ✓ |
201 - No response body
Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
LexisLinkRequest - API Source:
lexis_links_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
heappe_project_id |
integer |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
created |
string (date-time) |
modified |
string (date-time) |
robot_account |
string (uri) |
robot_account_username |
string |
robot_account_type |
string |
state |
string |
resource_uuid |
string (uuid) |
resource_name |
string |
resource_type |
string |
resource_backend_id |
string |
resource_end_date |
string (date-time) |
project_uuid |
string (uuid) |
project_name |
string |
customer_uuid |
string (uuid) |
customer_name |
string |
heappe_project_id |
integer |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedLexisLinkRequest - API Source:
lexis_links_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
heappe_project_id |
integer |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
created |
string (date-time) |
modified |
string (date-time) |
robot_account |
string (uri) |
robot_account_username |
string |
robot_account_type |
string |
state |
string |
resource_uuid |
string (uuid) |
resource_name |
string |
resource_type |
string |
resource_backend_id |
string |
resource_end_date |
string (date-time) |
project_uuid |
string (uuid) |
project_name |
string |
customer_uuid |
string (uuid) |
customer_name |
string |
heappe_project_id |
integer |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
lexis_links_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body