action clearblade_get_roles { label: "DEVELOPER - Get list of roles" description: "## Description:\n Get as a list of roles that are available to add to an user \n### Query:\n```json\n{\"PAGESIZE\":int,\"PAGENUM\":int,\"FILTERS\":[[{\"EQ\":[{\"name\":\"value\"}]}]]}\n```\n\n### Example:\n 0 and 0 for pagesize and pagenum returns all the information in one response.\n```json\n{\"PAGESIZE\":0,\"PAGENUM\":0,\"FILTERS\":[[{\"EQ\":[{\"name\":\"Authenticated\"}]}]]}\n```\n" provider: clearblade method: GET path: "/admin/user/{systemKey}/roles" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } query: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }