Retrieve Proof Lists

get

/rest/api/v1.3/lists/proofLists/records

Retrieves all Proof Lists for an account.

Request

Query Parameters
Back to Top

Response

Supported Media Types

Default Response

A list of all Proof Lists with their metadata.
Body ()
Root Schema : Proof List Array
Type: object
Title: Proof List Array
Show Source
Nested Schema : proofLists
Type: array
Show Source
Nested Schema : Proof List
Type: object
Title: Proof List
Show Source
Back to Top

Examples

The following example shows how to retrieve all proof lists for an account.

FIELDS DESCRIPTION
Authorization <AUTH_TOKEN>
Accept application/json

Sample Request URL:

    /rest/api/v1.3/lists/proofLists/records
	

Sample Response: Success

{
  "proofLists": [
    {
      "proofListName": "Proof_List",
      "listName": "Profile_List",
      "folderName": "Folder_Name",
      "createdBy": "API_User",
      "createdDate": "2020-04-28",
      "modifiedBy": "API_User",
      "modifiedDate": "2020-04-28"
    },
    {
      "proofListName": "Proof_List2",
      "listName": "Profile_List",
      "folderName": "Folder_Name",
      "createdBy": "API_User",
      "createdDate": "2020-04-14",
      "modifiedBy": "API_User",
      "modifiedDate": "2020-04-14"
    }
  ],
  "links": [
    {
      "rel": "self",
      "href": "/rest/api/v1.3/lists/proofLists/records",
      "method": "GET"
    }
  ]
}
	
Back to Top