List entity reference

This topic describes the entity and type representations for common items that the List API uses. To learn about how to set up your developer account and work with the SKY API, see the Getting Started guide.

 

Represents request to create a list filtered to a set of unique record identifiers

The AppendIdsToList entity has the following properties:

PropertyTypeDescription
list_id string The immutable system record ID for the list
ids array of string The unique identifiers for the records to be added to the list. Limited to a maximumum 100,000 identifiers.

 

Represents a request to create a list filtered to a set of unique record identifiers

The CreateListFromIdsRequest entity has the following properties:

PropertyTypeDescription
name string The name of the list
description string The description of the list
list_type string Determines the type of list to create. Currently supports 'Constituent', 'Gift', 'Action', 'Opportunity'.

  • Action
  • Constituent
  • Gift
  • Opportunity

list_permissions string Determines whether other users can access the list. Currently supports 'OnlyOwnerCanAccess', 'OthersCanView', 'OthersCanViewAndEdit'.

  • OnlyOwnerCanAccess
  • OthersCanView
  • OthersCanViewAndEdit

ids array of string The unique identifiers for the records contained in the list. Limited to a maximumum 100,000 identifiers.

 

Represents response when creating a list from a set of unique record identifiers

The CreateListFromIdsResponse entity has the following properties:

PropertyTypeDescription
id string The identifier for the new list

 

Represents the List entity

The List entity has the following properties:

PropertyTypeDescription
id string The immutable system record ID for the list
name string The name of the list
description string The description of the list
record_count integer The total number of records defined by this list based on the last time this list was saved
date_modified datetime The date this list was last modified. Uses ISO-8601 format: 1969-11-21T10:29:43
last_modified_by_user_name string The name of the user that last modified the list
last_modified_by_user_id string The ID of the user that last modified the list
is_public boolean Indicates whether this is a public or private list.

 

Represents the list of lists entity

The Lists entity has the following properties:

PropertyTypeDescription
count integer The total number of lists in the set
value array of list Represents the List entity
Loading complete.