configuration
Get User Configuration
Get a stored configuration by its UUID.
Path Parameters
- config_id (UUID): The “id” of a configuration previously returned by GET /api/v1/configuration/get_user_configuration/.
Response
Returns the stored configuration data as a JSON object. Returns an empty object with HTTP 200 (not 404) when no configuration with that id exists.
GET
Get User Configuration
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
UUID of a stored configuration (the 'id' field returned by GET /api/v1/configuration/get_user_configuration/).
Example:
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Response
Successful Response
The response is of type Response Get User Configuration Api V1 Configuration Get User Configuration Config Id Get · object.
Previous
Get User All ConfigurationList all configurations stored by the authenticated user.
## Response
Returns a JSON list of records of the form {"id", "ownerId", "name", "configuration",
"createdAt", "updatedAt"}. Returns an empty list when none exist. Use the "id" value
with GET /api/v1/configuration/get_user_configuration/{config_id} to fetch a single
configuration's data.
Next
Get User Configuration