{ "opencollection": "1.0.0", "info": { "name": "Light Authorization v1 - Custom Properties API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "v1 - Custom Properties", "type": "folder" }, "items": [ { "info": { "name": "List custom property values", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/custom-properties/groups/:groupId/values", "params": [ { "name": "groupId", "value": "", "type": "path" }, { "name": "sort", "value": "", "type": "query" }, { "name": "filter", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return. Default is 50, maximum is 200." }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip before starting to collect the result set. Deprecated, use 'cursor' instead." }, { "name": "cursor", "value": "", "type": "query", "description": "The cursor position to start returning results from.\nTo opt-in into cursor-based pagination, provide `0` for the initial request.\nFor subsequent requests, use `nextCursor` and `prevCursor` from the previous response to navigate.\nCursor values are opaque and should not be constructed manually." } ] }, "docs": "Returns a paginated list of custom property values" }, { "info": { "name": "Create custom property value", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/custom-properties/groups/:groupId/values", "params": [ { "name": "groupId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new custom property value in the specified group" }, { "info": { "name": "Get custom property value", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/custom-properties/groups/:groupId/values/:valueId", "params": [ { "name": "groupId", "value": "", "type": "path" }, { "name": "valueId", "value": "", "type": "path" } ] }, "docs": "Returns a custom property value by ID" }, { "info": { "name": "Update custom property value", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v1/custom-properties/groups/:groupId/values/:valueId", "params": [ { "name": "groupId", "value": "", "type": "path" }, { "name": "valueId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing custom property value" }, { "info": { "name": "Delete custom property value", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/custom-properties/groups/:groupId/values/:valueId", "params": [ { "name": "groupId", "value": "", "type": "path" }, { "name": "valueId", "value": "", "type": "path" } ] }, "docs": "Deletes a custom property value by ID" }, { "info": { "name": "Get custom property group", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/custom-properties/groups/:groupId", "params": [ { "name": "groupId", "value": "", "type": "path" } ] }, "docs": "Returns a custom property group by ID" }, { "info": { "name": "List custom property groups", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/custom-properties/groups", "params": [ { "name": "sort", "value": "", "type": "query" }, { "name": "filter", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return. Default is 50, maximum is 200." }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip before starting to collect the result set. Deprecated, use 'cursor' instead." }, { "name": "cursor", "value": "", "type": "query", "description": "The cursor position to start returning results from.\nTo opt-in into cursor-based pagination, provide `0` for the initial request.\nFor subsequent requests, use `nextCursor` and `prevCursor` from the previous response to navigate.\nCursor values are opaque and should not be constructed manually." }, { "name": "includeValues", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of custom property groups" } ] } ], "bundled": true }