# Read configurations **GET /networks/{network_identifier}/sensors/{sensor_identifier}/configurations** Returns a sensor's configurations in pages of 64 elements sorted ascendingly by `revision`. ## Servers - https://example.com: https://example.com () ## Authentication methods - Bearer token ## Parameters #### Path parameters - **network_identifier** (string) - **sensor_identifier** (string) #### Query parameters - **direction** (string) The direction of the page based on the cursor. If no cursor is provided, `next` returns the first page and `previous` returns the last page. - **revision** (integer) The cursor of the query. Depending on the direction, the request returns the next or previous elements. The element the cursor references is not included in the response. ## Responses ### 200: OK #### Body Parameters: (array[object]) - **value** (object) Configurations are JSON objects that are relayed to the sensors over MQTT. Sensors are expected to validate the configurations they receive and respond with positive or negative acknowledgments. - **revision** (integer) Configurations are assigned monotonically increasing revision numbers. The revision is used as an identifier in the communication with the sensors and can clearly match configurations to measurements and logs. - **creation_timestamp** (number) - **publication_timestamp** (number) - **acknowledgment_timestamp** (number) - **success** (boolean) ### 400: Bad Request ### 401: Unauthorized ### 403: Forbidden ### 404: Not Found [Powered by Bump.sh](https://bump.sh)