List all Projects
Returns a list of your Projects. The Projects are returned sorted by creation date, with the most recent Project appearing first.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token. More info here
Body
A limit on the number of objects to be returned.
A cursor for use in pagination. start_key
parameter defines the place in the list for your subsequent calls. For instance, if you make a list request and receive 100 objects, the last one having ABCDE
key, you can make a subsequent call with start_key=ABCDE
in order to fetch the next page of the list.
The order direction of the returned list. Objects are returned sorted by creation date. By default, the order is descending, so the most recent object appears first. Possible values are ASC and DESC. Default is DESC.
ASC
, DESC
The organization ID.
Response
String representing the object’s type. Objects of the same type share the same value.
The URL where this list can be accessed.
Whether there are more objects beyond the ones returned. You can use it to decide whether to show the user a “load more” button, for example.
The last key of the list. You can use its value on the start_key
parameter to fetch the next page of the list.