- GET [/instances/$INSTANCES]/private/pots#
This is used to return all the pots that are present in our backend.
Required permission:
pots-readRequest:
- Query Parameters:
limit – Optional. At most return the given number of results. Negative for descending by
serial, positive for ascending byserial. Defaults to-20.offset – Optional. Starting
serialfor pagination.
Response:
- 200 OK:
The backend has successfully returned all the pots. Returns a PotsSummaryResponse.
- 404 Not found:
The backend has does not know about the instance.
Details:
interface PotsSummaryResponse { // Return pots that are present in our backend. pots: PotEntry[]; }
The PotEntry object describes a pot. It has the following structure: