v5

latestOpenAPI 3.1.0raw.githubusercontent.com2024-12-05103351.8 KB
lists

Create a List

Create a list in Grata. The list visibility will be set to organization and it will be visible in the Grata UI for all users within the account to view.

post/api/v1.4/lists/

Request body

namestring required

Name of the list being created.

Example request

{
  "name": "New List"
}

Response

OK

namestring required

Name of the list.

list_uidstring required

UID of the list.

created_datestring date-time required

Date the list was created.

updated_datestring date-time required

Date the list was last updated.

company_countinteger required

Number of companies in the list.

Example response

{
  "name": "List A",
  "list_uid": "QE5XDQEB",
  "created_date": "2024-05-13T16:25:17.065916Z",
  "updated_date": "2024-06-17T07:15:59.708119Z",
  "company_count": 3
}