Input parameters(7)
Custom Object Key
stringRequiredThe key of a custom object
Filter[Ids]
stringOptional comma-separated list of ids to filter records by. If one or more ids are specified, only matching records are returned. The ids must be unique and are case sensitive.
Filter[External Ids]
stringOptional comma-separated list of external ids to filter records by. If one or more ids are specified, only matching records are returned. The ids must be unique and are case sensitive.
Sort
stringOne of `id`, `updated_at`, `-id`, or `-updated_at`. The `-` denotes the sort will be descending.
Page[Before]
stringA [pagination cursor](/documentation/api-basics/pagination/paginating-through-lists-using-cursor-pagination) that tells the endpoint which page to start on. It should be a `meta.before_cursor` value from a previous request. Note: `page[before]` and `page[after]` can't be used together in the same request.
Page[After]
stringA [pagination cursor](/documentation/api-basics/pagination/paginating-through-lists-using-cursor-pagination) that tells the endpoint which page to start on. It should be a `meta.after_cursor` value from a previous request. Note: `page[before]` and `page[after]` can't be used together in the same request.
Page[Size]
integerSpecifies how many records should be returned in the response. You can specify up to 100 records per page.