{"info":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","description":"

Introduction

\n

The GreyMatter API provides access to select GreyMatter capabilities through a GraphQL interface. All API interactions occur over a secure HTTPS connection to a single endpoint. Requests are made using the POST HTTPS method with JSON-encoded bodies, and the API returns JSON-encoded responses. We use standard HTTP response codes for indicating the status of requests, and authentication is managed via API keys.

\n

You can use GraphQL queries to fetch specific information and mutations to perform actions. To explore the full range of available operations and data structures, the API supports GraphQL introspection. As we iteratively enhance the API, introspection is the best way to stay updated on the latest features.

\n

Base URL

\n

Production Environment - https://greymatter.myreliaquest.com/graphql

\n

QuickStart Guides

\n\n

Authentication

\n

Requests to all GraphQL nodes require authentication by using a dedicated (high entropy) API key. To authenticate your requests, include a header in the HTTPS request called X-API-KEY with the value of your API key.

\n

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.

\n

Note: You cannot use your normal email/password login details.

\n

Managing API Keys

\n\n

Requests and Responses

\n

The GreyMatter API uses GraphQL. All requests must use the POST HTTPS method.

\n\n

Responses

\n

All operations will respond with standard HTTPS status codes:

\n\n

Rate Limiting

\n

The GreyMatter API employs rate limiting to ensure performant access for all users. The limit per GreyMatter User account is 5000 tokens per hour. Each Node entity in the request counts as a token.

\n

Pagination

\n

For queries that return paginated results, the API follows the GraphQL Connections standard (https://relay.dev/graphql/connections.htm).

\n

Paginated queries accept two inputs:

\n\n

The response for a paginated query will be a Connection type, which includes:

\n\n

Global IDs

\n

The GreyMatter API uses Global IDs to identify entities.

\n

Global IDs are a base64-encoded string that includes the type of entity and its unique identifier.

\n

For example, Incident:ffb4f0e4-b48d-4cb6-bf85-b9e5f27d2b27 | base64 = SW5jaWRlbnQ6ZmZiNGYwZTQtYjQ4ZC00Y2I2LWJmODUtYjllNWYyN2QyYjI3

\n

In general, a query that returns an entity will include an id field that contains the Global ID of the entity.

\n

Note: If a cursor is passed in that would fit inside of a page (based on the after input), the results will start at the beginning of that page, not specifically where the cursor points within the page.

\n

Support

\n

If you require support for using the API, troubleshooting, or setup, please contact greymattersupport@reliaquest.com.

\n

Frequently Asked Questions (FAQ)

\n\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Requests and Responses","slug":"requests-and-responses"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Pagination","slug":"pagination"},{"content":"Global IDs","slug":"global-ids"},{"content":"Support","slug":"support"}],"owner":"39440280","collectionId":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","publishedId":"2sAYQZJYMC","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"00AFAB"},"publishDate":"2026-09-08T19:51:13.000Z"},"item":[{"name":"Access Groups","item":[{"name":"Mutations","item":[{"name":"createAccessGroup","id":"48fbf5a0-d9e9-4eb0-a30c-3fe85aef0be0","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createAccessGroup ($after: String, $filter: PodFilter, $first: Int, $order: PodOrder, $after1: String, $filter1: RoleFilter, $first1: Int, $order1: RoleOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: CreateAccessGroupInput!) {\n createAccessGroup (input: $input) {\n accessGroup {\n createdAt\n description\n id\n isDefault\n name\n pods (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n roles (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n ssoGroups\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"ssoGroups\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create an access group

\n

Inputs: \nCreateAccessGroupInput,

\n

Return: \nCreateAccessGroupResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"b8b5125b-41b5-4694-a033-af943f5815df","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createAccessGroup ($after: String, $filter: PodFilter, $first: Int, $order: PodOrder, $after1: String, $filter1: RoleFilter, $first1: Int, $order1: RoleOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: CreateAccessGroupInput!) {\n createAccessGroup (input: $input) {\n accessGroup {\n createdAt\n description\n id\n isDefault\n name\n pods (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n roles (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n ssoGroups\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"ssoGroups\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create an access group\n\nInputs: \nCreateAccessGroupInput, \n\nReturn: \nCreateAccessGroupResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createAccessGroup\": {\n \"accessGroup\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"ssoGroups\": [\n \"\"\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"48fbf5a0-d9e9-4eb0-a30c-3fe85aef0be0"},{"name":"createPod","id":"d31d5c97-a753-48df-8d0f-7092e779a7e4","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createPod ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: CustomerFilter, $first1: Int, $notFilter: CustomerFilter, $order1: CustomerOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: CreatePodInput!) {\n createPod (input: $input) {\n pod {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n customers (after: $after1, filter: $filter1, first: $first1, notFilter: $notFilter, order: $order1) {\n totalCount\n }\n description\n id\n name\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a pod

\n

Inputs: \nCreatePodInput,

\n

Return: \nCreatePodResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"93334142-7d8f-4f80-8150-39dd3f0d6f2a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createPod ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: CustomerFilter, $first1: Int, $notFilter: CustomerFilter, $order1: CustomerOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: CreatePodInput!) {\n createPod (input: $input) {\n pod {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n customers (after: $after1, filter: $filter1, first: $first1, notFilter: $notFilter, order: $order1) {\n totalCount\n }\n description\n id\n name\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a pod\n\nInputs: \nCreatePodInput, \n\nReturn: \nCreatePodResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createPod\": {\n \"pod\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customers\": {\n \"totalCount\": 0\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"d31d5c97-a753-48df-8d0f-7092e779a7e4"},{"name":"createRole","id":"9958e60d-71f2-42f6-8cbd-42ac0577a3a6","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createRole ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: UserFilter, $first1: Int, $order1: UserOrder, $input: CreateRoleInput!) {\n createRole (input: $input) {\n role {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n users (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a role

\n

Inputs: \nCreateRoleInput,

\n

Return: \nCreateRoleResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"22f4d84c-dc56-4bc9-8ce8-7868ce0f046f","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createRole ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: UserFilter, $first1: Int, $order1: UserOrder, $input: CreateRoleInput!) {\n createRole (input: $input) {\n role {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n users (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a role\n\nInputs: \nCreateRoleInput, \n\nReturn: \nCreateRoleResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createRole\": {\n \"role\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"type\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"9958e60d-71f2-42f6-8cbd-42ac0577a3a6"},{"name":"deleteAccessGroup","id":"e32f4bab-6521-4b7b-ad70-1046f1160f23","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAccessGroup ($id: ID!) {\n deleteAccessGroup (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete an access group

\n

Inputs: \nID,

\n

Return: \nDeleteAccessGroupResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"921c1225-1f22-4988-b87d-a2e3c3780f2b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAccessGroup ($id: ID!) {\n deleteAccessGroup (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete an access group\n\nInputs: \nID, \n\nReturn: \nDeleteAccessGroupResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteAccessGroup\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"e32f4bab-6521-4b7b-ad70-1046f1160f23"},{"name":"deletePod","id":"fb933a11-3b1b-42ff-8f90-83f6121772f0","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deletePod ($id: ID!) {\n deletePod (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete a pod

\n

Inputs: \nID,

\n

Return: \nDeletePodResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"e150625d-f9c6-471c-b309-8ab5efd13a10","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deletePod ($id: ID!) {\n deletePod (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete a pod\n\nInputs: \nID, \n\nReturn: \nDeletePodResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deletePod\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"fb933a11-3b1b-42ff-8f90-83f6121772f0"},{"name":"deleteRole","id":"cb71ab83-2a53-4e07-8fc2-0cadf430b099","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteRole ($id: ID!) {\n deleteRole (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete a pod

\n

Inputs: \nID,

\n

Return: \nDeleteRoleResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"f0489917-9d13-4d15-a336-ac42a1354dab","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteRole ($id: ID!) {\n deleteRole (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete a pod\n\nInputs: \nID, \n\nReturn: \nDeleteRoleResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteRole\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"cb71ab83-2a53-4e07-8fc2-0cadf430b099"},{"name":"updateAccessGroup","id":"f984a805-95b3-4383-b45a-ec4fe7da7928","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAccessGroup ($after: String, $filter: PodFilter, $first: Int, $order: PodOrder, $after1: String, $filter1: RoleFilter, $first1: Int, $order1: RoleOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: UpdateAccessGroupInput!) {\n updateAccessGroup (input: $input) {\n accessGroup {\n createdAt\n description\n id\n isDefault\n name\n pods (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n roles (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n ssoGroups\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"id\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"pods\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"roles\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"ssoGroups\": \"\",\n \"users\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update an access group

\n

Inputs: \nUpdateAccessGroupInput,

\n

Return: \nUpdateAccessGroupResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1a26210b-bb61-4e4e-a7c6-e36acdf63e51","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAccessGroup ($after: String, $filter: PodFilter, $first: Int, $order: PodOrder, $after1: String, $filter1: RoleFilter, $first1: Int, $order1: RoleOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: UpdateAccessGroupInput!) {\n updateAccessGroup (input: $input) {\n accessGroup {\n createdAt\n description\n id\n isDefault\n name\n pods (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n roles (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n ssoGroups\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"description\": \"\",\n \"id\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"pods\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"roles\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"ssoGroups\": \"\",\n \"users\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update an access group\n\nInputs: \nUpdateAccessGroupInput, \n\nReturn: \nUpdateAccessGroupResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateAccessGroup\": {\n \"accessGroup\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"ssoGroups\": [\n \"\"\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"f984a805-95b3-4383-b45a-ec4fe7da7928"},{"name":"updatePod","id":"7ced7287-52e2-4c7f-87fb-cdb960c8a6cc","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updatePod ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: CustomerFilter, $first1: Int, $notFilter: CustomerFilter, $order1: CustomerOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: UpdatePodInput!) {\n updatePod (input: $input) {\n pod {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n customers (after: $after1, filter: $filter1, first: $first1, notFilter: $notFilter, order: $order1) {\n totalCount\n }\n description\n id\n name\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"customers\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update a pod

\n

Inputs: \nUpdatePodInput,

\n

Return: \nUpdatePodResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d1f6ede3-8226-42f2-8a21-467c83ee9fed","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updatePod ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: CustomerFilter, $first1: Int, $notFilter: CustomerFilter, $order1: CustomerOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $input: UpdatePodInput!) {\n updatePod (input: $input) {\n pod {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n customers (after: $after1, filter: $filter1, first: $first1, notFilter: $notFilter, order: $order1) {\n totalCount\n }\n description\n id\n name\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"customers\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update a pod\n\nInputs: \nUpdatePodInput, \n\nReturn: \nUpdatePodResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updatePod\": {\n \"pod\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customers\": {\n \"totalCount\": 0\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"7ced7287-52e2-4c7f-87fb-cdb960c8a6cc"},{"name":"updateRole","id":"f1822d72-91d5-463a-b913-50c8131a70b9","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateRole ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: UserFilter, $first1: Int, $order1: UserOrder, $input: UpdateRoleInput!) {\n updateRole (input: $input) {\n role {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n users (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"permissions\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update a pod

\n

Inputs: \nUpdateRoleInput,

\n

Return: \nUpdateRoleResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"131c66c1-6085-46ca-b43e-53d868137c73","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateRole ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: UserFilter, $first1: Int, $order1: UserOrder, $input: UpdateRoleInput!) {\n updateRole (input: $input) {\n role {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n users (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"permissions\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update a pod\n\nInputs: \nUpdateRoleInput, \n\nReturn: \nUpdateRoleResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateRole\": {\n \"role\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"type\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"f1822d72-91d5-463a-b913-50c8131a70b9"}],"id":"90e696c4-64ab-43cb-bd27-e0023469e927","_postman_id":"90e696c4-64ab-43cb-bd27-e0023469e927","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"accessGroup","id":"86933748-304b-47d6-83ce-cac921dcf9fa","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessGroup ($after: String, $filter: PodFilter, $first: Int, $order: PodOrder, $after1: String, $filter1: RoleFilter, $first1: Int, $order1: RoleOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $id: ID!) {\n accessGroup (id: $id) {\n createdAt\n description\n id\n isDefault\n name\n pods (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n ssoGroups\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nID,

\n

Return: \nAccessGroup

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"5191eb09-600a-44df-b058-b2aebd336b92","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessGroup ($after: String, $filter: PodFilter, $first: Int, $order: PodOrder, $after1: String, $filter1: RoleFilter, $first1: Int, $order1: RoleOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $id: ID!) {\n accessGroup (id: $id) {\n createdAt\n description\n id\n isDefault\n name\n pods (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n ssoGroups\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nID, \n\nReturn: \nAccessGroup\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"accessGroup\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"pods\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"roles\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"ssoGroups\": [\n \"\"\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n }\n}"}],"_postman_id":"86933748-304b-47d6-83ce-cac921dcf9fa"},{"name":"accessGroups","id":"298e4cb6-4abd-4f69-9533-f59232eb6cc6","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessGroups ($after: String, $filter: AccessGroupFilter, $first: Int, $notFilter: AccessGroupFilter, $order: AccessGroupOrder) {\n accessGroups (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n createdAt\n description\n id\n isDefault\n name\n ssoGroups\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Query the access groups

\n

Inputs: \nString, AccessGroupFilter, Int, AccessGroupFilter, AccessGroupOrder,

\n

Return: \nAccessGroupConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"a36d6909-d0c8-4c4a-b4fe-5a93054f1156","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessGroups ($after: String, $filter: AccessGroupFilter, $first: Int, $notFilter: AccessGroupFilter, $order: AccessGroupOrder) {\n accessGroups (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n createdAt\n description\n id\n isDefault\n name\n ssoGroups\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Query the access groups\n\nInputs: \nString, AccessGroupFilter, Int, AccessGroupFilter, AccessGroupOrder, \n\nReturn: \nAccessGroupConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"isDefault\": true,\n \"name\": \"\",\n \"ssoGroups\": [\n \"\"\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"298e4cb6-4abd-4f69-9533-f59232eb6cc6"},{"name":"permissions","id":"7cf2b04d-a4b1-44e5-9f69-92c9be961f22","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query permissions {\n permissions {\n description\n displayName\n groups\n name\n }\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Query the available permissions

\n

Return: \nPermission

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"10ef2e53-cd0b-4282-8cc0-c0e99d34b044","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query permissions {\n permissions {\n description\n displayName\n groups\n name\n }\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Query the available permissions\n\nReturn: \nPermission\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"permissions\": [\n {\n \"description\": \"\",\n \"displayName\": \"\",\n \"groups\": [\n \"\"\n ],\n \"name\": \"\"\n }\n ]\n }\n}"}],"_postman_id":"7cf2b04d-a4b1-44e5-9f69-92c9be961f22"},{"name":"pod","id":"eff14ee4-ff92-46f2-9811-b33462f3cb82","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query pod ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: CustomerFilter, $first1: Int, $notFilter: CustomerFilter, $order1: CustomerOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $id: ID!) {\n pod (id: $id) {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n customers (after: $after1, filter: $filter1, first: $first1, notFilter: $notFilter, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n description\n id\n name\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nID,

\n

Return: \nPod

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"4c33207e-6420-43a5-82a0-f561ae420d2a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query pod ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: CustomerFilter, $first1: Int, $notFilter: CustomerFilter, $order1: CustomerOrder, $after2: String, $filter2: UserFilter, $first2: Int, $order2: UserOrder, $id: ID!) {\n pod (id: $id) {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n customers (after: $after1, filter: $filter1, first: $first1, notFilter: $notFilter, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n description\n id\n name\n updatedAt\n users (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nID, \n\nReturn: \nPod\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"pod\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customers\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n }\n}"}],"_postman_id":"eff14ee4-ff92-46f2-9811-b33462f3cb82"},{"name":"pods","id":"f1b5b695-877d-463c-bd38-81f12a9f33ea","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query pods ($after: String, $filter: PodFilter, $first: Int, $notFilter: PodFilter, $order: PodOrder) {\n pods (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n createdAt\n description\n id\n name\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Query the pods

\n

Inputs: \nString, PodFilter, Int, PodFilter, PodOrder,

\n

Return: \nPodConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"f34836d5-00fd-4908-a578-38b6649b9cf7","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query pods ($after: String, $filter: PodFilter, $first: Int, $notFilter: PodFilter, $order: PodOrder) {\n pods (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n createdAt\n description\n id\n name\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Query the pods\n\nInputs: \nString, PodFilter, Int, PodFilter, PodOrder, \n\nReturn: \nPodConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"pods\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"f1b5b695-877d-463c-bd38-81f12a9f33ea"},{"name":"role","id":"2691cdba-43e8-43ab-a292-996b6c0fd32b","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query role ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: UserFilter, $first1: Int, $order1: UserOrder, $id: ID!) {\n role (id: $id) {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n users (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nID,

\n

Return: \nRole

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d73e02b4-2cfc-4d03-9be3-09cec1d80cd1","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query role ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: UserFilter, $first1: Int, $order1: UserOrder, $id: ID!) {\n role (id: $id) {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n users (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"status\": [\n \"ACTIVE\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nID, \n\nReturn: \nRole\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"role\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"type\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"users\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n }\n}"}],"_postman_id":"2691cdba-43e8-43ab-a292-996b6c0fd32b"},{"name":"roles","id":"ae88e3e8-eb5b-4016-9818-ac03631c8bc2","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query roles ($after: String, $filter: RoleFilter, $first: Int, $notFilter: RoleFilter, $order: RoleOrder) {\n roles (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Query the roles

\n

Inputs: \nString, RoleFilter, Int, RoleFilter, RoleOrder,

\n

Return: \nRoleConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"bf20e06a-dd93-45da-8c7a-5a56c3cacd3b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query roles ($after: String, $filter: RoleFilter, $first: Int, $notFilter: RoleFilter, $order: RoleOrder) {\n roles (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n createdAt\n description\n id\n name\n permissions\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Query the roles\n\nInputs: \nString, RoleFilter, Int, RoleFilter, RoleOrder, \n\nReturn: \nRoleConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"roles\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"type\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"ae88e3e8-eb5b-4016-9818-ac03631c8bc2"}],"id":"a735fd0b-1452-421c-9566-29d1fa4aef5b","_postman_id":"a735fd0b-1452-421c-9566-29d1fa4aef5b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"7199d6a9-7425-4008-b05f-3467cf008db9","description":"

Permission

\n

Represents a permission

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionDescription of the permissionString
displayNameDisplay Name of the permissionString
groupsGroups of the permissionString
nameName of the permissionString
\n

AccessGroupOrderBy

\n

OrderBy ENUM for Access Groups

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NAME
\n

AccessGroupOrder

\n

Orders Access Groups

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByAccessGroupOrderBy
\n

AccessGroupFilter

\n

Filters access groups

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
customersFilter by the customers associated with pods that are associated with the access groupsID
idsFilter by the ids of the access groupsID
nameFilter by the name of the access groupString
podsFilter by the pods associated with the access groupsID
rolesFilter by the roles associated with the access groupsID
usersFilter by the users associated with the access groupsID
\n

PodOrderBy

\n

OrderBy ENUM for Pods

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NAME
\n

PodOrder

\n

Orders Pods

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByPodOrderBy
\n

PodFilter

\n

Filters pods

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsFilter by the access groups associated with the podsID
customersFilter by the customers associated with podsID
idsFilter by the ids of the podsID
nameFilter by the name of the podString
rolesFilter by the roles associated with access groups that are associated with the podsID
usersFilter by the users associated with access groups that are associated with the podsID
\n

RoleOrderBy

\n

OrderBy ENUM for Roles

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NAME
\n

RoleOrder

\n

Orders Roles

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByRoleOrderBy
\n

RoleFilter

\n

Filters Roles

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsFilter by the access groups associated with the rolesID
customersFilter by the customers associated with pods that are associated with access groups that are associated with the rolesID
idsFilter by the ids of the rolesID
nameFilter by the name of the roleString
podsFilter by the pods associated with access groups associated with the rolesID
usersFilter by the users associated with access groups associated with the rolesID
\n

AccessGroupConnection

\n

The connection type for Access Groups

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesAccessGroupEdge
pageInfoPageInfo
totalCountInt
\n

AccessGroupEdge

\n

The edge type for Access Groups

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeAccessGroup
\n

AccessGroup

\n

Represents access groups

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtAudit event creation timestampDateTime
descriptionDescription of the Access GroupString
idId of the Access GroupID
isDefaultWhether or not this is the default Access Group for new UsersBoolean
nameName of the Access GroupString
podsQuery the pods associated with this access groupPodConnection
rolesQuery the roles associated with this access groupRoleConnection
ssoGroupsValues of external SSO Groups that will be used to auto-assign users to this access group If SCIM is enabled, when users are updated through SCIM, their SSO Groups will be matched to these links If SCIM is not enabled, when a user logs in, their SSO Groups will be matched to these linksString
updatedAtAudit event update timestampDateTime
usersQuery the users associated with this access groupUserConnection
\n

PodConnection

\n

The connection type for Pods

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesPodEdge
pageInfoPageInfo
totalCountInt
\n

PodEdge

\n

The edge type for Pods

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodePod
\n

Pod

\n

Represents Pods

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsQuery the access groups associated with this podAccessGroupConnection
createdAtAudit event creation timestampDateTime
customersQuery the customers associated with this podCustomerConnection
descriptionDescription of the PodString
idId of the PodID
nameName of the PodString
updatedAtAudit event update timestampDateTime
usersQuery the users which are indirectly associated with this pod via access groupUserConnection
\n

RoleConnection

\n

The connection type for Roles

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesRoleEdge
pageInfoPageInfo
totalCountInt
\n

RoleEdge

\n

The edge type for Roles

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeRole
\n

Role

\n

Represents a Role

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsAccess groups associated with this roleAccessGroupConnection
createdAtAudit event creation timestampDateTime
descriptionDescription of the roleString
idID of the roleID
nameName of the roleString
permissionsPermissions associated with this roleString
typeType of the role, either CUSTOM or SYSTEMString
updatedAtAudit event update timestampDateTime
usersQuery the users which are indirectly associated with this role via access groupUserConnection
\n

CreateAccessGroupInput

\n

Input for creating an access group

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionDescription of the access groupString
isDefaultWhether or not this is the default Access Group for new UsersBoolean
nameName of the access groupString
podsPods to be associated with this access groupID
rolesRoles to be associated with this access groupID
ssoGroupsValues of external SSO Groups This must match exactly with the external valueString
usersUsers to be associated with this access groupID
\n

CreateAccessGroupResponse

\n

Response for creating an access group

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupThe access group that was createdAccessGroup
successBoolean
\n

UpdateAccessGroupInput

\n

Input for updating an access group

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionThe new description of the access groupString
idID of the AccessGroupID
isDefaultUpdates to the default attribute of the access groupBoolean
nameThe new name of the access groupString
podsUpdates to the pods of the access groupUpdateAssociationInput
rolesUpdates to the roles of the access groupUpdateAssociationInput
ssoGroupsUpdates to the SSO Groups of the access groupUpdateStringAssociationInput
usersUpdates to the users of the access groupUpdateAssociationInput
\n

UpdateAccessGroupResponse

\n

Response for updating an access group

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupThe access group that was updatedAccessGroup
successBoolean
\n

DeleteAccessGroupResponse

\n

Response for deleting an access group

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successBoolean
\n

CreatePodInput

\n

Input for creating a pod

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionDescription of the podString
nameName of the podString
\n

CreatePodResponse

\n

Response for creating a pod

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
podThe pod that was createdPod
successBoolean
\n

UpdatePodInput

\n

Input for updating a pod

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsUpdates to the access groups of the podUpdateAssociationInput
customersUpdates to the customers of the podUpdateAssociationInput
descriptionThe new description of the podString
idID of the PodID
nameThe new name of the podString
\n

UpdatePodResponse

\n

Response for updating a pod

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
podThe pod that was updatedPod
successBoolean
\n

DeletePodResponse

\n

Response for deleting a pod

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successBoolean
\n

CreateRoleInput

\n

Input for creating a role

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionDescription of the roleString
nameName of the roleString
\n

CreateRoleResponse

\n

Response for creating a role

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
roleThe pod that was createdRole
successBoolean
\n

UpdateRoleInput

\n

Input for updating a role

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsUpdates to the access groups of the roleUpdateAssociationInput
descriptionThe new description of the roleString
idID of the roleID
nameThe new name of the roleString
permissionsUpdates to the permissions which are part of the roleString
\n

UpdateRoleResponse

\n

Response for updating a role

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
roleThe role that was updatedRole
successBoolean
\n

DeleteRoleResponse

\n

Response for deleting a role

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successBoolean
\n
","_postman_id":"7199d6a9-7425-4008-b05f-3467cf008db9","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"API Keys","item":[{"name":"Mutations","item":[{"name":"createApiKey","id":"1e8d60e6-58f1-4caf-83e7-7bdf021938bf","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createApiKey ($input: CreateApiKeyInput!) {\n createApiKey (input: $input) {\n apiKey {\n createdAt\n expiresAt\n id\n key\n lastQuery\n lastUsedAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"expiryTime\": \"2026-08-01T00:00:00.000Z\",\n \"user\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a new API Key.

\n

Inputs: \nCreateApiKeyInput,

\n

Return: \nCreateApiKeyResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"5963e867-33ce-4dd1-9161-d987254b7fde","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createApiKey ($input: CreateApiKeyInput!) {\n createApiKey (input: $input) {\n apiKey {\n createdAt\n expiresAt\n id\n key\n lastQuery\n lastUsedAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"expiryTime\": \"2026-08-01T00:00:00.000Z\",\n \"user\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a new API Key.\n\nInputs: \nCreateApiKeyInput, \n\nReturn: \nCreateApiKeyResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createApiKey\": {\n \"apiKey\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"key\": \"\",\n \"lastQuery\": \"\",\n \"lastUsedAt\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"1e8d60e6-58f1-4caf-83e7-7bdf021938bf"},{"name":"deleteApiKeyById","id":"50677fd4-fdf4-46a5-8532-47e9b6fa5061","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteApiKeyById ($id: ID!, $user: ID) {\n deleteApiKeyById (id: $id, user: $user) {\n success\n }\n}","variables":"{\n \"id\": \"\",\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete a specific API Key by its ID.\nIf a user parameter is provided, it will delete the API Key associated with that user.

\n

Inputs: \nID, ID,

\n

Return: \nDeleteApiKeyResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"dd82ccde-c5c7-4e26-a8c9-6074ef3b02a3","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteApiKeyById ($id: ID!, $user: ID) {\n deleteApiKeyById (id: $id, user: $user) {\n success\n }\n}","variables":"{\n \"id\": \"\",\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete a specific API Key by its ID.\nIf a user parameter is provided, it will delete the API Key associated with that user.\n\nInputs: \nID, ID, \n\nReturn: \nDeleteApiKeyResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteApiKeyById\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"50677fd4-fdf4-46a5-8532-47e9b6fa5061"},{"name":"deleteApiKeys","id":"c837276c-5efa-43e9-b98f-88fa9e0a9553","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteApiKeys ($user: ID) {\n deleteApiKeys (user: $user) {\n success\n }\n}","variables":"{\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete all API Keys for the current user.\nIf a specific user is provided as a parameter,\nall API keys for that user will be deleted.

\n

Inputs: \nID,

\n

Return: \nDeleteApiKeyResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"63e3abb5-01c9-4e62-a6d0-11fab9a4a00c","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteApiKeys ($user: ID) {\n deleteApiKeys (user: $user) {\n success\n }\n}","variables":"{\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete all API Keys for the current user.\nIf a specific user is provided as a parameter,\nall API keys for that user will be deleted.\n\nInputs: \nID, \n\nReturn: \nDeleteApiKeyResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteApiKeys\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"c837276c-5efa-43e9-b98f-88fa9e0a9553"}],"id":"71d35da1-cfb1-4046-8b44-39f426795a18","_postman_id":"71d35da1-cfb1-4046-8b44-39f426795a18","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"apiKeys","id":"60eb2371-7ada-4758-8344-beff47a0329d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query apiKeys ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID) {\n apiKeys (user: $user) {\n createdAt\n expiresAt\n id\n key\n lastQuery\n lastUsedAt\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Returns a list of API Keys.\nWhen no user ID is provided, returns keys for the current user.\nWhen a user ID is provided, returns keys for the specified user.

\n

Inputs: \nID,

\n

Return: \nApiKey

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7e165bb1-4fba-491a-9262-1802fb2a4f59","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query apiKeys ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID) {\n apiKeys (user: $user) {\n createdAt\n expiresAt\n id\n key\n lastQuery\n lastUsedAt\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Returns a list of API Keys.\nWhen no user ID is provided, returns keys for the current user.\nWhen a user ID is provided, returns keys for the specified user.\n\nInputs: \nID, \n\nReturn: \nApiKey\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"apiKeys\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"key\": \"\",\n \"lastQuery\": \"\",\n \"lastUsedAt\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n ]\n }\n}"}],"_postman_id":"60eb2371-7ada-4758-8344-beff47a0329d"}],"id":"cea76fd0-8edc-4974-a54f-e984284b7755","_postman_id":"cea76fd0-8edc-4974-a54f-e984284b7755","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"577563fa-3fe7-4268-a13e-6442c268d1fc","description":"

ApiKey

\n

Represents an API Key with associated metadata.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtTimestamp when the API Key was created.DateTime
expiresAtTimestamp when the API Key expires.DateTime
idGlobally unique identifier for the API Key.ID
keyThe actual API Key string.String
lastQueryLast query made using the API Key.String
lastUsedAtTimestamp when the API Key was last used.DateTime
userUser associated with the API Key.User
\n

DeleteApiKeyResponse

\n

Response type for delete mutations (deleteApiKeys and deleteApiKeyById).

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successIndicates if the operation was successful.Boolean
\n

CreateApiKeyResponse

\n

Response type for creating a new api key

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
apiKeyThe created api key.ApiKey
successIndicates if the operation was successful.Boolean
\n

CreateApiKeyInput

\n

Input type for creating a new API Key.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
expiryTimeExpiry time for the new API Key.DateTime
userIf set, the key will be created for this user. Must have elevated permissions. Otherwise it creates a key for the requesting user.ID
\n
","_postman_id":"577563fa-3fe7-4268-a13e-6442c268d1fc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Assets","item":[{"name":"Mutations","item":[{"name":"deleteAsset","id":"0220ef45-127f-47b3-a5fb-c20fcd666d60","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAsset ($input: DeleteAssetInput!) {\n deleteAsset (input: $input) {\n message\n success\n }\n}","variables":"{\n \"input\": {\n \"assetId\": \"\",\n \"comment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

This API allows user to delete an asset.

\n

Inputs: \nDeleteAssetInput,

\n

Return: \nDeleteAssetResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"3bba10ff-6d27-41a6-ab1f-521af8575970","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAsset ($input: DeleteAssetInput!) {\n deleteAsset (input: $input) {\n message\n success\n }\n}","variables":"{\n \"input\": {\n \"assetId\": \"\",\n \"comment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"This API allows user to delete an asset.\n\nInputs: \nDeleteAssetInput, \n\nReturn: \nDeleteAssetResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteAsset\": {\n \"message\": \"\",\n \"success\": true\n }\n }\n}"}],"_postman_id":"0220ef45-127f-47b3-a5fb-c20fcd666d60"}],"id":"4afe7de1-b7ae-4b46-95f9-d111eabd924a","_postman_id":"4afe7de1-b7ae-4b46-95f9-d111eabd924a","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"assets","id":"9f717d18-8afc-4b96-8938-0faa38ab9404","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query assets ($after: String, $filter: AssetFilter, $first: Int, $order: AssetOrder) {\n assets (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n externalScanDetailsAvailable\n id\n ipAddress\n name\n operatingSystem\n publiclyAccessible\n techAssetIds\n technology\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"assetAccessibility\": \"ALL\",\n \"assetTypes\": [\n 0\n ],\n \"cloud\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"configuredInventory\": true,\n \"discoverTechnologies\": [\n \"\"\n ],\n \"edr\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"eventFilter\": {\n \"activities\": [\n \"\"\n ],\n \"assetName\": \"\",\n \"classes\": [\n \"\"\n ],\n \"eventCodes\": [\n \"\"\n ],\n \"groupBy\": \"\",\n \"storageIntegrations\": [\n \"\"\n ],\n \"subActivities\": [\n \"\"\n ]\n },\n \"iam\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"insights\": {\n \"attentionRequired\": true,\n \"domainJoined\": true,\n \"edrCoverage\": true,\n \"logging\": true,\n \"vulnerabilityScanner\": true\n },\n \"operatingSystems\": [\n \"\"\n ],\n \"publicVisibility\": true,\n \"searchText\": \"\",\n \"siem\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"storageIdentifiers\": [\n \"\"\n ],\n \"tags\": [\n \"\"\n ],\n \"technologies\": [\n \"\"\n ],\n \"vendorProductFeatures\": {\n \"feature\": \"\",\n \"product\": \"\",\n \"vendor\": \"\"\n },\n \"vulnerabilities\": [\n \"\"\n ],\n \"vulnerabilityScanner\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CRITICALITY\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all assets which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, before = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, AssetFilter, Int, AssetOrder,

\n

Return: \nAssetConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1bb09f9e-e146-4c1c-9d45-2308fa55fe52","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query assets ($after: String, $filter: AssetFilter, $first: Int, $order: AssetOrder) {\n assets (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n externalScanDetailsAvailable\n id\n ipAddress\n name\n operatingSystem\n publiclyAccessible\n techAssetIds\n technology\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"assetAccessibility\": \"ALL\",\n \"assetTypes\": [\n 0\n ],\n \"cloud\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"configuredInventory\": true,\n \"discoverTechnologies\": [\n \"\"\n ],\n \"edr\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"eventFilter\": {\n \"activities\": [\n \"\"\n ],\n \"assetName\": \"\",\n \"classes\": [\n \"\"\n ],\n \"eventCodes\": [\n \"\"\n ],\n \"groupBy\": \"\",\n \"storageIntegrations\": [\n \"\"\n ],\n \"subActivities\": [\n \"\"\n ]\n },\n \"iam\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"insights\": {\n \"attentionRequired\": true,\n \"domainJoined\": true,\n \"edrCoverage\": true,\n \"logging\": true,\n \"vulnerabilityScanner\": true\n },\n \"operatingSystems\": [\n \"\"\n ],\n \"publicVisibility\": true,\n \"searchText\": \"\",\n \"siem\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n },\n \"storageIdentifiers\": [\n \"\"\n ],\n \"tags\": [\n \"\"\n ],\n \"technologies\": [\n \"\"\n ],\n \"vendorProductFeatures\": {\n \"feature\": \"\",\n \"product\": \"\",\n \"vendor\": \"\"\n },\n \"vulnerabilities\": [\n \"\"\n ],\n \"vulnerabilityScanner\": {\n \"name\": \"\",\n \"visibility\": [\n \"LOGGING\"\n ]\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CRITICALITY\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all assets which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, before = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, AssetFilter, Int, AssetOrder, \n\nReturn: \nAssetConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"assets\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"externalScanDetailsAvailable\": true,\n \"id\": \"\",\n \"ipAddress\": [\n \"\"\n ],\n \"name\": \"\",\n \"operatingSystem\": [\n \"\"\n ],\n \"publiclyAccessible\": true,\n \"techAssetIds\": [\n \"\"\n ],\n \"technology\": [\n \"\"\n ],\n \"type\": [\n \"\"\n ]\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"9f717d18-8afc-4b96-8938-0faa38ab9404"}],"id":"3082b3eb-80ef-4488-95da-29df58b4bdbf","_postman_id":"3082b3eb-80ef-4488-95da-29df58b4bdbf","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"a19a149b-31a2-4b01-a0da-9dfc3823f252","description":"

Asset

\n

Details of Asset

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cloudAsset cloud visibility.AssetTechVisibility
edrAsset EDR visibility.AssetTechVisibility
externalScanDetailsAvailableIndicates if external scan details are available for this asset.Boolean
iamAsset IAM visibility.AssetTechVisibility
idAsset id.ID
ipAddressAsset id addressString
nameName of an assetString
operatingSystemAsset operating systems.String
publiclyAccessibleIndicates if the asset is publicly accessible.Boolean
siemAsset SIEM visibility.AssetTechVisibility
techAssetIdsAsset identifiers.String
technologyAsset technologies.String
typeAsset type.String
vulnerabilityScannerAsset vulnerability scanner visibility.AssetTechVisibility
\n

AssetConnection

\n

Paginated asset response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesAssetEdge
pageInfoPageInfo
totalCountInt
\n

AssetEdge

\n

Page of asset

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeAsset
\n

AssetTechVisibility

\n

Tech Visibility status of asset

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
nameTechnology name.String
visibilityAsset technology visibility.String
\n

AssetOrderBy

\n

Values supported for order operation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICALITY
ENTITY_TYPE
IP_ADDRESS
LAST_SEEN
NAME
SOURCE
STATUS
VULNERABILITIES
\n

AssetVisibility

\n

Asset visibility status.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
LOGGING
NOT_DISCOVERED
NOT_LOGGING
\n

AssetAccessibility

\n

Filter assets by their public accessibility status.\nValues:

\n
    \n
  • ALL: No filtering, returns all assets regardless of accessibility
  • \n
  • NOT_PUBLIC: Returns only assets that are not publicly accessible (private/internal assets)
  • \n
  • PUBLIC: Returns only assets that are publicly accessible via internet
  • \n
  • EXTERNAL_SCAN_DETAILS_AVAILABLE: Returns assets with external scan data available
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ValueDescription
    ALL
    EXTERNAL_SCAN_DETAILS_AVAILABLE
    NOT_PUBLIC
    PUBLIC
    \n
  • \n
\n

AssetDiscoverInsightFilter

\n

Filter to retrieve discover insights

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
attentionRequiredAttentionRequired coverage of asset flag.Boolean
domainJoinedDomainJoined coverage of asset flag.Boolean
edrCoverageEDR coverage of asset flag.Boolean
loggingLogging coverage of asset flag.Boolean
vulnerabilityScannerVulnerability Scanner coverage of asset flag.Boolean
\n

AssetEventFilter

\n

Event based asset filter

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activitiesActivity identifier.ID
assetNameAsset name filter.ID
classesAsset class identifier.ID
eventCodesEvent codes filter.String
groupByAsset grouping filter.String
storageIntegrationsStorage Integrations of asset filter.String
subActivitiesSub-Activity identifier.ID
\n

AssetFilter

\n

Primary filter to fetch assets

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assetAccessibilityAssets by accessibility statusAssetAccessibility
assetTypesAsset types to retrieve.Int
cloudCloud visibility filter.AssetTechVisibilityFilter
configuredInventoryAssets by membership of the customer's configured inventory — the saved definition of which assets are in scope for that customer. true returns only assets in the configured inventory, false only assets outside it, and omitting the field applies no configured-inventory filtering. A customer who has saved no configured-inventory definition for assets has no assets in it.Boolean
discoverTechnologiesType of discover technologies filter.String
edrEDR asset types filter.AssetTechVisibilityFilter
eventFilterAssets by events filter.AssetEventFilter
iamIAM asset types filter.AssetTechVisibilityFilter
insightsAssets by insights filter.AssetDiscoverInsightFilter
operatingSystemsOperating systems filter.String
publicVisibility [DEPRECATED][DEPRECATED: Use assetAccessibility field instead.] DEPRECATED: Use assetAccessibility instead. Filter by public visibility.Boolean
searchTextSearch text for queriyng assets.String
siemSIEM asset types filter.AssetTechVisibilityFilter
storageIdentifiersAssets by storageIdentifiers filter.String
tagsAsset tags filter.String
technologiesAssets by technologies filter.String
vendorProductFeaturesAssets by Vendor product feature filter.AssetVendorProductFeaturesFilter
vulnerabilitiesAssets vulnerabilities filter.String
vulnerabilityScannerVulnerability Scanner asset types filter.AssetTechVisibilityFilter
\n

AssetOrder

\n

Field to retrieve asset based sort order and filed name

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionAsset sort direction.Sort
orderByOrder to retrieve assets.AssetOrderBy
\n

AssetTechVisibilityFilter

\n

Filter to fetch assets based on tech visibility

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
namename of technology.String
visibilityAsset visibility on technology.AssetVisibility
\n

AssetVendorProductFeaturesFilter

\n

Vendor product and featurs

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
featureFeature identifier.ID
productProduct identifier.ID
vendorVendor identifier.ID
\n

DeleteAssetInput

\n

Input object for deleting asset from asset inventory.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assetIdBase 64 encoded unique Asset name.ID
commentComment for removalString
\n

DeleteAssetResponse

\n

Response of delete asset api having operation status and message.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
messageMessage of operation.String
successOperations status.Boolean
\n
","_postman_id":"a19a149b-31a2-4b01-a0da-9dfc3823f252","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Cases","item":[{"name":"Mutations","item":[{"name":"addCaseComment","id":"f2689a9d-9468-4a8b-9bc8-0082c3a71993","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addCaseComment ($input: CaseCommentInput!) {\n addCaseComment (input: $input) {\n case {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"comment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Add a comment to a case

\n

Inputs: \nCaseCommentInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"24ef1fe8-bd9b-4ea9-ab6b-0f5658941898","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addCaseComment ($input: CaseCommentInput!) {\n addCaseComment (input: $input) {\n case {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"comment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Add a comment to a case\n\nInputs: \nCaseCommentInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"addCaseComment\": {\n \"case\": {\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"f2689a9d-9468-4a8b-9bc8-0082c3a71993"},{"name":"addChildrenToCase","id":"06dde9b7-8a32-4978-bf53-80270f8c2194","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addChildrenToCase ($input: AddChildrenToCaseInput!) {\n addChildrenToCase (input: $input) {\n case {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"children\": {\n \"childId\": \"\",\n \"childType\": \"DISCOVER_TASK\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Add a child to a case

\n

Inputs: \nAddChildrenToCaseInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"e1e07c04-c2ff-4bb2-8eb4-b3d6dde57c6f","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addChildrenToCase ($input: AddChildrenToCaseInput!) {\n addChildrenToCase (input: $input) {\n case {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"children\": {\n \"childId\": \"\",\n \"childType\": \"DISCOVER_TASK\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Add a child to a case\n\nInputs: \nAddChildrenToCaseInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"addChildrenToCase\": {\n \"case\": {\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"06dde9b7-8a32-4978-bf53-80270f8c2194"},{"name":"cancelCase","id":"7fc40fed-7a9b-4b72-bcc1-7907ed103e69","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation cancelCase ($input: CancelCaseInput!) {\n cancelCase (input: $input) {\n case {\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"closeCode\": \"\",\n \"reason\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Cancel a case

\n

Inputs: \nCancelCaseInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"855e0619-1b5b-402a-aa79-4a298890a9a5","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation cancelCase ($input: CancelCaseInput!) {\n cancelCase (input: $input) {\n case {\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"closeCode\": \"\",\n \"reason\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Cancel a case\n\nInputs: \nCancelCaseInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"cancelCase\": {\n \"case\": {\n \"id\": \"\",\n \"state\": \"CANCELLED\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"7fc40fed-7a9b-4b72-bcc1-7907ed103e69"},{"name":"closeCase","id":"12113f02-1192-44df-8e4e-68aa46a4931c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeCase ($input: CloseCaseInput!) {\n closeCase (input: $input) {\n case {\n closeCode\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"closeCode\": \"\",\n \"reason\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Close a case

\n

Inputs: \nCloseCaseInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"632b379c-0317-4fd0-a6c3-7f88120154e9","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeCase ($input: CloseCaseInput!) {\n closeCase (input: $input) {\n case {\n closeCode\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"closeCode\": \"\",\n \"reason\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Close a case\n\nInputs: \nCloseCaseInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"closeCase\": {\n \"case\": {\n \"closeCode\": \"\",\n \"id\": \"\",\n \"state\": \"CANCELLED\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"12113f02-1192-44df-8e4e-68aa46a4931c"},{"name":"createCase","id":"da319718-620a-4a55-ab6c-5b3ac79b3d23","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createCase ($input: CreateCaseInput!) {\n createCase (input: $input) {\n case {\n id\n severity\n state\n title\n type\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiSummary\": \"\",\n \"attachmentIds\": [\n \"\"\n ],\n \"children\": {\n \"childId\": \"\",\n \"childType\": \"DISCOVER_TASK\"\n },\n \"description\": \"\",\n \"dueAt\": \"2026-08-01T00:00:00.000Z\",\n \"owner\": \"\",\n \"severity\": \"CRITICAL\",\n \"state\": \"CANCELLED\",\n \"subType\": \"CLOUD_MISCONFIGURATION\",\n \"title\": \"\",\n \"type\": \"DISCOVER_EXPOSURE\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a new case.

\n

Inputs: \nCreateCaseInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"5cf1d087-f054-4857-8a45-9268dfa11b77","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createCase ($input: CreateCaseInput!) {\n createCase (input: $input) {\n case {\n id\n severity\n state\n title\n type\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiSummary\": \"\",\n \"attachmentIds\": [\n \"\"\n ],\n \"children\": {\n \"childId\": \"\",\n \"childType\": \"DISCOVER_TASK\"\n },\n \"description\": \"\",\n \"dueAt\": \"2026-08-01T00:00:00.000Z\",\n \"owner\": \"\",\n \"severity\": \"CRITICAL\",\n \"state\": \"CANCELLED\",\n \"subType\": \"CLOUD_MISCONFIGURATION\",\n \"title\": \"\",\n \"type\": \"DISCOVER_EXPOSURE\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a new case.\n\nInputs: \nCreateCaseInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createCase\": {\n \"case\": {\n \"id\": \"\",\n \"severity\": \"CRITICAL\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DISCOVER_EXPOSURE\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"da319718-620a-4a55-ab6c-5b3ac79b3d23"},{"name":"removeChildFromCase","id":"7c05b4f6-622d-4f96-b508-f4df152aad37","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation removeChildFromCase ($input: RemoveChildFromCaseInput!) {\n removeChildFromCase (input: $input) {\n case {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"child\": {\n \"childId\": \"\",\n \"childType\": \"DISCOVER_TASK\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Remove a child from a case

\n

Inputs: \nRemoveChildFromCaseInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"845bec42-4f20-43ce-8632-12d8ce83035e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation removeChildFromCase ($input: RemoveChildFromCaseInput!) {\n removeChildFromCase (input: $input) {\n case {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"child\": {\n \"childId\": \"\",\n \"childType\": \"DISCOVER_TASK\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Remove a child from a case\n\nInputs: \nRemoveChildFromCaseInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"removeChildFromCase\": {\n \"case\": {\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"7c05b4f6-622d-4f96-b508-f4df152aad37"},{"name":"updateCase","id":"5a01385d-d7a5-4a47-932f-2c4b7fcec5be","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCase ($input: UpdateCaseInput!) {\n updateCase (input: $input) {\n case {\n id\n severity\n state\n title\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiSummary\": \"\",\n \"caseId\": \"\",\n \"description\": \"\",\n \"expirationDate\": \"2026-08-01T00:00:00.000Z\",\n \"severity\": \"CRITICAL\",\n \"state\": \"CANCELLED\",\n \"subType\": \"CLOUD_MISCONFIGURATION\",\n \"title\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update a case

\n

Inputs: \nUpdateCaseInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1496c988-d849-46e7-952c-37b16de8dd4a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCase ($input: UpdateCaseInput!) {\n updateCase (input: $input) {\n case {\n id\n severity\n state\n title\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiSummary\": \"\",\n \"caseId\": \"\",\n \"description\": \"\",\n \"expirationDate\": \"2026-08-01T00:00:00.000Z\",\n \"severity\": \"CRITICAL\",\n \"state\": \"CANCELLED\",\n \"subType\": \"CLOUD_MISCONFIGURATION\",\n \"title\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update a case\n\nInputs: \nUpdateCaseInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateCase\": {\n \"case\": {\n \"id\": \"\",\n \"severity\": \"CRITICAL\",\n \"state\": \"CANCELLED\",\n \"title\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"5a01385d-d7a5-4a47-932f-2c4b7fcec5be"},{"name":"updateCaseDueDate","id":"5ab3fb3a-47f8-433b-95df-4fa539b60744","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCaseDueDate ($input: UpdateCaseDueDateInput!) {\n updateCaseDueDate (input: $input) {\n case {\n dueAt\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"dueAt\": \"2026-08-01T00:00:00.000Z\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update case due date

\n

Inputs: \nUpdateCaseDueDateInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1cae8a43-da5d-49cb-b5ca-46081161b505","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCaseDueDate ($input: UpdateCaseDueDateInput!) {\n updateCaseDueDate (input: $input) {\n case {\n dueAt\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"dueAt\": \"2026-08-01T00:00:00.000Z\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update case due date\n\nInputs: \nUpdateCaseDueDateInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateCaseDueDate\": {\n \"case\": {\n \"dueAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"5ab3fb3a-47f8-433b-95df-4fa539b60744"},{"name":"updateCaseOwner","id":"b57d3c7a-ab3f-454c-a801-12841fdb8887","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCaseOwner ($input: UpdateCaseOwnerInput!) {\n updateCaseOwner (input: $input) {\n case {\n id\n owner {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"owner\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update case owner

\n

Inputs: \nUpdateCaseOwnerInput,

\n

Return: \nCaseResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"25d293d9-c560-4814-9681-8b1ee9e3e330","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCaseOwner ($input: UpdateCaseOwnerInput!) {\n updateCaseOwner (input: $input) {\n case {\n id\n owner {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"caseId\": \"\",\n \"owner\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update case owner\n\nInputs: \nUpdateCaseOwnerInput, \n\nReturn: \nCaseResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateCaseOwner\": {\n \"case\": {\n \"id\": \"\",\n \"owner\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"b57d3c7a-ab3f-454c-a801-12841fdb8887"}],"id":"5884440d-b9ad-42bb-acb6-3d079fa5491f","_postman_id":"5884440d-b9ad-42bb-acb6-3d079fa5491f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"case","id":"6b4a1df0-96ba-402c-b2c5-35961c813032","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query case ($after: String, $filter: CaseActivityLogFilter, $first: Int, $order: CaseActivityLogOrder, $after1: String, $filter1: CaseChildFilter, $first1: Int, $order1: CaseChildOrder, $after2: String, $filter2: CaseCommentFilter, $first2: Int, $order2: CaseCommentOrder, $after3: String, $filter3: AccessGroupFilter, $first3: Int, $order3: AccessGroupOrder, $after4: String, $filter4: PodFilter, $first4: Int, $order4: PodOrder, $after5: String, $filter5: RoleFilter, $first5: Int, $order5: RoleFilter, $after6: String, $first6: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after7: String, $first7: Int, $after8: String, $first8: Int, $createdAfter1: DateTime, $createdBefore1: DateTime, $after9: String, $first9: Int, $after10: String, $filter6: AccessGroupFilter, $first10: Int, $order6: AccessGroupOrder, $after11: String, $filter7: PodFilter, $first11: Int, $order7: PodOrder, $after12: String, $filter8: RoleFilter, $first12: Int, $order8: RoleFilter, $after13: String, $filter9: AccessGroupFilter, $first13: Int, $order9: AccessGroupOrder, $after14: String, $filter10: PodFilter, $first14: Int, $order10: PodOrder, $after15: String, $filter11: RoleFilter, $first15: Int, $order11: RoleFilter, $by: CaseBy!) {\n case (by: $by) {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n id\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n aiSummary\n children (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n node {\n closeCode\n createdAt\n externalId\n id\n severity\n state\n summary\n title\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n childrenOverview {\n totalChildren\n totalClosed\n totalInProgress\n totalNew\n totalOpen\n totalsByCloseCode {\n closeCode\n total\n }\n }\n closeCode\n closedAt\n comments (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n node {\n createdAt\n id\n text\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n createdBy {\n accessGroups (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after5, filter: $filter5, first: $first5, order: $order5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after6, first: $first6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after7, first: $first7) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n description\n discoverExposure {\n aiSummary\n customer {\n accessControlPolicies (after: $after8, first: $first8) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter1, createdBefore: $createdBefore1) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after9, first: $first9) {\n totalCount\n }\n }\n description\n exposure\n id\n mitigations\n mitreTacticTechniques {\n id\n name\n techniques {\n id\n name\n }\n }\n type\n }\n dueAt\n expirationDate\n id\n lastSummarizedAt\n owner {\n accessGroups (after: $after10, filter: $filter6, first: $first10, order: $order6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after11, filter: $filter7, first: $first11, order: $order7) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after12, filter: $filter8, first: $first12, order: $order8) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n reasonForClosure\n severity\n slug\n state\n subType\n title\n type\n updatedAt\n updatedBy {\n accessGroups (after: $after13, filter: $filter9, first: $first13, order: $order9) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after14, filter: $filter10, first: $first14, order: $order10) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after15, filter: $filter11, first: $first15, order: $order11) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"assignees\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"states\": [\n \"CLOSED\"\n ],\n \"types\": [\n \"DISCOVER_TASK\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSE_CODE\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after5\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after6\": \"T18w\",\n \"first6\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after7\": \"T18w\",\n \"first7\": 10,\n \"after8\": \"T18w\",\n \"first8\": 10,\n \"createdAfter1\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore1\": \"2026-08-01T00:00:00.000Z\",\n \"after9\": \"T18w\",\n \"first9\": 10,\n \"after10\": \"T18w\",\n \"filter6\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first10\": 10,\n \"order6\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after11\": \"T18w\",\n \"filter7\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first11\": 10,\n \"order7\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after12\": \"T18w\",\n \"filter8\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first12\": 10,\n \"order8\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after13\": \"T18w\",\n \"filter9\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first13\": 10,\n \"order9\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after14\": \"T18w\",\n \"filter10\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first14\": 10,\n \"order10\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after15\": \"T18w\",\n \"filter11\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first15\": 10,\n \"order11\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"by\": {\n \"id\": \"\",\n \"slug\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch Case by id XOR slug

\n

Inputs: \nCaseBy,

\n

Return: \nCase

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"bad4e76c-cdac-4b08-9bbc-27169f7b9c81","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query case ($after: String, $filter: CaseActivityLogFilter, $first: Int, $order: CaseActivityLogOrder, $after1: String, $filter1: CaseChildFilter, $first1: Int, $order1: CaseChildOrder, $after2: String, $filter2: CaseCommentFilter, $first2: Int, $order2: CaseCommentOrder, $after3: String, $filter3: AccessGroupFilter, $first3: Int, $order3: AccessGroupOrder, $after4: String, $filter4: PodFilter, $first4: Int, $order4: PodOrder, $after5: String, $filter5: RoleFilter, $first5: Int, $order5: RoleFilter, $after6: String, $first6: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after7: String, $first7: Int, $after8: String, $first8: Int, $createdAfter1: DateTime, $createdBefore1: DateTime, $after9: String, $first9: Int, $after10: String, $filter6: AccessGroupFilter, $first10: Int, $order6: AccessGroupOrder, $after11: String, $filter7: PodFilter, $first11: Int, $order7: PodOrder, $after12: String, $filter8: RoleFilter, $first12: Int, $order8: RoleFilter, $after13: String, $filter9: AccessGroupFilter, $first13: Int, $order9: AccessGroupOrder, $after14: String, $filter10: PodFilter, $first14: Int, $order10: PodOrder, $after15: String, $filter11: RoleFilter, $first15: Int, $order11: RoleFilter, $by: CaseBy!) {\n case (by: $by) {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n id\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n aiSummary\n children (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n node {\n closeCode\n createdAt\n externalId\n id\n severity\n state\n summary\n title\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n childrenOverview {\n totalChildren\n totalClosed\n totalInProgress\n totalNew\n totalOpen\n totalsByCloseCode {\n closeCode\n total\n }\n }\n closeCode\n closedAt\n comments (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n node {\n createdAt\n id\n text\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n createdBy {\n accessGroups (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after5, filter: $filter5, first: $first5, order: $order5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after6, first: $first6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after7, first: $first7) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n description\n discoverExposure {\n aiSummary\n customer {\n accessControlPolicies (after: $after8, first: $first8) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter1, createdBefore: $createdBefore1) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after9, first: $first9) {\n totalCount\n }\n }\n description\n exposure\n id\n mitigations\n mitreTacticTechniques {\n id\n name\n techniques {\n id\n name\n }\n }\n type\n }\n dueAt\n expirationDate\n id\n lastSummarizedAt\n owner {\n accessGroups (after: $after10, filter: $filter6, first: $first10, order: $order6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after11, filter: $filter7, first: $first11, order: $order7) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after12, filter: $filter8, first: $first12, order: $order8) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n reasonForClosure\n severity\n slug\n state\n subType\n title\n type\n updatedAt\n updatedBy {\n accessGroups (after: $after13, filter: $filter9, first: $first13, order: $order9) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after14, filter: $filter10, first: $first14, order: $order10) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after15, filter: $filter11, first: $first15, order: $order11) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"assignees\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"states\": [\n \"CLOSED\"\n ],\n \"types\": [\n \"DISCOVER_TASK\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSE_CODE\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after5\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after6\": \"T18w\",\n \"first6\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after7\": \"T18w\",\n \"first7\": 10,\n \"after8\": \"T18w\",\n \"first8\": 10,\n \"createdAfter1\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore1\": \"2026-08-01T00:00:00.000Z\",\n \"after9\": \"T18w\",\n \"first9\": 10,\n \"after10\": \"T18w\",\n \"filter6\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first10\": 10,\n \"order6\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after11\": \"T18w\",\n \"filter7\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first11\": 10,\n \"order7\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after12\": \"T18w\",\n \"filter8\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first12\": 10,\n \"order8\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after13\": \"T18w\",\n \"filter9\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first13\": 10,\n \"order9\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after14\": \"T18w\",\n \"filter10\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first14\": 10,\n \"order10\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after15\": \"T18w\",\n \"filter11\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first15\": 10,\n \"order11\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"by\": {\n \"id\": \"\",\n \"slug\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch Case by id XOR slug\n\nInputs: \nCaseBy, \n\nReturn: \nCase\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"case\": {\n \"activity\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"aiSummary\": \"\",\n \"children\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"closeCode\": \"\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"severity\": \"CRITICAL\",\n \"state\": \"CLOSED\",\n \"summary\": \"\",\n \"title\": \"\",\n \"type\": \"DISCOVER_TASK\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"childrenOverview\": {\n \"totalChildren\": 0,\n \"totalClosed\": 0,\n \"totalInProgress\": 0,\n \"totalNew\": 0,\n \"totalOpen\": 0,\n \"totalsByCloseCode\": [\n {\n \"closeCode\": \"\",\n \"total\": 0\n }\n ]\n },\n \"closeCode\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"text\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"roles\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"accessControlPolicies\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n },\n \"description\": \"\",\n \"discoverExposure\": {\n \"aiSummary\": \"\",\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"description\": \"\",\n \"exposure\": \"\",\n \"id\": \"\",\n \"mitigations\": \"\",\n \"mitreTacticTechniques\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"techniques\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ],\n \"type\": \"CLOUD_MISCONFIGURATION\"\n },\n \"dueAt\": \"2026-08-01T00:00:00.000Z\",\n \"expirationDate\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"lastSummarizedAt\": \"2026-08-01T00:00:00.000Z\",\n \"owner\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"roles\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"reasonForClosure\": \"\",\n \"severity\": \"CRITICAL\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"subType\": \"CLOUD_MISCONFIGURATION\",\n \"title\": \"\",\n \"type\": \"DISCOVER_EXPOSURE\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"roles\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"6b4a1df0-96ba-402c-b2c5-35961c813032"},{"name":"cases","id":"aead0648-2941-49ee-9679-85f26c37150d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query cases ($after: String, $filter: CaseActivityLogFilter, $first: Int, $order: CaseActivityLogOrder, $after1: String, $filter1: CaseChildFilter, $first1: Int, $order1: CaseChildOrder, $after2: String, $filter2: CaseCommentFilter, $first2: Int, $order2: CaseCommentOrder, $after3: String, $filter3: CaseFilter, $first3: Int, $order3: CaseOrder) {\n cases (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n node {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n aiSummary\n children (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n childrenOverview {\n totalChildren\n totalClosed\n totalInProgress\n totalNew\n totalOpen\n }\n closeCode\n closedAt\n comments (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n discoverExposure {\n aiSummary\n description\n exposure\n id\n mitigations\n type\n }\n dueAt\n expirationDate\n id\n lastSummarizedAt\n owner {\n email\n fullName\n id\n serviceNowId\n }\n reasonForClosure\n severity\n slug\n state\n subType\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"assignees\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"states\": [\n \"CLOSED\"\n ],\n \"types\": [\n \"DISCOVER_TASK\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSE_CODE\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"due\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"owners\": [\n \"\"\n ],\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"states\": [\n \"CANCELLED\"\n ],\n \"subTypes\": [\n \"CLOUD_MISCONFIGURATION\"\n ],\n \"types\": [\n \"DISCOVER_EXPOSURE\"\n ],\n \"unowned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first3\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all Cases which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, CaseFilter, Int, CaseOrder,

\n

Return: \nCaseConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"a211046d-5d3a-4bb7-aa8f-1acd9ecf48e5","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query cases ($after: String, $filter: CaseActivityLogFilter, $first: Int, $order: CaseActivityLogOrder, $after1: String, $filter1: CaseChildFilter, $first1: Int, $order1: CaseChildOrder, $after2: String, $filter2: CaseCommentFilter, $first2: Int, $order2: CaseCommentOrder, $after3: String, $filter3: CaseFilter, $first3: Int, $order3: CaseOrder) {\n cases (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n node {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n aiSummary\n children (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n childrenOverview {\n totalChildren\n totalClosed\n totalInProgress\n totalNew\n totalOpen\n }\n closeCode\n closedAt\n comments (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n discoverExposure {\n aiSummary\n description\n exposure\n id\n mitigations\n type\n }\n dueAt\n expirationDate\n id\n lastSummarizedAt\n owner {\n email\n fullName\n id\n serviceNowId\n }\n reasonForClosure\n severity\n slug\n state\n subType\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"assignees\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"states\": [\n \"CLOSED\"\n ],\n \"types\": [\n \"DISCOVER_TASK\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSE_CODE\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"due\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"owners\": [\n \"\"\n ],\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"states\": [\n \"CANCELLED\"\n ],\n \"subTypes\": [\n \"CLOUD_MISCONFIGURATION\"\n ],\n \"types\": [\n \"DISCOVER_EXPOSURE\"\n ],\n \"unowned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first3\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all Cases which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, CaseFilter, Int, CaseOrder, \n\nReturn: \nCaseConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"cases\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"activity\": {\n \"totalCount\": 0\n },\n \"aiSummary\": \"\",\n \"children\": {\n \"totalCount\": 0\n },\n \"childrenOverview\": {\n \"totalChildren\": 0,\n \"totalClosed\": 0,\n \"totalInProgress\": 0,\n \"totalNew\": 0,\n \"totalOpen\": 0\n },\n \"closeCode\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"discoverExposure\": {\n \"aiSummary\": \"\",\n \"description\": \"\",\n \"exposure\": \"\",\n \"id\": \"\",\n \"mitigations\": \"\",\n \"type\": \"CLOUD_MISCONFIGURATION\"\n },\n \"dueAt\": \"2026-08-01T00:00:00.000Z\",\n \"expirationDate\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"lastSummarizedAt\": \"2026-08-01T00:00:00.000Z\",\n \"owner\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"reasonForClosure\": \"\",\n \"severity\": \"CRITICAL\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"subType\": \"CLOUD_MISCONFIGURATION\",\n \"title\": \"\",\n \"type\": \"DISCOVER_EXPOSURE\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"aead0648-2941-49ee-9679-85f26c37150d"}],"id":"71fdb11b-f987-44f9-8afb-5690e96b418c","_postman_id":"71fdb11b-f987-44f9-8afb-5690e96b418c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"87779995-623b-4acf-8d57-28574f1a730d","description":"

CaseBy

\n

Search for a Case by one and only one of the below

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idThe unique identifier of the CaseID
slugThe human readable identifier of the CaseString
\n

CaseFilter

\n

Case Filter input type to filter out Cases.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
closedCase closed TimeRange filter (Earliest and latest TimeStamp)TimeRange
createdCase creation TimeRange filter (Earliest and latest TimeStamp)TimeRange
dueCase due TimeRange filter (Earliest and latest TimeStamp)TimeRange
ownersList of owner IDs to filterID
searchSearch string to search from Case's Title/Description/Slug/Summary.String
severitiesList of Severities to filter.CaseSeverity
statesList of States to filter.CaseState
subTypesList of Sub-types to filter.CaseSubType
typesList of Types to filter.CaseType
unownedFilter out cases based on assignment True: Cases which are not assigned to any user False: Cases which are assigned to userBoolean
updatedCase updated TimeRange filter (Earliest and latest TimeStamp)TimeRange
\n

CaseOrder

\n

Case OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByCaseOrderBy
\n

CaseOrderBy

\n

Order by ENUM for Case

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOSED_AT
CREATED_AT
DUE_AT
SEVERITY
STATE
TITLE
TYPE
UPDATED_AT
\n

CaseSeverity

\n

Severity of Case

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
INFORMATIONAL
LOW
MEDIUM
\n

CaseState

\n

State of Case

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CANCELLED
CLOSED
IN_PROGRESS
NEW
ON_HOLD
\n

CaseType

\n

Type of Case

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
DISCOVER_EXPOSURE
GENERAL
HUNTCase created for a threat hunt.
TEAMMATETEAMMATE is automatically created by GreyMatter. This type cannot be created via the API.
\n

CaseSubType

\n

Sub-type of the case

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOUD_MISCONFIGURATION
COVERAGE_GAP
MISCONFIGURATION
THREAT_ADVISORY
VULNERABILITY
\n

Case

\n

Case schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityActivity Log connection. This connection is pageable, sortable, and filterableCaseActivityLogConnection
aiSummaryString
childrenChildren connection. This connection represents all of the child tasks that are linked to this case. This connection is pageable, sortable, and filterableCaseChildConnection
childrenOverviewA breakdown overview of the children tasks in a case. This gives a quick summary of the total children and their state breakdown.CaseChildrenOverview
closeCodeString
closedAtDateTime
commentsComment connection. This connection is pageable, sortable, and filterableCaseCommentConnection
createdAtDateTime
createdByUser
customerCustomer
descriptionString
discoverExposureDiscoverExposure
dueAtDateTime
expirationDateDateTime
idID
lastSummarizedAtDateTime
ownerUser
reasonForClosureString
severityCaseSeverity
slugString
stateCaseState
subTypeCase sub-type (Ex. VULNERABILITY, MISCONFIGURATION). Value can empty in case of no subtypeCaseSubType
titleString
typeCaseType
updatedAtDateTime
updatedByUser
\n

CaseResponse

\n

The CaseResponse type is used to return the result of a case related operation.

\n

Fields:

\n
    \n
  • success: Indicates whether the operation was successful.
  • \n
  • case: Provides the resulting updated case (optional, might be null if no case is associated).
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    FieldDescriptionType
    caseResulting updated case (optional)Case
    successIndicates whether the operation was successful.Boolean
    \n
  • \n
\n

CaseEdge

\n

Case Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCase
\n

CaseConnection

\n

Case Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCaseEdge
pageInfoPageInfo
totalCountInt
\n

CaseChildrenOverview

\n

Overview of a cases child tasks

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
totalChildrenInt
totalClosedInt
totalInProgressInt
totalNewInt
totalOpenInt
totalsByCloseCodeCaseChildrenCountByCloseCode
\n

CaseChildrenCountByCloseCode

\n

Case children count by close code

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
closeCodeString
totalInt
\n

CaseChild

\n

Case Child schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeUser
closeCodeString
createdAtDateTime
customerCustomer
externalIdString
idID
severityCaseChildSeverity
stateCaseChildState
summaryString
titleString
typeCaseChildType
updatedAtDateTime
\n

CaseChildEdge

\n

Case Child Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCaseChild
\n

CaseChildConnection

\n

Case Child Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCaseChildEdge
pageInfoPageInfo
totalCountInt
\n

CaseChildFilter

\n

Case Filter input type to filter out Cases. If not set, defaults will be used.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneesList of assignee IDs to filterID
createdCase Child creation TimeRange filter (Earliest and latest TimeStamp)TimeRange
searchSearch string to search from Case Child's Title/Summary/External ID.String
severitiesList of Case Child Severities to filter.CaseChildSeverity
statesList of Case Child States to filter.CaseChildState
typesList of Types to filter.CaseChildType
unassignedFilter out case children based on assignment True: Cases Children which are not assigned to any user False: Cases Children which are assigned to userBoolean
updatedCase Child updated TimeRange filter (Earliest and latest TimeStamp)TimeRange
\n

CaseChildOrder

\n

Case Child OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByCaseChildOrderBy
\n

CaseChildOrderBy

\n

Order by ENUM for Case Child

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOSE_CODE
CREATED_AT
SEVERITY
STATE
TYPE
UPDATED_AT
\n

CaseChildSeverity

\n

Case Child Severity ENUM

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
INFORMATIONAL
LOW
MEDIUM
\n

CaseChildState

\n

Case Child State ENUM

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOSED
IN_PROGRESS
NEW
\n

CaseChildType

\n

Case Child Type ENUM

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
DISCOVER_TASK
DRP_ALERT
ENGINEERING_INCIDENT
INCIDENT
PHISHING_INCIDENT
TASK
\n

CaseActivityLogFilter

\n

Case Activity Log Filter input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdActivity log creation time range (Optional)TimeRange
\n

CaseActivityLogOrder

\n

Case Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByListCaseActivityLogOrderBy
\n

CaseActivityLogOrderBy

\n

Order By ENUM for Case Activity Log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
FIELD
\n

CaseActivityLogEntry

\n

Case Activity Log Entry schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aiSummaryStringChanged
caseChildCaseChildChanged
closeCodeStringChanged
closedAtDateTimeChanged
createdAtDateTime
createdByUser
descriptionStringChanged
dueAtDateTimeChanged
expirationDateDateTimeChanged
idID
ownerUserChanged
reasonForClosureStringChanged
severityCaseSeverityChanged
stateCaseStateChanged
titleStringChanged
\n

CaseActivityLogEdge

\n

Case Activity Log Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCaseActivityLogEntry
\n

CaseActivityLogConnection

\n

Case Activity Log Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCaseActivityLogEdge
pageInfoPageInfo
totalCountInt
\n

CaseStateChanged

\n

Case State Change for activity log shema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueCaseState
oldValueCaseState
\n

CaseSeverityChanged

\n

Case Severity Change for activity log shema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueCaseSeverity
oldValueCaseSeverity
\n

CaseChildChanged

\n

Case Child Change for activity log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueCaseChild
oldValueCaseChild
\n

CaseCommentFilter

\n

Case Comment Filter input type to filter out Cases' comments

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdTime range for comment creation (optional)TimeRange
\n

CaseCommentOrder

\n

Case Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByCaseCommentOrderBy
\n

CaseCommentOrderBy

\n

Order by ENUM for Case Comments

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
UPDATED_AT
\n

CaseComment

\n

Case Comment schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByUser
idID
textString
updatedAtDateTime
updatedByUser
\n

CaseCommentEdge

\n

Case Comment Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCaseComment
\n

CaseCommentConnection

\n

Case Comment Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCaseCommentEdge
pageInfoPageInfo
totalCountInt
\n

CreateCaseInput

\n

Input fields for new case

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aiSummaryString
attachmentIdsIDs of attachments to link to the case upon creationID
childrenChildren to link to the case upon creationCaseChildAssociationInput
descriptionString
dueAtDateTime
ownerID
severityCaseSeverity
stateCaseState
subTypeCaseSubType
titleString
typeCaseType
\n

UpdateCaseInput

\n

Input fields for updating a case. This update is treated as a partial update.\nThis means that only non-null fields passed will be saved.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aiSummaryString
caseIdID
descriptionString
expirationDateDateTime
severityCaseSeverity
stateCaseState
subTypeCaseSubType
titleString
\n

UpdateCaseOwnerInput

\n

Input fields for updating the Case's owner. Pass null for owner to set the case to have no owner.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseIdID
ownerID
\n

UpdateCaseDueDateInput

\n

Input fields for updating the Case's due date. Pass null for due at to set the case to have no due date.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseIdID
dueAtDateTime
\n

CloseCaseInput

\n

Input fields for closing a case.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseIdID
closeCodeString
reasonString
\n

CancelCaseInput

\n

Input fields for cancelling a case.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseIdID
closeCodeString
reasonString
\n

CaseCommentInput

\n

Input fields for adding a case comment.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseIdID
commentString
\n

AddChildrenToCaseInput

\n

Input fields for adding a child to a case.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseIdID
childrenCaseChildAssociationInput
\n

RemoveChildFromCaseInput

\n

Input fields for removing a child from a case.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseIdID
childCaseChildAssociationInput
\n

CaseChildAssociationInput

\n

Input fields for associating a child to a case.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
childIdID
childTypeCaseChildType
\n
","_postman_id":"87779995-623b-4acf-8d57-28574f1a730d","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Change Control","item":[{"name":"Mutations","item":[{"name":"approveDetectionChangeRequests","id":"98ad66d3-571c-4ea2-85d9-d493e8d78784","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation approveDetectionChangeRequests ($input: ApproveDetectionChangeRequestsInput!) {\n approveDetectionChangeRequests (input: $input) {\n failed {\n changeRequest {\n createdAt\n id\n requestType\n sourceType\n status\n }\n reason\n }\n succeeded {\n createdAt\n customerDetection {\n createdAt\n deployedLogic\n detectionSource\n displaySlug\n enabled\n id\n sourceType\n versionNumber\n }\n id\n requestType\n rule {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n sourceType\n status\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"ids\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Approves one or more pending detection change requests.

\n

Inputs: \nApproveDetectionChangeRequestsInput,

\n

Return: \nDetectionChangeRequestActionResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"f83a625a-eceb-44b9-85cd-efe29b49ade7","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation approveDetectionChangeRequests ($input: ApproveDetectionChangeRequestsInput!) {\n approveDetectionChangeRequests (input: $input) {\n failed {\n changeRequest {\n createdAt\n id\n requestType\n sourceType\n status\n }\n reason\n }\n succeeded {\n createdAt\n customerDetection {\n createdAt\n deployedLogic\n detectionSource\n displaySlug\n enabled\n id\n sourceType\n versionNumber\n }\n id\n requestType\n rule {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n sourceType\n status\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"ids\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Approves one or more pending detection change requests.\n\nInputs: \nApproveDetectionChangeRequestsInput, \n\nReturn: \nDetectionChangeRequestActionResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"approveDetectionChangeRequests\": {\n \"failed\": [\n {\n \"changeRequest\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"requestType\": \"NEW_RULE\",\n \"sourceType\": \"\",\n \"status\": \"APPROVED\"\n },\n \"reason\": \"\"\n }\n ],\n \"succeeded\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customerDetection\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"deployedLogic\": \"\",\n \"detectionSource\": \"\",\n \"displaySlug\": 0,\n \"enabled\": true,\n \"id\": \"\",\n \"sourceType\": \"\",\n \"versionNumber\": 0\n },\n \"id\": \"\",\n \"requestType\": \"NEW_RULE\",\n \"rule\": {\n \"description\": \"\",\n \"id\": \"\",\n \"logSourceTypes\": [\n \"\"\n ],\n \"mitreTacticNames\": [\n \"\"\n ],\n \"name\": \"\",\n \"severity\": \"CRITICAL\",\n \"slug\": \"\",\n \"state\": \"DEPLOYED\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"sourceType\": \"\",\n \"status\": \"APPROVED\"\n }\n ],\n \"success\": true\n }\n }\n}"}],"_postman_id":"98ad66d3-571c-4ea2-85d9-d493e8d78784"},{"name":"rejectDetectionChangeRequests","id":"09a858d1-4020-478c-85fd-e8e29df489c2","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation rejectDetectionChangeRequests ($input: RejectDetectionChangeRequestsInput!) {\n rejectDetectionChangeRequests (input: $input) {\n failed {\n changeRequest {\n createdAt\n id\n requestType\n sourceType\n status\n }\n reason\n }\n succeeded {\n createdAt\n customerDetection {\n createdAt\n deployedLogic\n detectionSource\n displaySlug\n enabled\n id\n sourceType\n versionNumber\n }\n id\n requestType\n rule {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n sourceType\n status\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"ids\": [\n \"\"\n ],\n \"tuningSubtype\": \"ALLOWLIST\",\n \"tuningTicketRequired\": true,\n \"tuningType\": \"HIGH_VOLUME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Rejects one or more pending detection change requests, optionally recording the tuning classification for the change.

\n

Inputs: \nRejectDetectionChangeRequestsInput,

\n

Return: \nDetectionChangeRequestActionResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7f841fff-88a2-4b47-bba6-5a326a5240e8","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation rejectDetectionChangeRequests ($input: RejectDetectionChangeRequestsInput!) {\n rejectDetectionChangeRequests (input: $input) {\n failed {\n changeRequest {\n createdAt\n id\n requestType\n sourceType\n status\n }\n reason\n }\n succeeded {\n createdAt\n customerDetection {\n createdAt\n deployedLogic\n detectionSource\n displaySlug\n enabled\n id\n sourceType\n versionNumber\n }\n id\n requestType\n rule {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n sourceType\n status\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"ids\": [\n \"\"\n ],\n \"tuningSubtype\": \"ALLOWLIST\",\n \"tuningTicketRequired\": true,\n \"tuningType\": \"HIGH_VOLUME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Rejects one or more pending detection change requests, optionally recording the tuning classification for the change.\n\nInputs: \nRejectDetectionChangeRequestsInput, \n\nReturn: \nDetectionChangeRequestActionResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"rejectDetectionChangeRequests\": {\n \"failed\": [\n {\n \"changeRequest\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"requestType\": \"NEW_RULE\",\n \"sourceType\": \"\",\n \"status\": \"APPROVED\"\n },\n \"reason\": \"\"\n }\n ],\n \"succeeded\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customerDetection\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"deployedLogic\": \"\",\n \"detectionSource\": \"\",\n \"displaySlug\": 0,\n \"enabled\": true,\n \"id\": \"\",\n \"sourceType\": \"\",\n \"versionNumber\": 0\n },\n \"id\": \"\",\n \"requestType\": \"NEW_RULE\",\n \"rule\": {\n \"description\": \"\",\n \"id\": \"\",\n \"logSourceTypes\": [\n \"\"\n ],\n \"mitreTacticNames\": [\n \"\"\n ],\n \"name\": \"\",\n \"severity\": \"CRITICAL\",\n \"slug\": \"\",\n \"state\": \"DEPLOYED\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"sourceType\": \"\",\n \"status\": \"APPROVED\"\n }\n ],\n \"success\": true\n }\n }\n}"}],"_postman_id":"09a858d1-4020-478c-85fd-e8e29df489c2"}],"id":"ab21387d-b3c3-43de-873d-e04a24294d5d","_postman_id":"ab21387d-b3c3-43de-873d-e04a24294d5d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"detectionChangeRequests","id":"f58abdc9-1642-4907-b3ad-a836b760811e","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query detectionChangeRequests ($after: String, $filter: DetectionChangeRequestFilter, $first: Int, $order: DetectionChangeRequestOrder) {\n detectionChangeRequests (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n id\n requestType\n sourceType\n status\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"detectionRuleIds\": [\n \"\"\n ],\n \"requestTypes\": [\n \"NEW_RULE\"\n ],\n \"sourceTypes\": [\n \"\"\n ],\n \"statuses\": [\n \"APPROVED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retrieves a paginated list of detection change requests, with optional filtering and ordering.

\n

Inputs: \nString, DetectionChangeRequestFilter, Int, DetectionChangeRequestOrder,

\n

Return: \nDetectionChangeRequestConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d437293b-1fad-42f6-9bc6-e1f36fce458d","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query detectionChangeRequests ($after: String, $filter: DetectionChangeRequestFilter, $first: Int, $order: DetectionChangeRequestOrder) {\n detectionChangeRequests (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n id\n requestType\n sourceType\n status\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"detectionRuleIds\": [\n \"\"\n ],\n \"requestTypes\": [\n \"NEW_RULE\"\n ],\n \"sourceTypes\": [\n \"\"\n ],\n \"statuses\": [\n \"APPROVED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retrieves a paginated list of detection change requests, with optional filtering and ordering.\n\nInputs: \nString, DetectionChangeRequestFilter, Int, DetectionChangeRequestOrder, \n\nReturn: \nDetectionChangeRequestConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"detectionChangeRequests\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"requestType\": \"NEW_RULE\",\n \"sourceType\": \"\",\n \"status\": \"APPROVED\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"f58abdc9-1642-4907-b3ad-a836b760811e"}],"id":"6e355e65-dde6-435b-ab30-722fdc498ee3","_postman_id":"6e355e65-dde6-435b-ab30-722fdc498ee3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"31710291-9ee8-4a64-ae92-bfe15601bc5d","description":"

DetectionChangeRequest

\n

A request to change a customer detection — to create, enable, disable, or tune it — awaiting or having completed customer review.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtWhen the change request was created.DateTime
customerDetectionThe customer detection this change request applies to.CustomerDetection
idUnique identifier of the change request.ID
requestTypeThe kind of change being requested.DetectFeedRequestType
ruleThe detection rule this change request concerns.DetectionRule
sourceTypeThe source that originated this change request.String
statusCurrent approval status of the change request.DetectionChangeRequestStatus
\n

DetectionChangeRequestConnection

\n

A paginated list of detection change requests.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesDetectionChangeRequestEdge
pageInfoPageInfo
totalCountInt
\n

DetectionChangeRequestEdge

\n

An edge in a DetectionChangeRequestConnection.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeDetectionChangeRequest
\n

DetectionChangeRequestActionResponse

\n

The result of approving or rejecting one or more detection change requests.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
failedThe change requests that could not be actioned, each with a reason.DetectionChangeRequestActionError
succeededThe change requests that were successfully actioned.DetectionChangeRequest
successBoolean
\n

DetectionChangeRequestActionError

\n

A detection change request that could not be approved or rejected, paired with the reason for failure.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
changeRequestThe change request that failed to be actioned.DetectionChangeRequest
reasonHuman-readable reason the action failed.String
\n

DetectionChangeRequestStatus

\n

Approval status of a detection change request.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
APPROVED
PENDING_CUSTOMER
REJECTED
\n

TuningType

\n

Classification of why a detection is being tuned.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
HIGH_VOLUME
NON_MALICIOUS
OPTIMIZATION
RULE_CONFIGURATION
\n

TuningSubtype

\n

Specific tuning action applied to a detection.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ALLOWLIST
AUTOMATED_THRESHOLD_HIT
COMPLEX_EXCLUSION
DISABLE_RULE
FAULTY_LOGIC
FAULTY_SETTINGS
FIELD_UPDATE
PERFORMANCE_IMPACT
REFERENCE_LIST_UPDATE
RULE_NOT_APPLICABLE
TURN_INTO_REPORT
UPDATE_VERSION
\n

DetectionChangeRequestFilter

\n

Filter criteria for listing detection change requests. All fields are optional.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
detectionRuleIdsRestrict to change requests for the given detection rules. IDs must be DetectionRule node IDs.ID
requestTypesRestrict to change requests of the given types.DetectFeedRequestType
sourceTypesRestrict to change requests originating from the given sources.String
statusesRestrict to change requests in the given approval statuses.DetectionChangeRequestStatus
\n

DetectionChangeRequestOrder

\n

Ordering for detection change request lists. Defaults: orderBy = CREATED_AT, direction = DESC.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByDetectionChangeRequestOrderBy
\n

DetectionChangeRequestOrderBy

\n

Sortable fields for detection change requests.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
\n

ApproveDetectionChangeRequestsInput

\n

Input for approving detection change requests.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentOptional comment recorded with the approval.String
idsIdentifiers of the change requests to approve. Between 1 and 100 ids.ID
\n

RejectDetectionChangeRequestsInput

\n

Input for rejecting detection change requests.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentReason for the rejection. Required and must not be blank.String
idsIdentifiers of the change requests to reject. Between 1 and 100 ids.ID
tuningSubtypeThe specific tuning action. Required when tuningTicketRequired is true; ignored otherwise.TuningSubtype
tuningTicketRequiredWhether a tuning ticket is required for this rejection.Boolean
tuningTypeThe tuning classification. Required when tuningTicketRequired is true; ignored otherwise.TuningType
\n
","_postman_id":"31710291-9ee8-4a64-ae92-bfe15601bc5d","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Customer","item":[{"name":"Queries","item":[{"name":"customer","id":"21c7dca3-3288-44e9-9784-f75c1efd22a9","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customer ($after: String, $first: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after1: String, $first1: Int) {\n customer {\n accessControlPolicies (after: $after, first: $first) {\n edges {\n cursor\n node {\n description\n displayName\n id\n name\n resource\n resourceType\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after1, first: $first1) {\n edges {\n cursor\n node {\n email\n fullName\n id\n serviceNowId\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after1\": \"T18w\",\n \"first1\": 10\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch current customer details

\n

Return: \nCustomer

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7affc90f-dea1-4dbd-8db1-5251ccf9bf1a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customer ($after: String, $first: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after1: String, $first1: Int) {\n customer {\n accessControlPolicies (after: $after, first: $first) {\n edges {\n cursor\n node {\n description\n displayName\n id\n name\n resource\n resourceType\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after1, first: $first1) {\n edges {\n cursor\n node {\n email\n fullName\n id\n serviceNowId\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after1\": \"T18w\",\n \"first1\": 10\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch current customer details\n\nReturn: \nCustomer\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"customer\": {\n \"accessControlPolicies\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"resourceType\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n }\n}"}],"_postman_id":"21c7dca3-3288-44e9-9784-f75c1efd22a9"},{"name":"customers","id":"150cc0e4-f83e-45e9-819e-36053aad486c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customers ($after: String, $filter: CustomerFilter, $first: Int, $notFilter: CustomerFilter, $order: CustomerOrder) {\n customers (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch All Customers.

\n

Inputs: \nString, CustomerFilter, Int, CustomerFilter, CustomerOrder,

\n

Return: \nCustomerConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"4396e245-da10-4ddf-a5b6-f299fb8091b6","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customers ($after: String, $filter: CustomerFilter, $first: Int, $notFilter: CustomerFilter, $order: CustomerOrder) {\n customers (after: $after, filter: $filter, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n node {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"notFilter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch All Customers.\n\nInputs: \nString, CustomerFilter, Int, CustomerFilter, CustomerOrder, \n\nReturn: \nCustomerConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"customers\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"150cc0e4-f83e-45e9-819e-36053aad486c"}],"id":"33854601-ed82-4864-9d7c-24c34c067d34","_postman_id":"33854601-ed82-4864-9d7c-24c34c067d34","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"d25b1f17-5b42-4fd5-a977-a50b718b588f","description":"

Customer

\n

Customer schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessControlPoliciesAccess Control Policies for this customerAccessControlPolicyConnection
activeBoolean
deployedRulesCountTotal count of detection rules currently deployed for your account, including rules inherited from a parent organization. If createdAfter and/or createdBefore are provided, only rules deployed within that date range are counted, and rules inherited from a parent organization are excluded (inherited rules have no associated deployment date to filter by).DeployedRulesCountResponse
headerSlugSlug value added to the x-reliaquest-customer or x-reliaquest-customers header to target a customer.String
idID
nameString
residencyString
slugSlug value added to the GreyMatter url to target a customer.String
usersUsers in this customerUserConnection
\n

CustomerConnection

\n

CustomerConnection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCustomerEdge
pageInfoPageInfo
totalCountInt
\n

CustomerEdge

\n

CustomerEdge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCustomer
\n

CustomerOrderBy

\n

OrderBy ENUM for Customers

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NAME
\n

CustomerOrder

\n

Customer OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = NAME, direction = ASC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByCustomerOrderBy
\n

CustomerFilter

\n

Filter for customers

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsFilter by the accessGroups associated with the customersID
idsFilter by the ids of the customersID
nameFilter by the name of the customersString
podsFilter by the pods associated with the customersID
rolesFilter by the roles associated with the customersID
usersFilter by the users associated with the customersID
\n

DeployedRulesCountResponse

\n

Response type for the deployed detection rules count.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
countInt
\n
","_postman_id":"d25b1f17-5b42-4fd5-a977-a50b718b588f","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Data","item":[{"name":"Queries","item":[{"name":"dataSourceSchema","id":"95c83bb4-52c0-4736-97c1-7f92bcae6163","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query dataSourceSchema ($by: DataBy!) {\n dataSourceSchema (by: $by) {\n schema {\n fields {\n name\n type\n }\n }\n }\n}","variables":"{\n \"by\": {\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nDataBy,

\n

Return: \nDataSourceResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d9b73a45-a156-4877-9538-5fe840a05c0f","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query dataSourceSchema ($by: DataBy!) {\n dataSourceSchema (by: $by) {\n schema {\n fields {\n name\n type\n }\n }\n }\n}","variables":"{\n \"by\": {\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nDataBy, \n\nReturn: \nDataSourceResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"dataSourceSchema\": {\n \"schema\": {\n \"fields\": [\n {\n \"name\": \"\",\n \"type\": \"BOOLEAN\"\n }\n ]\n }\n }\n }\n}"}],"_postman_id":"95c83bb4-52c0-4736-97c1-7f92bcae6163"},{"name":"timeBuckets","id":"283f92ea-970c-4cf5-b54b-82a71a89f939","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query timeBuckets ($filter: TimeBucketsFilter!) {\n timeBuckets (filter: $filter) {\n buckets {\n count\n endTime\n startTime\n }\n unit\n }\n}","variables":"{\n \"filter\": {\n \"by\": {\n \"incidentId\": \"\"\n },\n \"endTime\": \"2026-08-01T00:00:00.000Z\",\n \"query\": \"\",\n \"startTime\": \"2026-08-01T00:00:00.000Z\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nTimeBucketsFilter,

\n

Return: \nTimeBucketResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"8bbfd290-73e8-4951-8cdf-7ec25d058019","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query timeBuckets ($filter: TimeBucketsFilter!) {\n timeBuckets (filter: $filter) {\n buckets {\n count\n endTime\n startTime\n }\n unit\n }\n}","variables":"{\n \"filter\": {\n \"by\": {\n \"incidentId\": \"\"\n },\n \"endTime\": \"2026-08-01T00:00:00.000Z\",\n \"query\": \"\",\n \"startTime\": \"2026-08-01T00:00:00.000Z\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nTimeBucketsFilter, \n\nReturn: \nTimeBucketResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"timeBuckets\": {\n \"buckets\": [\n {\n \"count\": 0,\n \"endTime\": \"2026-08-01T00:00:00.000Z\",\n \"startTime\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"unit\": \"DAYS\"\n }\n }\n}"}],"_postman_id":"283f92ea-970c-4cf5-b54b-82a71a89f939"}],"id":"bfa52efd-d530-4cd6-a67a-06101e1d6666","_postman_id":"bfa52efd-d530-4cd6-a67a-06101e1d6666","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"d2c68e1b-33ba-474a-97c9-931d68aeff2a","description":"

TimeBucketsFilter

\n

Represents Time bucket filter schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
byEntity id for which time buckets needs to be calculatedDataBy
endTimeEnd time for bucket preparationDateTime
queryComplex filter on fieldsUqliFilter
startTimeStart time for bucket preparationDateTime
\n

TimeBucketResponse

\n

Represents schema for Time Buckets response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
bucketsTimeBucketValue
unitBucket breakdown time unitTemporalUnit
\n

TimeBucketValue

\n

Represents schema for TimeBucket value

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
countEvents in bucket timeframeInt
endTimeBucket end timeDateTime
startTimeBucket start timeDateTime
\n

DataBy

\n

Input type to get Data by incidentId. (Other types can be added later when supported)

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
incidentIdID
\n

DataSourceField

\n

Field in Datasource schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
nameString
typeFieldType
\n

DataSourceSchema

\n

Represents Datasource schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldsDataSourceField
\n

DataSourceResponse

\n

Represent schema for Datasource response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
schemaDataSourceSchema
\n
","_postman_id":"d2c68e1b-33ba-474a-97c9-931d68aeff2a","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Detections","item":[{"name":"Mutations","item":[{"name":"createActivityLogEntryComment","id":"6db00ef6-6982-4bfe-87ce-52f24c904dc1","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createActivityLogEntryComment ($comment: CreateActivityLogEntryCommentInput!) {\n createActivityLogEntryComment (comment: $comment) {\n comment {\n activityLogEntry {\n activityLogType\n createdAt\n id\n text\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n id\n text\n type\n }\n success\n }\n}","variables":"{\n \"comment\": {\n \"activityLogEntryId\": \"\",\n \"text\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Creates a comment under a given activity log entry.

\n

Inputs: \nCreateActivityLogEntryCommentInput,

\n

Return: \nCreateActivityLogEntryCommentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"3af088c4-b954-43d5-be1a-3b31f9c00e7a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createActivityLogEntryComment ($comment: CreateActivityLogEntryCommentInput!) {\n createActivityLogEntryComment (comment: $comment) {\n comment {\n activityLogEntry {\n activityLogType\n createdAt\n id\n text\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n id\n text\n type\n }\n success\n }\n}","variables":"{\n \"comment\": {\n \"activityLogEntryId\": \"\",\n \"text\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Creates a comment under a given activity log entry.\n\nInputs: \nCreateActivityLogEntryCommentInput, \n\nReturn: \nCreateActivityLogEntryCommentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createActivityLogEntryComment\": {\n \"comment\": {\n \"activityLogEntry\": {\n \"__typename\": \"BulkNewCustomerDetectionDeployedActivityLogEntry\",\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"text\": \"\"\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"id\": \"\",\n \"text\": \"\",\n \"type\": \"PUBLIC\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"6db00ef6-6982-4bfe-87ce-52f24c904dc1"}],"id":"b793e5d7-fc9b-49bb-9ada-da0cfb4c1884","_postman_id":"b793e5d7-fc9b-49bb-9ada-da0cfb4c1884","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"customerDetection","id":"4d2a7ce1-f967-418d-9453-65a037be0c99","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetection ($after: String, $filter: CustomerDetectionActivityLogFilter, $first: Int, $order: CustomerDetectionActivityLogOrder, $by: DetectionRuleLogicBy!, $id: ID!) {\n customerDetection (id: $id) {\n activityLogEntries (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n customer {\n id\n }\n displaySlug\n draftVersion {\n id\n }\n globalDetection {\n connector {\n documentationUrl\n id\n name\n type\n }\n detectionRule {\n description\n id\n logSourceTypes\n logic (by: $by) {\n logic\n severity\n version\n }\n mitreTacticNames\n mitreTacticTechniques {\n id\n name\n }\n name\n severity\n slug\n state\n updatedAt\n }\n detectionSource\n displaySlug\n id\n logic\n macros\n sourceType\n suppressionExpression\n timeRange\n versionNumber\n }\n id\n versionNumber\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"activityLogTypes\": [\n \"BULK_NEW_RULES_DEPLOYED\"\n ],\n \"bulkJobId\": \"\",\n \"customerDetectionId\": \"\",\n \"draftCustomerDetectionId\": \"\",\n \"isBulk\": true,\n \"parentCustomerId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"by\": {\n \"deployed\": true,\n \"latest\": true,\n \"version\": 0\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nID,

\n

Return: \nCustomerDetection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"89ad2c3b-69f5-4ed4-9d53-080cb3bb6ed3","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetection ($after: String, $filter: CustomerDetectionActivityLogFilter, $first: Int, $order: CustomerDetectionActivityLogOrder, $by: DetectionRuleLogicBy!, $id: ID!) {\n customerDetection (id: $id) {\n activityLogEntries (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n customer {\n id\n }\n displaySlug\n draftVersion {\n id\n }\n globalDetection {\n connector {\n documentationUrl\n id\n name\n type\n }\n detectionRule {\n description\n id\n logSourceTypes\n logic (by: $by) {\n logic\n severity\n version\n }\n mitreTacticNames\n mitreTacticTechniques {\n id\n name\n }\n name\n severity\n slug\n state\n updatedAt\n }\n detectionSource\n displaySlug\n id\n logic\n macros\n sourceType\n suppressionExpression\n timeRange\n versionNumber\n }\n id\n versionNumber\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"activityLogTypes\": [\n \"BULK_NEW_RULES_DEPLOYED\"\n ],\n \"bulkJobId\": \"\",\n \"customerDetectionId\": \"\",\n \"draftCustomerDetectionId\": \"\",\n \"isBulk\": true,\n \"parentCustomerId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"by\": {\n \"deployed\": true,\n \"latest\": true,\n \"version\": 0\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nID, \n\nReturn: \nCustomerDetection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"customerDetection\": {\n \"activityLogEntries\": {\n \"totalCount\": 0\n },\n \"customer\": {\n \"id\": \"\"\n },\n \"displaySlug\": 0,\n \"draftVersion\": {\n \"id\": \"\"\n },\n \"globalDetection\": {\n \"connector\": {\n \"documentationUrl\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"AI\"\n },\n \"detectionRule\": {\n \"description\": \"\",\n \"id\": \"\",\n \"logSourceTypes\": [\n \"\"\n ],\n \"logic\": [\n {\n \"logic\": \"\",\n \"severity\": \"CRITICAL\",\n \"version\": 0\n }\n ],\n \"mitreTacticNames\": [\n \"\"\n ],\n \"mitreTacticTechniques\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"name\": \"\",\n \"severity\": \"CRITICAL\",\n \"slug\": \"\",\n \"state\": \"DEPLOYED\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"detectionSource\": \"\",\n \"displaySlug\": 0,\n \"id\": \"\",\n \"logic\": \"\",\n \"macros\": \"\",\n \"sourceType\": \"\",\n \"suppressionExpression\": \"\",\n \"timeRange\": \"\",\n \"versionNumber\": 0\n },\n \"id\": \"\",\n \"versionNumber\": 0\n }\n }\n}"}],"_postman_id":"4d2a7ce1-f967-418d-9453-65a037be0c99"},{"name":"customerDetectionActivityLogEntries","id":"6cd02bdd-ad11-4091-a7b0-35dbdab1f138","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetectionActivityLogEntries ($after: String, $filter: CustomerDetectionActivityLogFilter, $first: Int, $order: CustomerDetectionActivityLogOrder) {\n customerDetectionActivityLogEntries (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n activityLogType\n createdAt\n id\n text\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"activityLogTypes\": [\n \"BULK_NEW_RULES_DEPLOYED\"\n ],\n \"bulkJobId\": \"\",\n \"customerDetectionId\": \"\",\n \"draftCustomerDetectionId\": \"\",\n \"isBulk\": true,\n \"parentCustomerId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all Activity log entries which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, CustomerDetectionActivityLogFilter, Int, CustomerDetectionActivityLogOrder,

\n

Return: \nCustomerDetectionActivityLogEntryConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"878ebe73-eaf4-41c1-b2c8-700d3b1c357b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetectionActivityLogEntries ($after: String, $filter: CustomerDetectionActivityLogFilter, $first: Int, $order: CustomerDetectionActivityLogOrder) {\n customerDetectionActivityLogEntries (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n activityLogType\n createdAt\n id\n text\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"activityLogTypes\": [\n \"BULK_NEW_RULES_DEPLOYED\"\n ],\n \"bulkJobId\": \"\",\n \"customerDetectionId\": \"\",\n \"draftCustomerDetectionId\": \"\",\n \"isBulk\": true,\n \"parentCustomerId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all Activity log entries which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, CustomerDetectionActivityLogFilter, Int, CustomerDetectionActivityLogOrder, \n\nReturn: \nCustomerDetectionActivityLogEntryConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"customerDetectionActivityLogEntries\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"__typename\": \"BulkNewCustomerDetectionDeployedActivityLogEntry\",\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"text\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"6cd02bdd-ad11-4091-a7b0-35dbdab1f138"},{"name":"customerDetectionActivityLogEntry","id":"abe103be-a225-4ec4-8e11-5ee9c892a439","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetectionActivityLogEntry ($after: String, $filter: CustomerDetectionActivityLogEntryCommentFilter, $first: Int, $order: CustomerDetectionActivityLogEntryCommentOrder, $id: ID!) {\n customerDetectionActivityLogEntry (id: $id) {\n activityLogType\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n id\n }\n customer {\n id\n }\n customerDetection {\n id\n }\n draftCustomerDetection {\n id\n }\n id\n text\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"types\": [\n \"PUBLIC\"\n ],\n \"user\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch activity log entry by its ID

\n

Inputs: \nID,

\n

Return: \nCustomerDetectionActivityLogEntry

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"2c46b36d-6eb7-43be-98f4-219ba53e2940","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetectionActivityLogEntry ($after: String, $filter: CustomerDetectionActivityLogEntryCommentFilter, $first: Int, $order: CustomerDetectionActivityLogEntryCommentOrder, $id: ID!) {\n customerDetectionActivityLogEntry (id: $id) {\n activityLogType\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n id\n }\n customer {\n id\n }\n customerDetection {\n id\n }\n draftCustomerDetection {\n id\n }\n id\n text\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"types\": [\n \"PUBLIC\"\n ],\n \"user\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch activity log entry by its ID\n\nInputs: \nID, \n\nReturn: \nCustomerDetectionActivityLogEntry\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"customerDetectionActivityLogEntry\": {\n \"__typename\": \"BulkNewCustomerDetectionDeployedActivityLogEntry\",\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"id\": \"\"\n },\n \"customer\": {\n \"id\": \"\"\n },\n \"customerDetection\": {\n \"id\": \"\"\n },\n \"draftCustomerDetection\": {\n \"id\": \"\"\n },\n \"id\": \"\",\n \"text\": \"\"\n }\n }\n}"}],"_postman_id":"abe103be-a225-4ec4-8e11-5ee9c892a439"},{"name":"customerDetections","id":"189e701d-8e19-4430-b739-271d249fcfd8","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetections ($after: String, $filter: CustomerDetectionFilter, $first: Int, $order: CustomerDetectionOrder) {\n customerDetections (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n deployedLogic\n detectionSource\n displaySlug\n enabled\n id\n sourceType\n versionNumber\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"createdAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"detectionRuleIds\": [\n \"\"\n ],\n \"displaySlugs\": [\n 0\n ],\n \"enabled\": true,\n \"ineligible\": true,\n \"integrationIds\": [\n \"\"\n ],\n \"sourceTypes\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all customer detections which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, CustomerDetectionFilter, Int, CustomerDetectionOrder,

\n

Return: \nCustomerDetectionConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"206a703b-7de6-4884-8366-9ae22a974efe","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerDetections ($after: String, $filter: CustomerDetectionFilter, $first: Int, $order: CustomerDetectionOrder) {\n customerDetections (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n deployedLogic\n detectionSource\n displaySlug\n enabled\n id\n sourceType\n versionNumber\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"createdAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"detectionRuleIds\": [\n \"\"\n ],\n \"displaySlugs\": [\n 0\n ],\n \"enabled\": true,\n \"ineligible\": true,\n \"integrationIds\": [\n \"\"\n ],\n \"sourceTypes\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all customer detections which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, CustomerDetectionFilter, Int, CustomerDetectionOrder, \n\nReturn: \nCustomerDetectionConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"customerDetections\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"deployedLogic\": \"\",\n \"detectionSource\": \"\",\n \"displaySlug\": 0,\n \"enabled\": true,\n \"id\": \"\",\n \"sourceType\": \"\",\n \"versionNumber\": 0\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"189e701d-8e19-4430-b739-271d249fcfd8"},{"name":"detectionRules","id":"c6627ba2-97f3-447d-a0a3-d13e81fabbc7","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query detectionRules ($after: String, $detectionRuleOrder: DetectionRuleOrder, $filter: DetectionRuleFilter, $first: Int) {\n detectionRules (after: $after, detectionRuleOrder: $detectionRuleOrder, filter: $filter, first: $first) {\n edges {\n cursor\n node {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"detectionRuleOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"ID\"\n },\n \"filter\": {\n \"authors\": {\n \"connectorId\": \"\",\n \"reliaQuest\": true\n },\n \"deployedLocations\": {\n \"connectorId\": \"\",\n \"digitalRiskProtection\": true,\n \"greymatter\": true\n },\n \"endDate\": \"2026-08-01T00:00:00.000Z\",\n \"ids\": [\n \"\"\n ],\n \"killchainPhases\": [\n \"\"\n ],\n \"mitreTacticIds\": [\n \"\"\n ],\n \"mitreTacticNames\": [\n \"\"\n ],\n \"mitreTechniqueIds\": [\n \"\"\n ],\n \"mitreTechniqueNames\": [\n \"\"\n ],\n \"names\": [\n \"\"\n ],\n \"riskScenarioTags\": [\n \"\"\n ],\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"sourceTypes\": [\n \"\"\n ],\n \"startDate\": \"2026-08-01T00:00:00.000Z\",\n \"status\": \"DEPLOYED\",\n \"statuses\": [\n \"DEPLOYED\"\n ],\n \"technologies\": {\n \"connectorId\": \"\",\n \"digitalLandscape\": true\n }\n },\n \"first\": 10\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retrieves a list of detection rules, with options for filtering, ordering, and pagination.

\n

Inputs: \nString, DetectionRuleOrder, DetectionRuleFilter, Int,

\n

Return: \nDetectionRuleConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"a6343446-38c6-41f6-a646-2703c32f3234","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query detectionRules ($after: String, $detectionRuleOrder: DetectionRuleOrder, $filter: DetectionRuleFilter, $first: Int) {\n detectionRules (after: $after, detectionRuleOrder: $detectionRuleOrder, filter: $filter, first: $first) {\n edges {\n cursor\n node {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"detectionRuleOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"ID\"\n },\n \"filter\": {\n \"authors\": {\n \"connectorId\": \"\",\n \"reliaQuest\": true\n },\n \"deployedLocations\": {\n \"connectorId\": \"\",\n \"digitalRiskProtection\": true,\n \"greymatter\": true\n },\n \"endDate\": \"2026-08-01T00:00:00.000Z\",\n \"ids\": [\n \"\"\n ],\n \"killchainPhases\": [\n \"\"\n ],\n \"mitreTacticIds\": [\n \"\"\n ],\n \"mitreTacticNames\": [\n \"\"\n ],\n \"mitreTechniqueIds\": [\n \"\"\n ],\n \"mitreTechniqueNames\": [\n \"\"\n ],\n \"names\": [\n \"\"\n ],\n \"riskScenarioTags\": [\n \"\"\n ],\n \"search\": \"\",\n \"severities\": [\n \"CRITICAL\"\n ],\n \"sourceTypes\": [\n \"\"\n ],\n \"startDate\": \"2026-08-01T00:00:00.000Z\",\n \"status\": \"DEPLOYED\",\n \"statuses\": [\n \"DEPLOYED\"\n ],\n \"technologies\": {\n \"connectorId\": \"\",\n \"digitalLandscape\": true\n }\n },\n \"first\": 10\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retrieves a list of detection rules, with options for filtering, ordering, and pagination.\n\nInputs: \nString, DetectionRuleOrder, DetectionRuleFilter, Int, \n\nReturn: \nDetectionRuleConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"detectionRules\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"description\": \"\",\n \"id\": \"\",\n \"logSourceTypes\": [\n \"\"\n ],\n \"mitreTacticNames\": [\n \"\"\n ],\n \"name\": \"\",\n \"severity\": \"CRITICAL\",\n \"slug\": \"\",\n \"state\": \"DEPLOYED\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"c6627ba2-97f3-447d-a0a3-d13e81fabbc7"},{"name":"draftCustomerDetection","id":"f79cbaba-72ee-43d9-b4f9-ee21dfa6216d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query draftCustomerDetection ($after: String, $filter: CustomerDetectionActivityLogFilter, $first: Int, $order: CustomerDetectionActivityLogOrder, $by: DraftCustomerDetectionBy!) {\n draftCustomerDetection (by: $by) {\n activityLogEntries (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n customer {\n id\n }\n displaySlug\n globalDetection {\n connector {\n documentationUrl\n id\n name\n type\n }\n detectionRule {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n detectionSource\n displaySlug\n id\n logic\n macros\n sourceType\n suppressionExpression\n timeRange\n versionNumber\n }\n id\n publishedVersion {\n id\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"activityLogTypes\": [\n \"BULK_NEW_RULES_DEPLOYED\"\n ],\n \"bulkJobId\": \"\",\n \"customerDetectionId\": \"\",\n \"draftCustomerDetectionId\": \"\",\n \"isBulk\": true,\n \"parentCustomerId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"by\": {\n \"displaySlug\": 0,\n \"id\": \"\",\n \"publishedVersionId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nDraftCustomerDetectionBy,

\n

Return: \nDraftCustomerDetection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"b3e24234-6733-41de-b0a0-03a7ca8b0088","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query draftCustomerDetection ($after: String, $filter: CustomerDetectionActivityLogFilter, $first: Int, $order: CustomerDetectionActivityLogOrder, $by: DraftCustomerDetectionBy!) {\n draftCustomerDetection (by: $by) {\n activityLogEntries (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n customer {\n id\n }\n displaySlug\n globalDetection {\n connector {\n documentationUrl\n id\n name\n type\n }\n detectionRule {\n description\n id\n logSourceTypes\n mitreTacticNames\n name\n severity\n slug\n state\n updatedAt\n }\n detectionSource\n displaySlug\n id\n logic\n macros\n sourceType\n suppressionExpression\n timeRange\n versionNumber\n }\n id\n publishedVersion {\n id\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"activityLogType\": \"BULK_NEW_RULES_DEPLOYED\",\n \"activityLogTypes\": [\n \"BULK_NEW_RULES_DEPLOYED\"\n ],\n \"bulkJobId\": \"\",\n \"customerDetectionId\": \"\",\n \"draftCustomerDetectionId\": \"\",\n \"isBulk\": true,\n \"parentCustomerId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"by\": {\n \"displaySlug\": 0,\n \"id\": \"\",\n \"publishedVersionId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nDraftCustomerDetectionBy, \n\nReturn: \nDraftCustomerDetection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"draftCustomerDetection\": {\n \"activityLogEntries\": {\n \"totalCount\": 0\n },\n \"customer\": {\n \"id\": \"\"\n },\n \"displaySlug\": 0,\n \"globalDetection\": {\n \"connector\": {\n \"documentationUrl\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"AI\"\n },\n \"detectionRule\": {\n \"description\": \"\",\n \"id\": \"\",\n \"logSourceTypes\": [\n \"\"\n ],\n \"mitreTacticNames\": [\n \"\"\n ],\n \"name\": \"\",\n \"severity\": \"CRITICAL\",\n \"slug\": \"\",\n \"state\": \"DEPLOYED\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"detectionSource\": \"\",\n \"displaySlug\": 0,\n \"id\": \"\",\n \"logic\": \"\",\n \"macros\": \"\",\n \"sourceType\": \"\",\n \"suppressionExpression\": \"\",\n \"timeRange\": \"\",\n \"versionNumber\": 0\n },\n \"id\": \"\",\n \"publishedVersion\": {\n \"id\": \"\"\n }\n }\n }\n}"}],"_postman_id":"f79cbaba-72ee-43d9-b4f9-ee21dfa6216d"}],"id":"9fd830ca-50dd-4d11-b23e-72a0144e1ea3","_postman_id":"9fd830ca-50dd-4d11-b23e-72a0144e1ea3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"8bedd195-2fc2-4a17-ab1e-d2dedab687c6","description":"

DetectionRuleConnection

\n

Represents a paginated list of detection rules.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesDetectionRuleEdge
pageInfoPageInfo
totalCountInt
\n

DetectionRuleEdge

\n

An edge in a connection, representing a single detection rule.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeDetectionRule
\n

DetectionRule

\n

Represent a detection rule.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionString
idID
logSourceTypesString
logicDetectionRuleLogic
mitreTacticNames [DEPRECATED][DEPRECATED: Not intended for public API use; use mitreTacticTechniques instead. Deprecated on 2026-05-27.] Flat list of MITRE tactic names associated with this detection rule.String
mitreTacticTechniquesMitreTacticTechniques
nameString
severitySeverity
slugString
stateCurrent deployment state of the rule.DetectionRuleStatus
updatedAtDateTime
\n

MitreTacticTechniques

\n

Represent a MITRE tactic techniques associated.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
nameString
techniquesMitreTechnique
\n

MitreTechnique

\n

Represent a MITRE technique.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
nameString
\n

DetectionRuleLogic

\n

Logic details for a detection rule, including severity and version.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
logicString
severitySeverity
versionInt
\n

DetectionRuleFilter

\n

Filters for querying detection rules.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
authorsDetectionRuleAuthorFilter
deployedLocationsDetectionRuleDeployedFilter
endDateDateTime
idsID
killchainPhasesFilter by kill chain phases.String
mitreTacticIdsFilter by MITRE tactic global IDs.ID
mitreTacticNamesFilter by MITRE tactic names.String
mitreTechniqueIdsFilter by MITRE technique global IDs.ID
mitreTechniqueNamesFilter by MITRE technique names.String
namesString
riskScenarioTagsString
searchString
severitiesSeverity
sourceTypesString
startDateDateTime
statusDetectionRuleStatus
statusesFilter by multiple deployment statuses.DetectionRuleStatus
technologiesDetectionRuleTechnologyFilter
\n

DetectionRuleAuthorFilter

\n

Filter by authoring source for detection rules.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
connectorIdID
reliaQuestBoolean
\n

DetectionRuleTechnologyFilter

\n

Filter by technology type for detection rules.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
connectorIdID
digitalLandscapeBoolean
\n

DetectionRuleDeployedFilter

\n

Filter by deployment location for detection rules.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
connectorIdID
digitalRiskProtectionBoolean
greymatterBoolean
\n

DetectionRuleLogicBy

\n

Specifies how to retrieve logic for a detection rule.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
deployedBoolean
latestBoolean
versionInt
\n

DetectionRuleOrderBy

\n

Criteria for ordering detection rules.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ID
NAME
SEVERITY
SLUG
STATE
UPDATED_AT
\n

DetectionRuleOrder

\n

Specifies ordering for detection rule queries.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByDetectionRuleOrderBy
\n

DetectionRuleStatus

\n

Status indicating whether a detection rule is deployed.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
DEPLOYED
NOT_DEPLOYED
\n

Severity

\n

Severity levels for detection rules. Defaults to LOW if null.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
LOW
MEDIUM
\n

CustomerDetectionFilter

\n

Filters for fetching customer detections

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtTimeRange
detectionRuleIdsID of DetectionRule associated with the detectionID
displaySlugsNumeric \"slug\" which is displayed in UI for detectionLong
enabledTrue corresponds to \"Deployed\" status and False corresponds to \"Not deployed\"Boolean
ineligibleBoolean
integrationIdsID
sourceTypesString
\n

CustomerDetectionOrder

\n

CustomerDetectionOrder OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByCustomerDetectionOrderBy
\n

CustomerDetectionOrderBy

\n

Sortable fields for customer detections

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
DISPLAY_SLUG
UPDATED_AT
\n

CreateActivityLogEntryCommentInput

\n

Input type used when creating an activity log comment.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogEntryIdID reference to a specific activity log entry where the comment should be added.ID
textThe text to be added as a user comment.String
\n

CreateActivityLogEntryCommentResponse

\n

Response type used when creating an activity log comment.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentProvides the underlying created activity log comment.CustomerDetectionActivityLogEntryComment
successIndicates whether the operation was successful.Boolean
\n

DraftCustomerDetectionBy

\n

Input type to get draft customer detection by either uuid or id (persists across versions)\nThis input is annotated with @oneOf directive so only one field should be provided to fetch draft customer detection.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
displaySlugShared human readable ID of draft and published (if not new draft) detectionLong
idID reference to a specific draft for a customer detectionID
publishedVersionIdID of existing published version of customer detectionID
\n

CustomerDetectionActivityLogFilter

\n

Customer detection activity log Filter input type to filter out activity log entries.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogType [DEPRECATED][DEPRECATED: Use activityLogTypes instead. Since 2025-03-13.] Filter by the type of activity log entryCustomerDetectionActivityLogType
activityLogTypesFilter by multiple types of activity log entryCustomerDetectionActivityLogType
bulkJobIdFilter by Detection Bulk Job IDID
customerDetectionIdFilter by Customer Detection ID (long lived ID that's consistent between versions).ID
draftCustomerDetectionIdFilter by Draft customer detection IDID
isBulkUsed to filter out bulk jobs. Set to True to return only activities as part of bulk deployment. Set to False to exclude activities part of bulk deployment. Leave null to return both. Note that bulkJobId property takes precedenceBoolean
parentCustomerId [DEPRECATED][DEPRECATED: No longer used - parent detection is auto-discovered.] No longer needed as the parent detection is auto-discovered.String
\n

CustomerDetectionConnection

\n

CustomerDetection connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCustomerDetectionEdge
pageInfoPageInfo
totalCountInt
\n

DraftCustomerDetectionConnection

\n

Draft Customer Detection connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesDraftCustomerDetectionEdge
pageInfoPageInfo
totalCountInt
\n

CustomerDetectionEdge

\n

CustomerDetection edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCustomerDetection
\n

DraftCustomerDetectionEdge

\n

DraftCustomerDetection edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeDraftCustomerDetection
\n

CustomerDetection

\n

Represents a detection rule deployed to customer technology

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogEntriesCustomerDetectionActivityLogEntryConnection
createdAtDateTime
customerCustomer
deployedLogicFinal rule logic after macros, custom logic and custom tuning have been applied. Null for GreyMatter Detect detections, whose logic is defined as a structured query rather than raw logic text.String
detectionSourceNull for GreyMatter Detect detections, which are not tied to a single detection source.String
displaySlugHuman readable ID for Customer detection that is shared by draft and published versions)Long
draftVersionDraftCustomerDetection
enabledBoolean
globalDetectionGlobalDetection
idID of this customer detectionID
integrationIntegration
sourceTypeString
versionNumberLong
\n

GlobalDetection

\n

Represents a global template for rules which can be deployed to multiple customers

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
connectorConnector
detectionRuleDetectionRule
detectionSourceNull for GreyMatter Detect templates, which are not tied to a single detection source.String
displaySlugLong
idID
logicNull for GreyMatter Detect templates, whose logic is defined as a structured query rather than raw logic text.String
macrosString
sourceTypeString
suppressionExpressionNull for GreyMatter Detect templates.String
timeRangeNull for GreyMatter Detect templates.String
versionNumberLong
\n

DraftCustomerDetection

\n

Customer detection that is in draft state

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogEntriesCustomerDetectionActivityLogEntryConnection
customerCustomer
detectionSourceNull for GreyMatter Detect detections, which are not tied to a single detection source.String
displaySlugHuman readable ID for Customer detection that is shared by draft and published versions)Long
globalDetectionGlobalDetection
idGlobal ID of draft detectionID
integrationIntegration
publishedVersionExisting published version of the customer detection if this is an update to an existing versionCustomerDetection
sourceTypeString
\n

CustomerDetectionActivityLogEntryConnection

\n

CustomerDetectionActivityLogEntry connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCustomerDetectionActivityLogEntryEdge
pageInfoPageInfo
totalCountInt
\n

CustomerDetectionActivityLogEntryEdge

\n

CustomerDetectionActivityLogEntry edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCustomerDetectionActivityLogEntry
\n

CustomerDetectionActivityLogEntry

\n

Base interface for various types of customer detection activity log entry

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionOptional, customer detection this activity log entry is associated with. Empty if detection is in draft stateCustomerDetection
draftCustomerDetectionOptional, customer detection draft this activity log entry is associated with. Empty if detection is in published stateDraftCustomerDetection
idID
textTop level comment on the activityString
\n

CustomerDetectionActivityLogOrder

\n

CustomerDetectionActivityLogOrder OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByCustomerDetectionActivityLogOrderBy
\n

CustomerDetectionActivityLogOrderBy

\n

Order by ENUM for customer detection activity log entries

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
\n

CustomerDetectionActivityLogEntryCommentFilter

\n

Filter class for comments on activity log entries

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
typesComment type to be filtered. (Required) Will be set to default if not explicitly passed.CustomerDetectionActivityLogEntryCommentType
userID
\n

CustomerDetectionActivityLogType

\n

Represents types of customer detection activity log entries

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
BULK_NEW_RULES_DEPLOYEDMultiple new rules have been deployed in bulk.
NATIVE_RULE_UPDATEDGreyMatter updated an injected rule to a newer version via the SYNC job.
NEW_RULE_DEPLOYEDA new rule has been deployed.
NEW_RULE_REQUESTA new rule has been requested.
REQUEST_APPROVEDThe request has been approved.
REQUEST_REJECTEDThe request has been rejected.
RULES_MIGRATED_DETECT_PUSHOne or more rules migrated to customer technology.
RULES_MIGRATED_DETECT_QUERYOne or more rules migrated to GreyMatter API query.
RULE_DISABLEDA rule has been disabled.
RULE_DISABLE_REQUESTA rule has been requested to be disabled.
RULE_ENABLEDA rule has been enabled.
RULE_ENABLE_REQUESTA rule has been requested to be enabled.
TUNING_UPDATEDA tuning update has been applied.
TUNING_UPDATE_REQUESTA tuning update has been requested.
\n

NewCustomerDetectionDeployedActivityLogEntry

\n

Represents an activity log for a newly deployed customer detection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
bulkJobOptDetectionBulkJob
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
isIneligibleBoolean
newDeployedLogicString
testAlertsVolumeInt
testSearchWindowString
testingDateDateTime
testingStatusDetectionTestingValidationStatus
textString
\n

BulkNewCustomerDetectionDeployedActivityLogEntry

\n

Represents an activity log for a customer detection deployed via bulk deployment

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogEntriesReturn nested activity log entries that were part of the bulk deployment jobCustomerDetectionActivityLogEntryConnection
activityLogTypeCustomerDetectionActivityLogType
bulkJobDetectionBulkJob
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
textString
\n

NewCustomerDetectionRequestActivityLogEntry

\n

Represents an activity log for a customer detection deployed via bulk deployment

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
bulkJobOptDetectionBulkJob
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
newDeployedLogicString
testAlertsVolumeInt
testSearchWindowString
testingDateDateTime
testingStatusDetectionTestingValidationStatus
textString
\n

CustomerDetectionRequestRejectedActivityLogEntry

\n

Represents an activity log for a customer detection update request that was rejected

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
bulkJobOptDetectionBulkJob
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
requestTypeDetectFeedRequestType
textString
tuningTicketIncident
\n

DetectionTestingValidationStatus

\n

Results status of detection automated rules testing job

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CUSTOM
ERROR
IN_PROGRESS
NO_RESULT
SUCCESS
\n

CustomerDetectionRequestApprovedActivityLogEntry

\n

Represents an activity log for a customer detection update request that was approved

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
bulkJobOptDetectionBulkJob
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
requestTypeDetectFeedRequestType
textString
\n

CustomerDetectionEnabledActivityLogEntry

\n

Represents an activity log for a disabled customer detection that was re-enabled

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
textString
\n

CustomerDetectionDisabledActivityLogEntry

\n

Represents an activity log for a customer detection that was disabled

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
textString
\n

CustomerDetectionEnableRequestActivityLogEntry

\n

Represents an activity log for a request to enable customer detection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
textString
\n

CustomerDetectionDisableRequestActivityLogEntry

\n

Represents an activity log for a request to disable customer detection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
textString
\n

CustomerDetectionTuningUpdatedActivityLogEntry

\n

Represents an activity log for a request to disable customer detection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
newDeployedLogicString
newTestAlertsVolumeInt
newTestSearchWindowString
newTestingDateDateTime
newTestingStatusDetectionTestingValidationStatus
oldDeployedLogicString
oldTestAlertsVolumeInt
oldTestSearchWindowString
oldTestingDateDateTime
oldTestingStatusDetectionTestingValidationStatus
textString
\n

CustomerDetectionTuningUpdatedRequestActivityLogEntry

\n

Represents an activity log for a request to disable customer detection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
isEmergencyBoolean
newDeployedLogicString
newTestAlertsVolumeInt
newTestSearchWindowString
newTestingDateDateTime
newTestingStatusDetectionTestingValidationStatus
oldDeployedLogicString
oldTestAlertsVolumeInt
oldTestSearchWindowString
oldTestingDateDateTime
oldTestingStatusDetectionTestingValidationStatus
textString
\n

DetectFeedRequestType

\n

Types of Detect Feed Request

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NEW_RULE
OTHER
RULE_DISABLE
RULE_ENABLE
TUNING_UPDATE
\n

CustomerDetectionActivityLogEntryCommentOrder

\n

CustomerDetectionActivityLogOrder OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByCustomerDetectionActivityLogEntryCommentOrderBy
\n

CustomerDetectionActivityLogEntryCommentOrderBy

\n

Order by ENUM for customer detection activity log entries

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
\n

CustomerDetectionActivityLogEntryCommentConnection

\n

CustomerDetectionActivityLogEntryComment connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesCustomerDetectionActivityLogEntryCommentEdge
pageInfoPageInfo
totalCountInt
\n

CustomerDetectionActivityLogEntryCommentEdge

\n

CustomerDetectionActivityLogEntryComment edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeCustomerDetectionActivityLogEntryComment
\n

CustomerDetectionActivityLogEntryComment

\n

A comment that can be added to an activity log entry

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogEntryCustomerDetectionActivityLogEntry
createdAtDateTime
createdByUser
customerCustomer
idID
textString
typeCustomerDetectionActivityLogEntryCommentType
\n

CustomerDetectionActivityLogEntryCommentType

\n

Customer Detection Activity Log Comment Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
PUBLIC
\n

CustomerDetectionTestingResults

\n

Results from automated rules testing for a customer detection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
\n

DraftDetectionTestingResults

\n

Aggregated Results from automated rules testing

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
\n

DetectionBulkJob

\n

Bulk job for a customer detection deployed via bulk deploy

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionString
idID
statusDetectionBulkJobStatus
\n

DetectionBulkJobStatus

\n

Status of a bulk detections deployment job

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CANCELLED
CANCELLED_AND_DELETED
CANCELLED_AND_DISABLED
COMPLETED_NEEDS_ATTENTION
COMPLETED_SUCCESSFULLY
FAILED
IN_PROGRESS
\n

CustomerDetectionsMigratedDetectPushActivityLogEntry

\n

Represents an activity log entry for a customer detection that has been migrated and pushed as part of the detection process.\nTracks detection migration jobs associated with the migration.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
detectionMigrationJobsDetectionMigrationJob
draftCustomerDetectionDraftCustomerDetection
idID
textString
\n

NativeRuleUpdatedActivityLogEntry

\n

Represents an activity log entry when GreyMatter updates an injected rule to a newer version.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityLogTypeCustomerDetectionActivityLogType
commentsCustomerDetectionActivityLogEntryCommentConnection
createdAtDateTime
createdByUser
customerCustomer
customerDetectionCustomerDetection
draftCustomerDetectionDraftCustomerDetection
idID
textString
\n

DetectionMigrationJob

\n

Represents a detection migration job associated with a customer detection migration process.\nThis type tracks the status, reason, and metadata related to the migration job.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
customerCustomer
customerDetectionCustomerDetection
idID
jobStatusDetectionMigrationJobStatus
reasonString
\n

DetectionMigrationJobStatus

\n

Enum representing the possible statuses of a detection migration job.\nThese statuses provide information about the current state of the job in the migration process.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CANCELED
COMPLETED
FAILED
RUNNING
\n
","_postman_id":"8bedd195-2fc2-4a17-ab1e-d2dedab687c6","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Discover Tasks","item":[{"name":"Mutations","item":[{"name":"assignDiscoverTask","id":"f2a19cec-f1c3-4c4f-a970-f16ff969dedf","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignDiscoverTask ($input: AssignDiscoverTaskInput!) {\n assignDiscoverTask (input: $input) {\n discoverTask {\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"assignee\": \"\",\n \"discoverTaskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Assign a Discover Task

\n

Inputs: \nAssignDiscoverTaskInput,

\n

Return: \nDiscoverTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"6e427da9-c88f-426f-97b6-8d942c3a877b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignDiscoverTask ($input: AssignDiscoverTaskInput!) {\n assignDiscoverTask (input: $input) {\n discoverTask {\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"assignee\": \"\",\n \"discoverTaskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Assign a Discover Task\n\nInputs: \nAssignDiscoverTaskInput, \n\nReturn: \nDiscoverTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"assignDiscoverTask\": {\n \"discoverTask\": {\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"f2a19cec-f1c3-4c4f-a970-f16ff969dedf"},{"name":"closeDiscoverTask","id":"f9fe51b9-7c61-443a-93c0-78ecdabd0cdd","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeDiscoverTask ($input: CloseDiscoverTaskInput!) {\n closeDiscoverTask (input: $input) {\n discoverTask {\n closeCode\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"closeCode\": \"ACCEPTED_RISK\",\n \"discoverTaskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Close Discover Task

\n

Inputs: \nCloseDiscoverTaskInput,

\n

Return: \nDiscoverTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"50dacec7-23cf-49a3-8253-2e9216b78694","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeDiscoverTask ($input: CloseDiscoverTaskInput!) {\n closeDiscoverTask (input: $input) {\n discoverTask {\n closeCode\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"closeCode\": \"ACCEPTED_RISK\",\n \"discoverTaskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Close Discover Task\n\nInputs: \nCloseDiscoverTaskInput, \n\nReturn: \nDiscoverTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"closeDiscoverTask\": {\n \"discoverTask\": {\n \"closeCode\": \"ACCEPTED_RISK\",\n \"id\": \"\",\n \"state\": \"CLOSED\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"f9fe51b9-7c61-443a-93c0-78ecdabd0cdd"},{"name":"updateDiscoverTaskState","id":"bbdbad8c-1c69-4d7d-ad58-f57da3c68b19","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateDiscoverTaskState ($input: UpdateDiscoverTaskStateInput!) {\n updateDiscoverTaskState (input: $input) {\n discoverTask {\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"discoverTaskId\": \"\",\n \"state\": \"CLOSED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update Discover Task's state

\n

Inputs: \nUpdateDiscoverTaskStateInput,

\n

Return: \nDiscoverTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"2d90a2f4-fda3-4366-a784-df26486ab019","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateDiscoverTaskState ($input: UpdateDiscoverTaskStateInput!) {\n updateDiscoverTaskState (input: $input) {\n discoverTask {\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"discoverTaskId\": \"\",\n \"state\": \"CLOSED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update Discover Task's state\n\nInputs: \nUpdateDiscoverTaskStateInput, \n\nReturn: \nDiscoverTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateDiscoverTaskState\": {\n \"discoverTask\": {\n \"id\": \"\",\n \"state\": \"CLOSED\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"bbdbad8c-1c69-4d7d-ad58-f57da3c68b19"}],"id":"b6a6bc96-17ce-4172-9481-04507e480b36","_postman_id":"b6a6bc96-17ce-4172-9481-04507e480b36","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"discoverTask","id":"ce03c7c3-4202-4851-8851-3cb9e8723607","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query discoverTask ($after: String, $filter: DiscoverTaskActivityFilter, $first: Int, $order: DiscoverTaskActivityOrder, $after1: String, $filter1: AccessGroupFilter, $first1: Int, $order1: AccessGroupOrder, $after2: String, $filter2: PodFilter, $first2: Int, $order2: PodOrder, $after3: String, $filter3: RoleFilter, $first3: Int, $order3: RoleFilter, $after4: String, $filter4: DiscoverTaskCommentFilter, $first4: Int, $order4: DiscoverTaskCommentOrder, $after5: String, $first5: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after6: String, $first6: Int, $after7: String, $first7: Int, $createdAfter1: DateTime, $createdBefore1: DateTime, $after8: String, $first8: Int, $after9: String, $filter5: IntegrationActivityLogFilter, $first9: Int, $order5: IntegrationActivityLogOrder, $after10: String, $first10: Int, $createdAfter2: DateTime, $createdBefore2: DateTime, $after11: String, $first11: Int, $by: DiscoverTaskBy!) {\n discoverTask (by: $by) {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n id\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n assignee {\n accessGroups (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n closeCode\n comments (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n edges {\n cursor\n node {\n createdAt\n id\n text\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n customer {\n accessControlPolicies (after: $after5, first: $first5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after6, first: $first6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n exposure {\n aiSummary\n customer {\n accessControlPolicies (after: $after7, first: $first7) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter1, createdBefore: $createdBefore1) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after8, first: $first8) {\n totalCount\n }\n }\n description\n exposure\n id\n mitigations\n mitreTacticTechniques {\n id\n name\n techniques {\n id\n name\n }\n }\n type\n }\n id\n integrations {\n activity (after: $after9, filter: $filter5, first: $first9, order: $order5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n connectionStatus\n connector {\n documentationUrl\n id\n name\n type\n }\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n sharedBy {\n accessControlPolicies (after: $after10, first: $first10) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter2, createdBefore: $createdBefore2) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after11, first: $first11) {\n totalCount\n }\n }\n }\n severity\n state\n title\n updatedAt\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after5\": \"T18w\",\n \"first5\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after6\": \"T18w\",\n \"first6\": 10,\n \"after7\": \"T18w\",\n \"first7\": 10,\n \"createdAfter1\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore1\": \"2026-08-01T00:00:00.000Z\",\n \"after8\": \"T18w\",\n \"first8\": 10,\n \"after9\": \"T18w\",\n \"filter5\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CONFIGURATION_CHANGED\"\n ]\n },\n \"first9\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after10\": \"T18w\",\n \"first10\": 10,\n \"createdAfter2\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore2\": \"2026-08-01T00:00:00.000Z\",\n \"after11\": \"T18w\",\n \"first11\": 10,\n \"by\": {\n \"id\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch Discover Case by id

\n

Inputs: \nDiscoverTaskBy,

\n

Return: \nDiscoverTask

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"878599a1-54bb-4c67-a674-562df9a6baaa","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query discoverTask ($after: String, $filter: DiscoverTaskActivityFilter, $first: Int, $order: DiscoverTaskActivityOrder, $after1: String, $filter1: AccessGroupFilter, $first1: Int, $order1: AccessGroupOrder, $after2: String, $filter2: PodFilter, $first2: Int, $order2: PodOrder, $after3: String, $filter3: RoleFilter, $first3: Int, $order3: RoleFilter, $after4: String, $filter4: DiscoverTaskCommentFilter, $first4: Int, $order4: DiscoverTaskCommentOrder, $after5: String, $first5: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after6: String, $first6: Int, $after7: String, $first7: Int, $createdAfter1: DateTime, $createdBefore1: DateTime, $after8: String, $first8: Int, $after9: String, $filter5: IntegrationActivityLogFilter, $first9: Int, $order5: IntegrationActivityLogOrder, $after10: String, $first10: Int, $createdAfter2: DateTime, $createdBefore2: DateTime, $after11: String, $first11: Int, $by: DiscoverTaskBy!) {\n discoverTask (by: $by) {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n id\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n assignee {\n accessGroups (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n closeCode\n comments (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n edges {\n cursor\n node {\n createdAt\n id\n text\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n customer {\n accessControlPolicies (after: $after5, first: $first5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after6, first: $first6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n exposure {\n aiSummary\n customer {\n accessControlPolicies (after: $after7, first: $first7) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter1, createdBefore: $createdBefore1) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after8, first: $first8) {\n totalCount\n }\n }\n description\n exposure\n id\n mitigations\n mitreTacticTechniques {\n id\n name\n techniques {\n id\n name\n }\n }\n type\n }\n id\n integrations {\n activity (after: $after9, filter: $filter5, first: $first9, order: $order5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n connectionStatus\n connector {\n documentationUrl\n id\n name\n type\n }\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n sharedBy {\n accessControlPolicies (after: $after10, first: $first10) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter2, createdBefore: $createdBefore2) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after11, first: $first11) {\n totalCount\n }\n }\n }\n severity\n state\n title\n updatedAt\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after5\": \"T18w\",\n \"first5\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after6\": \"T18w\",\n \"first6\": 10,\n \"after7\": \"T18w\",\n \"first7\": 10,\n \"createdAfter1\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore1\": \"2026-08-01T00:00:00.000Z\",\n \"after8\": \"T18w\",\n \"first8\": 10,\n \"after9\": \"T18w\",\n \"filter5\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CONFIGURATION_CHANGED\"\n ]\n },\n \"first9\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after10\": \"T18w\",\n \"first10\": 10,\n \"createdAfter2\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore2\": \"2026-08-01T00:00:00.000Z\",\n \"after11\": \"T18w\",\n \"first11\": 10,\n \"by\": {\n \"id\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch Discover Case by id\n\nInputs: \nDiscoverTaskBy, \n\nReturn: \nDiscoverTask\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"discoverTask\": {\n \"activity\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"assignee\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"roles\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"ACCEPTED_RISK\",\n \"comments\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"text\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customer\": {\n \"accessControlPolicies\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n },\n \"exposure\": {\n \"aiSummary\": \"\",\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"description\": \"\",\n \"exposure\": \"\",\n \"id\": \"\",\n \"mitigations\": \"\",\n \"mitreTacticTechniques\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"techniques\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ],\n \"type\": \"CLOUD_MISCONFIGURATION\"\n },\n \"id\": \"\",\n \"integrations\": [\n {\n \"activity\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"connectionStatus\": \"CONNECTED\",\n \"connector\": {\n \"documentationUrl\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"AI\"\n },\n \"enabled\": true,\n \"id\": \"\",\n \"lastConnectionTest\": \"2026-08-01T00:00:00.000Z\",\n \"lastUsed\": \"2026-08-01T00:00:00.000Z\",\n \"name\": \"\",\n \"sharedBy\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n }\n }\n ],\n \"severity\": \"CRITICAL\",\n \"state\": \"CLOSED\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n}"}],"_postman_id":"ce03c7c3-4202-4851-8851-3cb9e8723607"},{"name":"discoverTasks","id":"a6d5d380-cda8-4e9f-b46d-8c4d32c6f330","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query discoverTasks ($after: String, $filter: DiscoverTaskActivityFilter, $first: Int, $order: DiscoverTaskActivityOrder, $after1: String, $filter1: DiscoverTaskCommentFilter, $first1: Int, $order1: DiscoverTaskCommentOrder, $after2: String, $filter2: DiscoverTaskFilter, $first2: Int, $order2: DiscoverTaskOrder) {\n discoverTasks (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n node {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n comments (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n exposure {\n aiSummary\n description\n exposure\n id\n mitigations\n type\n }\n id\n integrations {\n connectionStatus\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n }\n severity\n state\n title\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"search\": \"\"\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all Discover Tasks which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments:\nfirst = Page count\nafter = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, DiscoverTaskFilter, Int, DiscoverTaskOrder,

\n

Return: \nDiscoverTaskConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"c1c631e0-1ef4-41dc-9a96-b45e6902d84e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query discoverTasks ($after: String, $filter: DiscoverTaskActivityFilter, $first: Int, $order: DiscoverTaskActivityOrder, $after1: String, $filter1: DiscoverTaskCommentFilter, $first1: Int, $order1: DiscoverTaskCommentOrder, $after2: String, $filter2: DiscoverTaskFilter, $first2: Int, $order2: DiscoverTaskOrder) {\n discoverTasks (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n node {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n comments (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n exposure {\n aiSummary\n description\n exposure\n id\n mitigations\n type\n }\n id\n integrations {\n connectionStatus\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n }\n severity\n state\n title\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"search\": \"\"\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all Discover Tasks which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments:\nfirst = Page count\nafter = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, DiscoverTaskFilter, Int, DiscoverTaskOrder, \n\nReturn: \nDiscoverTaskConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"discoverTasks\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"activity\": {\n \"totalCount\": 0\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"ACCEPTED_RISK\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"exposure\": {\n \"aiSummary\": \"\",\n \"description\": \"\",\n \"exposure\": \"\",\n \"id\": \"\",\n \"mitigations\": \"\",\n \"type\": \"CLOUD_MISCONFIGURATION\"\n },\n \"id\": \"\",\n \"integrations\": [\n {\n \"connectionStatus\": \"CONNECTED\",\n \"enabled\": true,\n \"id\": \"\",\n \"lastConnectionTest\": \"2026-08-01T00:00:00.000Z\",\n \"lastUsed\": \"2026-08-01T00:00:00.000Z\",\n \"name\": \"\"\n }\n ],\n \"severity\": \"CRITICAL\",\n \"state\": \"CLOSED\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"a6d5d380-cda8-4e9f-b46d-8c4d32c6f330"}],"id":"0e3c436b-6d41-4001-89b4-f0bdc72547f5","_postman_id":"0e3c436b-6d41-4001-89b4-f0bdc72547f5","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"08961fcf-249f-4786-95ce-5c60b090ac47","description":"

DiscoverTaskBy

\n

Retreive a Discover Task by one and only one of the below

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idThe unique identifier of the Discover TaskID
\n

DiscoverTaskFilter

\n

Discover Task Filter input type to filter out Discover Tasks

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
searchSearch string to search from Discover Task's Title/SummaryString
\n

DiscoverTaskOrder

\n

Discover Task OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByDiscoverTaskOrderBy
\n

DiscoverTaskOrderBy

\n

Order by ENUM for Discover Task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
SEVERITY
STATE
UPDATED_AT
\n

DiscoverTaskSeverity

\n

Discover Task Severity

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
INFORMATIONAL
LOW
MEDIUM
\n

DiscoverTaskState

\n

Discover Task State

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOSED
IN_PROGRESS
NEW
\n

DiscoverTaskCloseCode

\n

Discover Task Close Code

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACCEPTED_RISK
MITIGATED
\n

DiscoverTask

\n

Discover Task schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityActivity Log connection. This connection is pageable, sortable, and filterableDiscoverTaskActivityLogConnection
assigneeUser
closeCodeDiscoverTaskCloseCode
commentsComment connection. This connection is pageable, sortable, and filterableDiscoverTaskCommentConnection
createdAtDateTime
customerCustomer
exposureDiscoverExposure
idID
integrationsIntegration
severityDiscoverTaskSeverity
stateDiscoverTaskState
titleString
updatedAtDateTime
\n

DiscoverTaskResponse

\n

The DiscoverTaskResponse type is used to return the result of a Discover Task related operation.

\n

Fields:

\n
    \n
  • success: Indicates whether the operation was successful.
  • \n
  • case: Provides the resulting updated Discover Task (optional, might be null if no case is associated).
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    FieldDescriptionType
    discoverTaskResulting updated Discover Task (optional)DiscoverTask
    successIndicates whether the operation was successful.Boolean
    \n
  • \n
\n

DiscoverTaskEdge

\n

Discover Task Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeDiscoverTask
\n

DiscoverTaskConnection

\n

Discover Task Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesDiscoverTaskEdge
pageInfoPageInfo
totalCountInt
\n

DiscoverExposure

\n

Discover Exposure schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aiSummaryString
customerCustomer
descriptionString
exposureString
idID
mitigationsString
mitreTacticTechniquesMitreTacticTechniques
typeDiscoverExposureType
\n

DiscoverExposureType

\n

Discover Exposure Type ENUM

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOUD_MISCONFIGURATION
COVERAGE_GAP
VULNERABILITY
\n

DiscoverTaskActivityFilter

\n

Discover Task Activity Log Filter input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdActivity log creation time range (Optional)TimeRange
\n

DiscoverTaskActivityOrder

\n

Discover Task Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderByList = [CREATED_AT], direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByListDiscoverTaskActivityOrderBy
\n

DiscoverTaskActivityOrderBy

\n

Order By ENUM for Discover Task Activity Log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
FIELD
\n

DiscoverTaskActivityLogEntry

\n

Discover Task Activity Log Entry schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeUserChanged
closeCodeDiscoverTaskCloseCodeChanged
createdAtDateTime
createdByUser
idID
severityDiscoverTaskSeverityChanged
stateDiscoverTaskStateChanged
\n

DiscoverTaskActivityLogEdge

\n

Discover Task Activity Log Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeDiscoverTaskActivityLogEntry
\n

DiscoverTaskActivityLogConnection

\n

Discover Task Activity Log Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesDiscoverTaskActivityLogEdge
pageInfoPageInfo
totalCountInt
\n

DiscoverTaskStateChanged

\n

Discover Task State Change for activity log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueDiscoverTaskState
oldValueDiscoverTaskState
\n

DiscoverTaskSeverityChanged

\n

Discover Task Severity Change for activity log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueDiscoverTaskSeverity
oldValueDiscoverTaskSeverity
\n

DiscoverTaskCloseCodeChanged

\n

Discover Task Close Code Change for activity log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueDiscoverTaskCloseCode
oldValueDiscoverTaskCloseCode
\n

DiscoverTaskCommentFilter

\n

Discover Task Comment Filter input type to filter out Discover Tasks' comments

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdTime range for comment creation (optional)TimeRange
\n

DiscoverTaskCommentOrder

\n

Discover Task Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByDiscoverTaskCommentOrderBy
\n

DiscoverTaskCommentOrderBy

\n

Order by ENUM for Discover Task Comments

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
UPDATED_AT
\n

DiscoverTaskComment

\n

Discover Task Comment schmea

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByUser
idID
textString
updatedAtDateTime
updatedByUser
\n

DiscoverTaskCommentEdge

\n

Discover Task Comment Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeDiscoverTaskComment
\n

DiscoverTaskCommentConnection

\n

Discover Task Comment Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesDiscoverTaskCommentEdge
pageInfoPageInfo
totalCountInt
\n

AssignDiscoverTaskInput

\n

Input fields for updating the Discover Task's assignee. Pass null for assignee to set the Discover Task to have no assignee.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeID
discoverTaskIdID
\n

UpdateDiscoverTaskStateInput

\n

Input fields for updating a Discover Task's state. This should not be used to close a Discover Task.\nUse the closeDiscoverTask mutation to do this.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
discoverTaskIdID
stateDiscoverTaskState
\n

CloseDiscoverTaskInput

\n

Input fields for closing a Discover Task.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
closeCodeDiscoverTaskCloseCode
discoverTaskIdID
\n
","_postman_id":"08961fcf-249f-4786-95ce-5c60b090ac47","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"DRP Access Control","item":[{"name":"Mutations","item":[{"name":"createAccessControlPolicy","id":"3bd736b4-60ab-41ee-b017-8da309aba46e","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createAccessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $input: CreateAccessControlPolicyInput!) {\n createAccessControlPolicy (input: $input) {\n policy {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customerId\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"users\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create an Access Control Policy.

\n

Inputs: \nCreateAccessControlPolicyInput,

\n

Return: \nAccessControlPolicyResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"31f98df5-75b4-4a11-9c5d-551ede08cbc1","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createAccessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $input: CreateAccessControlPolicyInput!) {\n createAccessControlPolicy (input: $input) {\n policy {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customerId\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"users\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create an Access Control Policy.\n\nInputs: \nCreateAccessControlPolicyInput, \n\nReturn: \nAccessControlPolicyResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createAccessControlPolicy\": {\n \"policy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"resourceType\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"3bd736b4-60ab-41ee-b017-8da309aba46e"},{"name":"deleteAccessControlPolicy","id":"7aa1469d-1b4e-4a75-9ad0-f2de6e22d940","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAccessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $id: ID!) {\n deleteAccessControlPolicy (id: $id) {\n policy {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete an Access Control Policy.

\n

Inputs: \nID,

\n

Return: \nAccessControlPolicyResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"eafc63e2-a976-4706-b2bd-139da4188dd2","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAccessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $id: ID!) {\n deleteAccessControlPolicy (id: $id) {\n policy {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete an Access Control Policy.\n\nInputs: \nID, \n\nReturn: \nAccessControlPolicyResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteAccessControlPolicy\": {\n \"policy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"resourceType\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"7aa1469d-1b4e-4a75-9ad0-f2de6e22d940"},{"name":"updateAccessControlPolicies","id":"6fbe1819-fe55-48fd-8853-cf61eb980191","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAccessControlPolicies ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $input: UpdateAccessControlPoliciesInput!) {\n updateAccessControlPolicies (input: $input) {\n policies {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessControlPolicyIds\": [\n \"\"\n ],\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"users\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update multiple Access Control Policies.

\n

Inputs: \nUpdateAccessControlPoliciesInput,

\n

Return: \nAccessControlPoliciesResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"0f1e657b-e7cf-4f19-97c3-4cae996f8d32","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAccessControlPolicies ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $input: UpdateAccessControlPoliciesInput!) {\n updateAccessControlPolicies (input: $input) {\n policies {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessControlPolicyIds\": [\n \"\"\n ],\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"users\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update multiple Access Control Policies.\n\nInputs: \nUpdateAccessControlPoliciesInput, \n\nReturn: \nAccessControlPoliciesResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateAccessControlPolicies\": {\n \"policies\": [\n {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"resourceType\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n }\n ],\n \"success\": true\n }\n }\n}"}],"_postman_id":"6fbe1819-fe55-48fd-8853-cf61eb980191"},{"name":"updateAccessControlPolicy","id":"8ed9d424-b1d9-46b2-bf3c-0feafa43b905","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAccessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $input: UpdateAccessControlPolicyInput!) {\n updateAccessControlPolicy (input: $input) {\n policy {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"users\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update an Access Control Policy from provided input parameters.

\n

Inputs: \nUpdateAccessControlPolicyInput,

\n

Return: \nAccessControlPolicyResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"714cc978-2d95-4505-a67d-2706b969ea77","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAccessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $notFilter1: AccessControlPolicyFieldFilter, $input: UpdateAccessControlPolicyInput!) {\n updateAccessControlPolicy (input: $input) {\n policy {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n totalCount\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after1, first: $first1, notFilter: $notFilter1) {\n totalCount\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"users\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update an Access Control Policy from provided input parameters.\n\nInputs: \nUpdateAccessControlPolicyInput, \n\nReturn: \nAccessControlPolicyResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateAccessControlPolicy\": {\n \"policy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"resourceType\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"8ed9d424-b1d9-46b2-bf3c-0feafa43b905"}],"id":"8e37153b-a48c-4d5c-a3ba-20bb06dc0237","_postman_id":"8e37153b-a48c-4d5c-a3ba-20bb06dc0237","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"accessControlPolicies","id":"f7898270-5c1b-4617-85d0-bd1f219b706f","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlPolicies ($after: String, $customerId: ID, $first: Int, $policyFilter: AccessControlPolicyFilter, $policyOrder: AccessControlPolicyOrder) {\n accessControlPolicies (after: $after, customerId: $customerId, first: $first, policyFilter: $policyFilter, policyOrder: $policyOrder) {\n edges {\n cursor\n node {\n description\n displayName\n id\n name\n resource\n resourceType\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"customerId\": \"\",\n \"first\": 10,\n \"policyFilter\": {\n \"name\": \"\",\n \"resources\": [\n \"\"\n ]\n },\n \"policyOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch a customer's Access Control Policies with optional filtering and order applied.

\n

Inputs: \nString, ID, Int, AccessControlPolicyFilter, AccessControlPolicyOrder,

\n

Return: \nAccessControlPolicyConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"c753d17f-24f6-4083-a1d4-a2b836f85c82","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlPolicies ($after: String, $customerId: ID, $first: Int, $policyFilter: AccessControlPolicyFilter, $policyOrder: AccessControlPolicyOrder) {\n accessControlPolicies (after: $after, customerId: $customerId, first: $first, policyFilter: $policyFilter, policyOrder: $policyOrder) {\n edges {\n cursor\n node {\n description\n displayName\n id\n name\n resource\n resourceType\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"customerId\": \"\",\n \"first\": 10,\n \"policyFilter\": {\n \"name\": \"\",\n \"resources\": [\n \"\"\n ]\n },\n \"policyOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch a customer's Access Control Policies with optional filtering and order applied.\n\nInputs: \nString, ID, Int, AccessControlPolicyFilter, AccessControlPolicyOrder, \n\nReturn: \nAccessControlPolicyConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"accessControlPolicies\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"resourceType\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"f7898270-5c1b-4617-85d0-bd1f219b706f"},{"name":"accessControlPolicy","id":"544397c4-8a33-4d50-a651-757729b180c3","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after2: String, $first2: Int, $after3: String, $first3: Int, $notFilter1: AccessControlPolicyFieldFilter, $id: ID!) {\n accessControlPolicy (id: $id) {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n customer {\n accessControlPolicies (after: $after1, first: $first1) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after2, first: $first2) {\n totalCount\n }\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after3, first: $first3, notFilter: $notFilter1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after2\": \"T18w\",\n \"first2\": 10,\n \"after3\": \"T18w\",\n \"first3\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retrieve an Access Control Policy.

\n

Inputs: \nID,

\n

Return: \nAccessControlPolicy

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"ddc327af-da6b-4b45-b48c-f3d36148268a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after2: String, $first2: Int, $after3: String, $first3: Int, $notFilter1: AccessControlPolicyFieldFilter, $id: ID!) {\n accessControlPolicy (id: $id) {\n accessGroups (after: $after, first: $first, notFilter: $notFilter, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n customer {\n accessControlPolicies (after: $after1, first: $first1) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after2, first: $first2) {\n totalCount\n }\n }\n description\n displayName\n id\n name\n resource\n resourceType\n users (after: $after3, first: $first3, notFilter: $notFilter1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"notFilter\": {\n \"ids\": [\n \"\"\n ]\n },\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after2\": \"T18w\",\n \"first2\": 10,\n \"after3\": \"T18w\",\n \"first3\": 10,\n \"notFilter1\": {\n \"ids\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retrieve an Access Control Policy.\n\nInputs: \nID, \n\nReturn: \nAccessControlPolicy\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"accessControlPolicy\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"resource\": \"\",\n \"resourceType\": \"\",\n \"users\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n }\n}"}],"_postman_id":"544397c4-8a33-4d50-a651-757729b180c3"},{"name":"accessControlResources","id":"b048ef57-ef14-4b91-9032-e55a79978eff","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlResources {\n accessControlResources\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

List of Access Control Resources that can bind to an Access Control Policy.

\n

Return: \nString

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"32a9fefc-ff1b-433b-ac80-c85060130c20","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlResources {\n accessControlResources\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"List of Access Control Resources that can bind to an Access Control Policy.\n\nReturn: \nString\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"accessControlResources\": [\n \"\"\n ]\n }\n}"}],"_postman_id":"b048ef57-ef14-4b91-9032-e55a79978eff"}],"id":"a157f825-62bc-42b0-aa2e-077c096d5d05","_postman_id":"a157f825-62bc-42b0-aa2e-077c096d5d05","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"81b71d05-7b06-4089-8ba9-ce7b5a17d47d","description":"

AccessControlPolicy

\n

Schema for an Access Control Policy.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsPaginated Access Groups bound to the Access Control Policy.AccessGroupConnection
customerCustomer details to which the Access Control Policy is bound.Customer
descriptionOptionally provided, description of the Access Control Policy's intent.String
displayNameDeterministic naming scheme for Access Control Policy based on its resource typeString
idID of the Access Control Policy.ID
nameName of the Access Control Policy.String
resourceAccess Control Resource to which the Access Control Policy is bound.String
resourceTypeType designation for bound Access Control Resource.String
usersPaginated users with direct enablement by the Access Control Policy.UserConnection
\n

AccessControlPolicyEdge

\n

Access Control Policy and its relevant marker (cursor) within a paginated result.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeAccessControlPolicy
\n

AccessControlPolicyConnection

\n

Paginated result details for one or more Access Control Policies.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesAccessControlPolicyEdge
pageInfoPageInfo
totalCountInt
\n

AccessControlPolicyResponse

\n

Response wrapper for an Access Control Policy.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
policyAccessControlPolicy
successBoolean
\n

AccessControlPoliciesResponse

\n

Response wrapper for a list of Access Control Policies.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
policiesAccessControlPolicy
successBoolean
\n

CreateAccessControlPolicyInput

\n

Input to create an Access Control Policy.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsList of Access Group IDs to associate with an Access Control Policy.ID
customerId [DEPRECATED][DEPRECATED: No longer supported. Date 2025-06-05.] Customer identifier to which the Access Control Policy is bound.ID
descriptionOptionally provided, description of the Access Control Policy's intent.String
nameName of the Access Control Policy.String
resourceAccess Control Resource to which the Access Control Policy is bound.String
usersList of Access Control Policy User IDs.ID
\n

UpdateAccessControlPolicyInput

\n

Input to update an Access Control Policy.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsAccess Group IDs to be modified.UpdateAssociationInput
descriptionOptionally provided, description of the Access Control Policy's intent.String
idID for the target Access Control Policy.ID
nameName of the Access Control Policy.String
usersUser IDs to be modified.UpdateAssociationInput
\n

UpdateAccessControlPoliciesInput

\n

Input to update a bulk set of Access Control Policies.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessControlPolicyIdsAccess Control Policy IDs to be modified.ID
accessGroupsAccess Group IDs to be modified.UpdateAssociationInput
usersUser IDs to be modified.UpdateAssociationInput
\n

AccessControlPolicyOrder

\n

Order options for Access Control Policies

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByAccessControlPolicyOrderBy
\n

AccessControlPolicyFilter

\n

Filter options for Access Control Policies

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
nameWildcard search on name of Access Control PoliciesString
resourcesList of Access Control Policy Resource(s)String
\n

AccessControlPolicyFieldFilter

\n

Filter options for Access Control Policy field ids

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idsFilter by field idsID
\n

AccessControlPolicyOrderBy

\n

Access Control Policy applicable order fields

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NAME
RESOURCE
\n
","_postman_id":"81b71d05-7b06-4089-8ba9-ce7b5a17d47d","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"DRP Alerts","item":[{"name":"Mutations","item":[{"name":"addDrpAlertComment","id":"d9e85445-c104-4ffc-8df3-d448cbea2c6d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addDrpAlertComment ($input: DrpAlertCommentInput!) {\n addDrpAlertComment (input: $input) {\n comment {\n alert {\n active\n alertFingerprint\n classification\n closedSource\n createdAt\n domain\n hosts\n id\n migrated\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n thumbnailUri\n title\n updatedAt\n uri\n }\n comment\n createdAt\n id\n removedAt\n updatedAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlertBy\": {\n \"id\": \"\",\n \"shortCode\": \"\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Add a comment to a DRP Alert.

\n

Inputs: \nDrpAlertCommentInput,

\n

Return: \nAddDrpAlertCommentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"e0db98b2-e0fa-4529-b761-aa1b0696994b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addDrpAlertComment ($input: DrpAlertCommentInput!) {\n addDrpAlertComment (input: $input) {\n comment {\n alert {\n active\n alertFingerprint\n classification\n closedSource\n createdAt\n domain\n hosts\n id\n migrated\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n thumbnailUri\n title\n updatedAt\n uri\n }\n comment\n createdAt\n id\n removedAt\n updatedAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlertBy\": {\n \"id\": \"\",\n \"shortCode\": \"\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Add a comment to a DRP Alert.\n\nInputs: \nDrpAlertCommentInput, \n\nReturn: \nAddDrpAlertCommentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"addDrpAlertComment\": {\n \"comment\": {\n \"alert\": {\n \"active\": true,\n \"alertFingerprint\": \"\",\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n },\n \"comment\": \"\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"d9e85445-c104-4ffc-8df3-d448cbea2c6d"},{"name":"assignDRPAlert","id":"9a25cc50-594d-4055-b758-1880aab46664","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignDRPAlert ($input: DRPAlertAssignmentInput!) {\n assignDRPAlert (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"assignee\": \"\",\n \"comment\": \"\",\n \"shortCode\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Assign the specified DRP Alert to the provided assignee.

\n

Inputs: \nDRPAlertAssignmentInput,

\n

Return: \nDRPAlertAssignmentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"3ed1fd5f-2226-446a-9441-1a1f9e0118ed","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignDRPAlert ($input: DRPAlertAssignmentInput!) {\n assignDRPAlert (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"assignee\": \"\",\n \"comment\": \"\",\n \"shortCode\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Assign the specified DRP Alert to the provided assignee.\n\nInputs: \nDRPAlertAssignmentInput, \n\nReturn: \nDRPAlertAssignmentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"assignDRPAlert\": {\n \"success\": true,\n \"unsuccessfulDrpAlerts\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"9a25cc50-594d-4055-b758-1880aab46664"},{"name":"assignDRPAlerts","id":"280edd79-bfe6-4c50-b407-498dc25ea3a1","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignDRPAlerts ($input: DRPAlertBulkAssignmentInput!) {\n assignDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"assignee\": \"\",\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Assign all DRP Alerts for the provided filter to the provided assignee.

\n

Inputs: \nDRPAlertBulkAssignmentInput,

\n

Return: \nDRPAlertAssignmentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"05fa4c57-bf8a-4d92-9090-8e14e3576eb8","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignDRPAlerts ($input: DRPAlertBulkAssignmentInput!) {\n assignDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"assignee\": \"\",\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Assign all DRP Alerts for the provided filter to the provided assignee.\n\nInputs: \nDRPAlertBulkAssignmentInput, \n\nReturn: \nDRPAlertAssignmentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"assignDRPAlerts\": {\n \"success\": true,\n \"unsuccessfulDrpAlerts\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"280edd79-bfe6-4c50-b407-498dc25ea3a1"},{"name":"bulkAddDrpAlertComment","id":"2f83f998-2a3f-42fb-b6bd-7b0977746dde","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkAddDrpAlertComment ($input: DrpAlertBulkCommentInput!) {\n bulkAddDrpAlertComment (input: $input) {\n actioned\n ignored {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"bulkCommentBy\": {\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n },\n \"comment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Add a comment to DRP Alerts.

\n

Inputs: \nDrpAlertBulkCommentInput,

\n

Return: \nDrpAlertBulkResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1327130a-4584-4541-836e-c6f66462a2ac","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkAddDrpAlertComment ($input: DrpAlertBulkCommentInput!) {\n bulkAddDrpAlertComment (input: $input) {\n actioned\n ignored {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"bulkCommentBy\": {\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n },\n \"comment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Add a comment to DRP Alerts.\n\nInputs: \nDrpAlertBulkCommentInput, \n\nReturn: \nDrpAlertBulkResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"bulkAddDrpAlertComment\": {\n \"actioned\": 0,\n \"ignored\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ],\n \"success\": true\n }\n }\n}"}],"_postman_id":"2f83f998-2a3f-42fb-b6bd-7b0977746dde"},{"name":"bulkCloseDrpAlerts","id":"56bfe2a3-8b11-40ad-a63a-af49546ac5b9","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkCloseDrpAlerts ($input: BulkCloseDrpAlertsInput!) {\n bulkCloseDrpAlerts (input: $input) {\n failed {\n id\n shortCode\n }\n success\n updated {\n currentState {\n state\n }\n id\n shortCode\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlertIds\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Bulk close (set to RESOLVED state) multiple DRP alerts. Wraps the bulk-state endpoint with the resolved state baked in.

\n

Inputs: \nBulkCloseDrpAlertsInput,

\n

Return: \nDrpAlertBulkUpdateStateResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"42855fdb-b55a-4168-8d3d-9950ef796517","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkCloseDrpAlerts ($input: BulkCloseDrpAlertsInput!) {\n bulkCloseDrpAlerts (input: $input) {\n failed {\n id\n shortCode\n }\n success\n updated {\n currentState {\n state\n }\n id\n shortCode\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlertIds\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Bulk close (set to RESOLVED state) multiple DRP alerts. Wraps the bulk-state endpoint with the resolved state baked in.\n\nInputs: \nBulkCloseDrpAlertsInput, \n\nReturn: \nDrpAlertBulkUpdateStateResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"bulkCloseDrpAlerts\": {\n \"failed\": [\n {\n \"id\": \"\",\n \"shortCode\": \"\"\n }\n ],\n \"success\": true,\n \"updated\": [\n {\n \"currentState\": {\n \"state\": \"IN_PROGRESS\"\n },\n \"id\": \"\",\n \"shortCode\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"56bfe2a3-8b11-40ad-a63a-af49546ac5b9"},{"name":"bulkUpdateDrpAlertState","id":"ea938e28-f9b3-4a35-84ad-e619a3fedbc8","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkUpdateDrpAlertState ($input: BulkUpdateDrpAlertStateInput!) {\n bulkUpdateDrpAlertState (input: $input) {\n failed {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n success\n updated {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n },\n \"state\": \"IN_PROGRESS\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update the state of the several DRP alerts corresponding to the given external IDs

\n

Inputs: \nBulkUpdateDrpAlertStateInput,

\n

Return: \nDrpAlertBulkUpdateStateResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"fe820602-226c-4ca2-9df8-d226ecc9c3b0","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkUpdateDrpAlertState ($input: BulkUpdateDrpAlertStateInput!) {\n bulkUpdateDrpAlertState (input: $input) {\n failed {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n success\n updated {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n },\n \"state\": \"IN_PROGRESS\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update the state of the several DRP alerts corresponding to the given external IDs\n\nInputs: \nBulkUpdateDrpAlertStateInput, \n\nReturn: \nDrpAlertBulkUpdateStateResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"bulkUpdateDrpAlertState\": {\n \"failed\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ],\n \"success\": true,\n \"updated\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"ea938e28-f9b3-4a35-84ad-e619a3fedbc8"},{"name":"deleteDrpAlertComment","id":"52a9cc4d-134a-47bd-9488-0cacb24ea5b7","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteDrpAlertComment ($input: DrpAlertDeleteCommentInput!) {\n deleteDrpAlertComment (input: $input) {\n success\n }\n}","variables":"{\n \"input\": {\n \"drpAlertComment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete a comment from a DRP Alert.

\n

Inputs: \nDrpAlertDeleteCommentInput,

\n

Return: \nDrpAlertCommentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7a045fe6-6a46-4051-8853-1e5c9c87d170","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteDrpAlertComment ($input: DrpAlertDeleteCommentInput!) {\n deleteDrpAlertComment (input: $input) {\n success\n }\n}","variables":"{\n \"input\": {\n \"drpAlertComment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete a comment from a DRP Alert.\n\nInputs: \nDrpAlertDeleteCommentInput, \n\nReturn: \nDrpAlertCommentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteDrpAlertComment\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"52a9cc4d-134a-47bd-9488-0cacb24ea5b7"},{"name":"unWatchDRPAlert","id":"93bf5e45-618a-44fc-a1ab-b533084c3e98","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unWatchDRPAlert ($shortCode: String!) {\n unWatchDRPAlert (shortCode: $shortCode) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"shortCode\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Unwatch DRP Alert for the provided short code.

\n

Inputs: \nString,

\n

Return: \nDRPAlertWatchResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7c45ae57-cba2-457f-b83e-32b9743f7d53","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unWatchDRPAlert ($shortCode: String!) {\n unWatchDRPAlert (shortCode: $shortCode) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"shortCode\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Unwatch DRP Alert for the provided short code.\n\nInputs: \nString, \n\nReturn: \nDRPAlertWatchResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"unWatchDRPAlert\": {\n \"success\": true,\n \"unsuccessfulDrpAlerts\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"93bf5e45-618a-44fc-a1ab-b533084c3e98"},{"name":"unWatchDRPAlerts","id":"951df643-dd69-4186-ad97-cdb3228db428","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unWatchDRPAlerts ($input: DRPAlertBulkUnwatchInput!) {\n unWatchDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Unwatch all DRP Alerts with the provided filter.

\n

Inputs: \nDRPAlertBulkUnwatchInput,

\n

Return: \nDRPAlertWatchResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"77ddba56-896b-4459-b36e-647cb8451c56","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unWatchDRPAlerts ($input: DRPAlertBulkUnwatchInput!) {\n unWatchDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Unwatch all DRP Alerts with the provided filter.\n\nInputs: \nDRPAlertBulkUnwatchInput, \n\nReturn: \nDRPAlertWatchResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"unWatchDRPAlerts\": {\n \"success\": true,\n \"unsuccessfulDrpAlerts\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"951df643-dd69-4186-ad97-cdb3228db428"},{"name":"unassignDRPAlert","id":"eff880a4-5020-4b69-82a3-4b2f794fc729","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unassignDRPAlert ($input: DRPAlertUnassignmentInput!) {\n unassignDRPAlert (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"shortCode\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Unassign the specified DRP Alert.

\n

Inputs: \nDRPAlertUnassignmentInput,

\n

Return: \nDRPAlertAssignmentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"f10f68f7-2bb2-444c-9f04-a81bd391c070","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unassignDRPAlert ($input: DRPAlertUnassignmentInput!) {\n unassignDRPAlert (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"shortCode\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Unassign the specified DRP Alert.\n\nInputs: \nDRPAlertUnassignmentInput, \n\nReturn: \nDRPAlertAssignmentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"unassignDRPAlert\": {\n \"success\": true,\n \"unsuccessfulDrpAlerts\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"eff880a4-5020-4b69-82a3-4b2f794fc729"},{"name":"unassignDRPAlerts","id":"d0a3c074-44a4-4189-974f-816f7214089e","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unassignDRPAlerts ($input: DRPAlertBulkUnassignmentInput!) {\n unassignDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Unassign all DRP Alerts for the provided filter.

\n

Inputs: \nDRPAlertBulkUnassignmentInput,

\n

Return: \nDRPAlertAssignmentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d3dde017-ab8d-4fdc-98af-bc1f3efd1f1d","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unassignDRPAlerts ($input: DRPAlertBulkUnassignmentInput!) {\n unassignDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Unassign all DRP Alerts for the provided filter.\n\nInputs: \nDRPAlertBulkUnassignmentInput, \n\nReturn: \nDRPAlertAssignmentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"unassignDRPAlerts\": {\n \"success\": true,\n \"unsuccessfulDrpAlerts\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"d0a3c074-44a4-4189-974f-816f7214089e"},{"name":"updateDrpAlertComment","id":"68f89d81-e921-4cb6-9de7-4ce861665eae","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateDrpAlertComment ($input: DrpAlertUpdateCommentInput!) {\n updateDrpAlertComment (input: $input) {\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlertComment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Edit a comment on a DRP Alert.

\n

Inputs: \nDrpAlertUpdateCommentInput,

\n

Return: \nDrpAlertCommentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"b4f57257-0c37-459c-b962-8c291a79023c","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateDrpAlertComment ($input: DrpAlertUpdateCommentInput!) {\n updateDrpAlertComment (input: $input) {\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlertComment\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Edit a comment on a DRP Alert.\n\nInputs: \nDrpAlertUpdateCommentInput, \n\nReturn: \nDrpAlertCommentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateDrpAlertComment\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"68f89d81-e921-4cb6-9de7-4ce861665eae"},{"name":"updateDrpAlertState","id":"5c780465-abe9-4dfe-a631-8693e77e7440","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateDrpAlertState ($input: UpdateDrpAlertStateInput!) {\n updateDrpAlertState (input: $input) {\n drpAlert {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlert\": \"\",\n \"state\": \"IN_PROGRESS\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update the state of the corresponding DRP Alert of given external ID

\n

Inputs: \nUpdateDrpAlertStateInput,

\n

Return: \nDRPAlertResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"c0753847-b029-42fa-b25c-6bf7114a6b00","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateDrpAlertState ($input: UpdateDrpAlertStateInput!) {\n updateDrpAlertState (input: $input) {\n drpAlert {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"drpAlert\": \"\",\n \"state\": \"IN_PROGRESS\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update the state of the corresponding DRP Alert of given external ID\n\nInputs: \nUpdateDrpAlertStateInput, \n\nReturn: \nDRPAlertResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateDrpAlertState\": {\n \"drpAlert\": {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"5c780465-abe9-4dfe-a631-8693e77e7440"},{"name":"watchDRPAlert","id":"abd967e2-f94e-41a9-b935-42249203cede","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation watchDRPAlert ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $shortCode: String!) {\n watchDRPAlert (shortCode: $shortCode) {\n alert {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n id\n success\n timestamp\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"shortCode\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Watch DRP Alert for the provided short code with the provided watcher.

\n

Inputs: \nString,

\n

Return: \nDRPAlertWatchDetailResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"0241c989-7fa6-4064-9d3c-598d23398e07","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation watchDRPAlert ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $shortCode: String!) {\n watchDRPAlert (shortCode: $shortCode) {\n alert {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n id\n success\n timestamp\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"shortCode\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Watch DRP Alert for the provided short code with the provided watcher.\n\nInputs: \nString, \n\nReturn: \nDRPAlertWatchDetailResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"watchDRPAlert\": {\n \"alert\": {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n },\n \"id\": \"\",\n \"success\": true,\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"abd967e2-f94e-41a9-b935-42249203cede"},{"name":"watchDRPAlerts","id":"c85d697c-203b-48c8-bda8-0e4d934592c1","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation watchDRPAlerts ($input: DRPAlertBulkWatchInput!) {\n watchDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Watch all DRP Alerts for the provided filter with the provided watcher.

\n

Inputs: \nDRPAlertBulkWatchInput,

\n

Return: \nDRPAlertWatchResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"fdcbbf77-7e19-4797-8e10-a93fe28d945d","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation watchDRPAlerts ($input: DRPAlertBulkWatchInput!) {\n watchDRPAlerts (input: $input) {\n success\n unsuccessfulDrpAlerts {\n active\n activityLogItems {\n actionKey\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n created\n deleted\n id\n modified\n pending\n serialId\n status\n type\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n timestamp\n version\n }\n currentFlag {\n timestamp\n }\n currentState {\n state\n timestamp\n version\n }\n currentWatcher {\n timestamp\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n domain\n hosts\n id\n migrated\n originator {\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n}","variables":"{\n \"input\": {\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Watch all DRP Alerts for the provided filter with the provided watcher.\n\nInputs: \nDRPAlertBulkWatchInput, \n\nReturn: \nDRPAlertWatchResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"watchDRPAlerts\": {\n \"success\": true,\n \"unsuccessfulDrpAlerts\": [\n {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"pending\": true,\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\"\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"currentState\": {\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n ]\n }\n }\n}"}],"_postman_id":"c85d697c-203b-48c8-bda8-0e4d934592c1"}],"id":"01717e2c-167b-4171-9e88-1bf3899c308b","_postman_id":"01717e2c-167b-4171-9e88-1bf3899c308b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"drpAlert","id":"3f9ecd58-b21b-4f2a-b432-684dec5dbf11","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query drpAlert ($after: String, $first: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after1: String, $first1: Int, $by: DRPAlertBy) {\n drpAlert (by: $by) {\n active\n activityLogItems {\n actionKey\n actor {\n email\n fullName\n id\n serviceNowId\n }\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n cost {\n current\n maximum\n }\n created\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n criticality {\n current\n maximum\n }\n deleted\n id\n labels {\n value\n }\n modified\n modifiedBy {\n email\n fullName\n id\n serviceNowId\n }\n pending\n sensitivity {\n current\n maximum\n }\n serialId\n status\n type\n value {\n appName\n appUrl\n associatedPii\n b2bServices\n b2cServices\n clientServices\n codeIdentifier\n criticalAsset\n developerName\n displayValue\n domain\n employeeServices\n format\n hashAlgorithm\n hashtag\n hostingPii\n identifier\n internalOnly\n key\n keyword\n logoUrl\n marking\n name\n number\n packageName\n platform\n primaryTrading\n profile\n recruitmentUse\n revenueGeneration\n sector\n sensitiveInformationAccess\n sensitiveInternal\n sharedPublic\n sharedTrusted\n testEnvironmentAccess\n testingEnvironment\n thirdPartyAccess\n thirdPartyInfrastructure\n type\n uri\n }\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n comment {\n comment\n createdAt\n id\n removedAt\n updatedAt\n }\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n version\n }\n currentFlag {\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n currentState {\n comment {\n comment\n createdAt\n id\n removedAt\n updatedAt\n }\n state\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n version\n }\n currentWatcher {\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n customer {\n accessControlPolicies (after: $after, first: $first) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after1, first: $first1) {\n totalCount\n }\n }\n domain\n hosts\n id\n migrated\n originator {\n alert {\n alertType\n createdAt\n deletedAssets\n raisedAt\n riskFunctionId\n shortCode\n supersededBy\n }\n incident {\n alerted\n closedSource\n description\n id\n impactDescription\n internal\n modified\n occurred\n published\n restrictedContent\n riskType\n scope\n score\n severity\n takedownRequestCount\n title\n type\n verified\n version\n }\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"by\": {\n \"id\": \"\",\n \"shortCode\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch DRP Alert by id or short code.

\n

Inputs: \nDRPAlertBy,

\n

Return: \nDRPAlert

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"412d1e13-0434-42c9-a8dd-efb6747b9f77","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query drpAlert ($after: String, $first: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after1: String, $first1: Int, $by: DRPAlertBy) {\n drpAlert (by: $by) {\n active\n activityLogItems {\n actionKey\n actor {\n email\n fullName\n id\n serviceNowId\n }\n clientId\n created\n payload\n permissions\n scope\n }\n alertFingerprint\n assetMatches {\n approvalState\n archivedState\n clientId\n cost {\n current\n maximum\n }\n created\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n criticality {\n current\n maximum\n }\n deleted\n id\n labels {\n value\n }\n modified\n modifiedBy {\n email\n fullName\n id\n serviceNowId\n }\n pending\n sensitivity {\n current\n maximum\n }\n serialId\n status\n type\n value {\n appName\n appUrl\n associatedPii\n b2bServices\n b2cServices\n clientServices\n codeIdentifier\n criticalAsset\n developerName\n displayValue\n domain\n employeeServices\n format\n hashAlgorithm\n hashtag\n hostingPii\n identifier\n internalOnly\n key\n keyword\n logoUrl\n marking\n name\n number\n packageName\n platform\n primaryTrading\n profile\n recruitmentUse\n revenueGeneration\n sector\n sensitiveInformationAccess\n sensitiveInternal\n sharedPublic\n sharedTrusted\n testEnvironmentAccess\n testingEnvironment\n thirdPartyAccess\n thirdPartyInfrastructure\n type\n uri\n }\n }\n classification\n closedSource\n createdAt\n currentAssignment {\n comment {\n comment\n createdAt\n id\n removedAt\n updatedAt\n }\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n version\n }\n currentFlag {\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n currentState {\n comment {\n comment\n createdAt\n id\n removedAt\n updatedAt\n }\n state\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n version\n }\n currentWatcher {\n timestamp\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n customer {\n accessControlPolicies (after: $after, first: $first) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after1, first: $first1) {\n totalCount\n }\n }\n domain\n hosts\n id\n migrated\n originator {\n alert {\n alertType\n createdAt\n deletedAssets\n raisedAt\n riskFunctionId\n shortCode\n supersededBy\n }\n incident {\n alerted\n closedSource\n description\n id\n impactDescription\n internal\n modified\n occurred\n published\n restrictedContent\n riskType\n scope\n score\n severity\n takedownRequestCount\n title\n type\n verified\n version\n }\n originatorType\n }\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n takedown {\n id\n state\n }\n thumbnailUri\n title\n updatedAt\n uri\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"by\": {\n \"id\": \"\",\n \"shortCode\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":" Fetch DRP Alert by id or short code. \n\nInputs: \nDRPAlertBy, \n\nReturn: \nDRPAlert\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"drpAlert\": {\n \"active\": true,\n \"activityLogItems\": [\n {\n \"actionKey\": \"\",\n \"actor\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"clientId\": \"\",\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"payload\": \"\",\n \"permissions\": [\n \"\"\n ],\n \"scope\": [\n \"\"\n ]\n }\n ],\n \"alertFingerprint\": \"\",\n \"assetMatches\": [\n {\n \"approvalState\": \"ACCEPTED\",\n \"archivedState\": true,\n \"clientId\": \"\",\n \"cost\": {\n \"current\": 0,\n \"maximum\": 0\n },\n \"created\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"criticality\": {\n \"current\": 0,\n \"maximum\": 0\n },\n \"deleted\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"labels\": [\n {\n \"value\": \"\"\n }\n ],\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"modifiedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"pending\": true,\n \"sensitivity\": {\n \"current\": 0,\n \"maximum\": 0\n },\n \"serialId\": \"\",\n \"status\": \"\",\n \"type\": \"\",\n \"value\": {\n \"appName\": \"\",\n \"appUrl\": \"\",\n \"associatedPii\": true,\n \"b2bServices\": true,\n \"b2cServices\": true,\n \"clientServices\": true,\n \"codeIdentifier\": \"\",\n \"criticalAsset\": true,\n \"developerName\": \"\",\n \"displayValue\": \"\",\n \"domain\": \"\",\n \"employeeServices\": true,\n \"format\": \"\",\n \"hashAlgorithm\": \"\",\n \"hashtag\": \"\",\n \"hostingPii\": true,\n \"identifier\": \"\",\n \"internalOnly\": true,\n \"key\": \"\",\n \"keyword\": \"\",\n \"logoUrl\": \"\",\n \"marking\": \"\",\n \"name\": \"\",\n \"number\": \"\",\n \"packageName\": \"\",\n \"platform\": \"\",\n \"primaryTrading\": true,\n \"profile\": \"\",\n \"recruitmentUse\": true,\n \"revenueGeneration\": true,\n \"sector\": \"\",\n \"sensitiveInformationAccess\": true,\n \"sensitiveInternal\": true,\n \"sharedPublic\": true,\n \"sharedTrusted\": true,\n \"testEnvironmentAccess\": true,\n \"testingEnvironment\": true,\n \"thirdPartyAccess\": true,\n \"thirdPartyInfrastructure\": true,\n \"type\": \"\",\n \"uri\": \"\"\n }\n }\n ],\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"currentAssignment\": {\n \"comment\": {\n \"comment\": \"\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"version\": 0\n },\n \"currentFlag\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"currentState\": {\n \"comment\": {\n \"comment\": \"\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"state\": \"IN_PROGRESS\",\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"version\": 0\n },\n \"currentWatcher\": {\n \"timestamp\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"originator\": {\n \"alert\": {\n \"alertType\": \"\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"deletedAssets\": 0,\n \"raisedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFunctionId\": \"\",\n \"shortCode\": \"\",\n \"supersededBy\": \"\"\n },\n \"incident\": {\n \"alerted\": \"2026-08-01T00:00:00.000Z\",\n \"closedSource\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"impactDescription\": \"\",\n \"internal\": true,\n \"modified\": \"2026-08-01T00:00:00.000Z\",\n \"occurred\": \"2026-08-01T00:00:00.000Z\",\n \"published\": \"2026-08-01T00:00:00.000Z\",\n \"restrictedContent\": true,\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"scope\": \"\",\n \"score\": 0,\n \"severity\": \"\",\n \"takedownRequestCount\": 0,\n \"title\": \"\",\n \"type\": \"\",\n \"verified\": \"2026-08-01T00:00:00.000Z\",\n \"version\": 0\n },\n \"originatorType\": \"ALERT\"\n },\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"takedown\": {\n \"id\": \"\",\n \"state\": \"AVAILABLE\"\n },\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n }\n}"}],"_postman_id":"3f9ecd58-b21b-4f2a-b432-684dec5dbf11"},{"name":"drpAlerts","id":"af42082c-3ca1-44de-ada6-abebce76b29c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query drpAlerts ($after: String, $filter: DrpReportTriageItemViewFilterInput, $first: Int, $orderBy: DRPAlertOrder) {\n drpAlerts (after: $after, filter: $filter, first: $first, orderBy: $orderBy) {\n edges {\n cursor\n node {\n active\n alertFingerprint\n classification\n closedSource\n createdAt\n domain\n hosts\n id\n migrated\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n },\n \"first\": 10,\n \"orderBy\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all DRP Alerts which match the filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, DrpReportTriageItemViewFilterInput, Int, DRPAlertOrder,

\n

Return: \nDRPAlertConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"34f0d14e-1a4e-4a48-a84f-ca9e59e4f996","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query drpAlerts ($after: String, $filter: DrpReportTriageItemViewFilterInput, $first: Int, $orderBy: DRPAlertOrder) {\n drpAlerts (after: $after, filter: $filter, first: $first, orderBy: $orderBy) {\n edges {\n cursor\n node {\n active\n alertFingerprint\n classification\n closedSource\n createdAt\n domain\n hosts\n id\n migrated\n rejectedByRuleIds\n removedAt\n riskFactorKeys\n riskType\n severity\n shortCode\n sourceGroup\n sourceRef\n sourceUpdated\n sourceUris\n subTitle\n thumbnailUri\n title\n updatedAt\n uri\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"active\": true,\n \"alertExternalIds\": [\n \"\"\n ],\n \"alertFingerprints\": [\n \"\"\n ],\n \"assetLabelIds\": [\n \"\"\n ],\n \"assetSerialIds\": [\n \"\"\n ],\n \"assetTypes\": [\n \"ACCESS_KEY\"\n ],\n \"assignees\": {\n \"assignees\": [\n \"\"\n ],\n \"includeUnassigned\": true\n },\n \"changed\": \"\",\n \"classificationsAndRiskFactors\": {\n \"classification\": \"\",\n \"riskFactorKeys\": [\n \"\"\n ]\n },\n \"clients\": [\n \"\"\n ],\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"deleted\": true,\n \"domain\": \"\",\n \"externalIds\": [\n \"\"\n ],\n \"flagged\": true,\n \"hosts\": [\n \"\"\n ],\n \"idGreaterThan\": 0,\n \"migrated\": true,\n \"raised\": \"\",\n \"rejectedByRuleSerialId\": \"\",\n \"riskSizes\": [\n \"HIGH\"\n ],\n \"riskTypesAndRiskFactors\": {\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\"\n },\n \"shortCodes\": [\n \"\"\n ],\n \"singleRuleRejection\": true,\n \"sourceGroups\": [\n \"\"\n ],\n \"sourceRefs\": [\n \"\"\n ],\n \"sourceUris\": [\n \"\"\n ],\n \"statuses\": [\n \"\"\n ],\n \"superseded\": true,\n \"systemAction\": true,\n \"takedownRequested\": true,\n \"takedownStatuses\": [\n \"AVAILABLE\"\n ],\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"watched\": true\n },\n \"first\": 10,\n \"orderBy\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all DRP Alerts which match the filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, DrpReportTriageItemViewFilterInput, Int, DRPAlertOrder, \n\nReturn: \nDRPAlertConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"drpAlerts\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"active\": true,\n \"alertFingerprint\": \"\",\n \"classification\": \"\",\n \"closedSource\": true,\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"domain\": \"\",\n \"hosts\": [\n \"\"\n ],\n \"id\": \"\",\n \"migrated\": true,\n \"rejectedByRuleIds\": [\n \"\"\n ],\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"riskFactorKeys\": [\n \"\"\n ],\n \"riskType\": \"ASSOCIATION_WITH_MALWARE\",\n \"severity\": \"CRITICAL\",\n \"shortCode\": \"\",\n \"sourceGroup\": \"\",\n \"sourceRef\": \"\",\n \"sourceUpdated\": \"2026-08-01T00:00:00.000Z\",\n \"sourceUris\": [\n \"\"\n ],\n \"subTitle\": \"\",\n \"thumbnailUri\": \"\",\n \"title\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"uri\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"af42082c-3ca1-44de-ada6-abebce76b29c"}],"id":"e5181a7e-683c-44f8-b4e6-351daaa5d3af","_postman_id":"e5181a7e-683c-44f8-b4e6-351daaa5d3af","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"7146ce5a-ecab-49b7-a703-57e7895eb8ce","description":"

AddDrpAlertCommentResponse

\n

DrpAlertCommentResponse schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentActioned comment.DRPAlertComment
successIndicates whether the operation was successful.Boolean
\n

ApprovalState

\n

Possible approval states for an asset.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACCEPTED
CLARIFICATION
PENDING
REJECTED
UNRECOGNIZED
\n

BulkCloseDrpAlertsInput

\n

DRP Bulk Close Alerts Input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentOptional comment to apply to all alert closures.String
drpAlertIdsIDs of the DRP alerts to close. Maximum 100 IDs per request. (Required)ID
\n

BulkUpdateDrpAlertStateInput

\n

DRP Bulk Update Alert State Input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentString
filterDrpReportTriageItemViewFilterInput
stateDRPAlertState
\n

ChatFileType

\n

The type of a chat media file

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
IMAGE
OTHER
UNKNOWN_DEFAULT_OPEN_API
VIDEO
\n

DRPAccessControl

\n

DRP Access Control

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessibilityExtractableBoolean
annotationModifiableBoolean
assembleDocumentBoolean
contentExtractableBoolean
degradedPrintableBoolean
formEnabledBoolean
modifiableBoolean
printableBoolean
\n

DRPActivityLogItem

\n

DRP Activity Log Item.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionKeyString
actorUser
clientIdString
createdDateTime
payloadDRPActivityLogItemPayload
permissionsString
scopeString
\n

DRPAlert

\n

DRP Alert schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activeBoolean
activityLogItemsDRPActivityLogItem
alertFingerprintString
assetMatchesDRPAsset
classificationString
closedSourceBoolean
createdAtDateTime
currentAssignmentDRPAlertAssignment
currentFlagDRPAlertFlag
currentStateDRPAlertStateData
currentWatcherDRPAlertWatcher
customerCustomer
domainString
hostsString
idID
migratedBoolean
originatorDRPOriginator
rejectedByRuleIdsString
removedAtDateTime
riskFactorKeysString
riskTypeDRPRiskType
severityDRPAlertSeverity
shortCodeString
sourceGroupString
sourceRefString
sourceUpdatedDateTime
sourceUrisString
subTitleString
takedownTakedown
thumbnailUriString
titleString
updatedAtDateTime
uriString
\n

DRPAlertAssignment

\n

DRP Alert Assignment schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentDRPAlertComment
timestampDateTime
userUser
versionInt
\n

DRPAlertAssignmentInput

\n

Input type for assigning DRP Alerts.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeThe id of the user whose assignment is being updatedID
commentThe comment added to the assignmentString
shortCodeShort Code for the DRP Alert short code to be assignedString
\n

DRPAlertAssignmentResponse

\n

The DRPAlertAssignmentResponse type is used to return the result of a drp alert-related operation.

\n

Fields:

\n
    \n
  • success: Indicates whether the operation was successful.
  • \n
  • unsuccessfulDrpAlerts: Provides details of the DRP alerts modified
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    FieldDescriptionType
    successIndicates whether the operation was successful.Boolean
    unsuccessfulDrpAlertsProvides details of the DRP alerts that were modified unsuccessfully.DRPAlert
    \n
  • \n
\n

DRPAlertBulkAssignmentInput

\n

Input type for assigning DRP Alerts.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeThe id of the user whose assignment is being updatedID
commentThe comment added to the assignmentString
filterFilter to specify which DRP Alerts are a part of the assignmentDrpReportTriageItemViewFilterInput
\n

DrpAlertBulkCommentBy

\n

DrpAlertBulkCommentInputBy schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
filterDrpReportTriageItemViewFilterInput
\n

DrpAlertBulkCommentInput

\n

DrpAlertBulkCommentInput schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
bulkCommentByDrpAlertBulkCommentBy
commentString
\n

DrpAlertBulkResponse

\n

DrpAlertBulkResponse schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionedCount of successfully actioned items.Int
ignoredIgnored items.DRPAlert
successIndicates whether the operation was successful.Boolean
\n

DRPAlertBulkUnassignmentInput

\n

Input type for unassigning DRP Alerts.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentThe comment added to the unassignmentString
filterFilter to specify which DRP Alerts are a part of the unassignmentDrpReportTriageItemViewFilterInput
\n

DRPAlertBulkUnwatchInput

\n

Input type for unwatching DRP Alerts.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentThe comment added to the unwatchString
filterFilter to specify which DRP Alerts are a part of the unwatchDrpReportTriageItemViewFilterInput
\n

DrpAlertBulkUpdateStateResponse

\n

DRP Bulk Update Alert Response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
failedDRPAlert
successBoolean
updatedDRPAlert
\n

DRPAlertBulkWatchInput

\n

Input type for watching DRP Alerts.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
filterFilter to specify which DRP Alerts are a part of the watchDrpReportTriageItemViewFilterInput
\n

DRPAlertBy

\n

Input type to get a DRP Alert by either by id or short code.\nOnly one field should be provided to fetch the DRP Alert.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
shortCodeString
\n

DRPAlertComment

\n

DRP Alert Comment schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
alertDRPAlert
commentString
createdAtDateTime
idID
removedAtDateTime
updatedAtDateTime
userUser
\n

DrpAlertCommentInput

\n

DrpAlertCommentInput schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentString
drpAlertByDRPAlertBy
\n

DrpAlertCommentResponse

\n

DrpAlertResponse schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successIndicates whether the operation was successful.Boolean
\n

DRPAlertConnection

\n

DRP Alert Connection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesDRPAlertEdge
pageInfoPageInfo
totalCountInt
\n

DrpAlertDeleteCommentInput

\n

DrpAlertDeleteCommentInput schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
drpAlertCommentID
\n

DRPAlertEdge

\n

DRP Alert Edge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeDRPAlert
\n

DRPAlertFlag

\n

DRP Alert Flag schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
timestampDateTime
userUser
\n

DRPAlertOrder

\n

DRP Alert OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByDRPAlertOrderBy
\n

DRPAlertOrderBy

\n

Order by ENUM for DRP Alerts.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
STATE
\n

DRPAlertResponse

\n

DRP Alert Response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
drpAlertDRPAlert
successBoolean
\n

DRPAlertSeverity

\n

Severity ENUM for DRP Alert.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
INFORMATIONAL
LOW
MEDIUM
UNKNOWN
\n

DRPAlertState

\n

DRP Alert State ENUM.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
IN_PROGRESS
NEW
REJECTED
RESOLVED
UNKNOWN
\n

DRPAlertStateData

\n

DRP Alert State Data schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentDRPAlertComment
stateDRPAlertState
timestampDateTime
userUser
versionInt
\n

DRPAlertUnassignmentInput

\n

Input type for unassigning DRP Alerts.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentThe comment added to the unassignmentString
shortCodeShort Code for the DRP Alert short code to be unassignedString
\n

DrpAlertUpdateCommentInput

\n

DrpAlertEditCommentInput schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentString
drpAlertCommentID
\n

DRPAlertWatchDetailResponse

\n

The DRPAlertWatchDetailResponse type is used to return the result of a drp alert-related operation.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
alertThe DRP Alert that was watched.DRPAlert
idThe DRP Alert watch.String
successIndicates whether the operation was successful.Boolean
timestampWhen the DRP Alert was watched.DateTime
userWho watched the DRP Alert.User
\n

DRPAlertWatcher

\n

DRP Alert Watcher schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
timestampDateTime
userUser
\n

DRPAlertWatchResponse

\n

The DRPAlertWatchResponse type is used to return the result of a drp alert-related operation.

\n

Fields:

\n
    \n
  • success: Indicates whether the operation was successful.
  • \n
  • unsuccessfulDrpAlerts: Provides details of the DRP alerts modified
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    FieldDescriptionType
    successIndicates whether the operation was successful.Boolean
    unsuccessfulDrpAlertsProvides details of the DRP alerts that were modified unsuccessfully.DRPAlert
    \n
  • \n
\n

DRPAsset

\n

DRP Asset schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
approvalStateApprovalState
archivedStateBoolean
clientIdString
costDrpReportCustomTriageTableWidgetDataRiskAttribute
createdDateTime
createdByUser
criticalityDrpReportCustomTriageTableWidgetDataRiskAttribute
deletedDateTime
idID
labelsDrpReportCustomTriageTableWidgetDataLabels
modifiedDateTime
modifiedByUser
pendingBoolean
sensitivityDrpReportCustomTriageTableWidgetDataRiskAttribute
serialIdID
statusString
typeString
valueDRPAssetValue
\n

DRPAssetColor

\n

RGB color representation.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
blueInt
greenInt
redInt
\n

DRPAssetNetRange

\n

IP/network range details.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
isIPv4Boolean
lowerInt
lowerAddressString
maskBitsInt
upperInt
upperAddressString
\n

DRPAssetS3Resource

\n

S3 resource metadata for an asset.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fileNameString
idString
s3UriString
\n

DRPAssetValue

\n

Nested value details for a DRPAsset.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
appNameString
appUrlString
associatedPiiBoolean
b2bServicesBoolean
b2cServicesBoolean
clientServicesBoolean
codeIdentifierString
colorPaletteDRPAssetColor
criticalAssetBoolean
developerNameString
displayValueString
domainString
employeeServicesBoolean
formatString
hashAlgorithmString
hashtagString
hostingPiiBoolean
identifierString
internalOnlyBoolean
keyString
keywordString
logoUrlString
logosDRPAssetS3Resource
markingString
nameString
numberString
packageNameString
platformString
primaryTradingBoolean
profileString
rangeDRPAssetNetRange
recruitmentUseBoolean
revenueGenerationBoolean
sectorString
sensitiveInformationAccessBoolean
sensitiveInternalBoolean
sharedPublicBoolean
sharedTrustedBoolean
testEnvironmentAccessBoolean
testingEnvironmentBoolean
thirdPartyAccessBoolean
thirdPartyInfrastructureBoolean
typeString
uriString
\n

DRPAssetWeightedRiskScore

\n

DRP Asset Weighted Risk Score

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
costFloat
criticalityFloat
sensitivityFloat
weightedScoreFloat
\n

DRPAssociatedUrl

\n

DRP Associated Url

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
reportedString
urlString
\n

DRPCommitDetails

\n

DRP Commit Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
authorDRPCommitUser
commitDateTimeString
committerDRPCommitUser
messageString
repositoryDRPRepository
shaString
totalFilesInt
urlString
\n

DRPCommitUser

\n

DRP Commit User

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
emailString
typeString
userDetailsDRPCommitUserDetails
usernameString
\n

DRPCommitUserDetails

\n

DRP Commit User Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
avatarUrlString
bioString
companyString
createdString
followersInt
followingInt
fullNameString
hostingProviderUrlString
locationString
privateReposInt
typeString
updatedString
\n

DRPContentDetails

\n

DRP Content Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
categoryString
commentsString
contentStatusString
descriptionString
encryptedBoolean
keywordsString
mimeTypeString
originalLocationString
protectedContentString
revisionNumberString
subjectString
titleString
trappedBoolean
\n

DRPContentHashes

\n

DRP Content Hashes

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
md5String
sha1String
sha256String
\n

DRPCredential

\n

DRP Credential

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
closedSourceBoolean
darkWebBoolean
detectionSourceSummaryDRPDetectionSourceSummary
emailString
firstDetectionDRPDetectionDetails
latestDetectionDRPDetectionDetails
latestMalwareDetectionDRPDetectionDetails
passwordString
passwordTypeString
\n

DRPCredentialExposureData

\n

DRP Credential Exposure Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
credentialDRPCredential
credentialValidationDRPCredentialValidation
riskTypeDRPRiskType
\n

DRPCredentialValidation

\n

DRP Credential Validation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
azureResponseDRPValidationResponse
emailFileResponseDRPValidationResponse
emailFormatStateString
oktaResponseDRPValidationResponse
passwordFormatStateString
\n

DRPDetectionDetails

\n

DRP Detection Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
clientIncidentIdString
collectedString
createdString
fromMalwareStealerLogBoolean
headerTextString
idString
inProgressBoolean
malwareStealerHeaderString
rowTextString
sourceHostString
sourceUriString
titleString
totalUniqueDomainsInt
totalUniqueEmailsInt
\n

DRPDetectionSourceSummary

\n

DRP Detection Source Summary

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
countInt
sourceString
\n

DRPDnsResourceRecord

\n

DRP Dns Resource Record

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
dnsRecordTypeInt
rdataString
\n

DRPDomainContent

\n

DRP Domain Content

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
collectedString
erroredBoolean
htmlContentUriString
presentBoolean
screenshotUriString
\n

DRPEntitySummary

\n

DRP Entity Summary

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
affectedDomainsString
associatedDomainNamesString
certificateDRPEntitySummaryX509CertificateRecord
certificateInspectionDRPEntitySummaryCertificateInspection
contentRemovedBoolean
contentReplacedBoolean
conversationFragmentDRPEntitySummaryConversationFragment
conversationFragmentMessagesDRPEntitySummaryChatMessage
detailsDRPEntitySummaryIpAddressDetails
dnsZoneDRPEntitySummaryDnsZone
domainString
knownIssuesDRPEntitySummarySecureSocketsKnownIssueSpec
marketplaceListingDRPEntitySummaryMarketplaceListing
originalDomainsString
portsDRPEntitySummaryIpPortInspection
postSnapshotDRPEntitySummaryForumPostSnapshot
primaryDRPEntitySummaryMobileAppPrimary
primaryMessageDRPEntitySummaryChatMessage
redirectsToString
screenshotDrpReportLargeImageRef
screenshotIdString
screenshotThumbnailIdString
secureSocketInspectionDRPEntitySummarySecureSocketInspection
secureSocketInspectionsDRPEntitySummarySecureSocketInspectionPrimaryPage
sourceString
sourceDateDateTime
summaryTextString
tweetDRPEntitySummaryAbstractTweet
typeString
vulnerabilityDRPEntitySummaryDetectedVulnerability
whitelistedPortsDRPIpPortTransport
whoisDomainDRPWhoIs
whoisNetworksDRPEntitySummaryWhoisNetwork
\n

DRPEntitySummaryAbstractTweet

\n

DRP Entity Summary Abstract Tweet

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
authorIdString
authorNameString
createdAtDateTime
hashtagsString
likeCountInt
retweetCountInt
textString
tweetIdString
\n

DRPEntitySummaryCertificateInspection

\n

DRP Entity Summary Certificate Inspection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
certificateIdString
fingerprintString
issuerString
keyAlgorithmString
signatureAlgorithmString
subjectString
validBoolean
validFromDateTime
validToDateTime
\n

DRPEntitySummaryChatChannelDetails

\n

Details about the chat channel

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
channelAliasString
democracyBoolean
megaGroupBoolean
restrictedBoolean
titleString
verifiedBoolean
\n

DRPEntitySummaryChatLocation

\n

Geographic or map location attached to a chat message

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
latitudeFloat
longitudeFloat
mapDrpReportLargeImageRef
\n

DRPEntitySummaryChatMediaFile

\n

A media file sent in a chat message

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
captionString
contentLengthLong
fileDRPEntitySummaryChatMediaFileResourceRef
fileNameString
fileSubTypeString
fileTypeChatFileType
idString
imageDrpReportImageRef
oversizedBoolean
thumbnailDrpReportImageRef
\n

DRPEntitySummaryChatMediaFileResourceRef

\n

Reference to a chat media resource

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idString
linkString
\n

DRPEntitySummaryChatMessage

\n

DRP Entity Summary Chat Message

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
channelString
channelDetailsDRPEntitySummaryChatChannelDetails
contentString
idString
postBoolean
protocolString
searchIdString
sentString
sentLocationsDRPEntitySummaryChatLocation
sentMediaFilesDRPEntitySummaryChatMediaFile
serverDRPEntitySummaryChatServer
userDRPEntitySummaryChatMessageUser
\n

DRPEntitySummaryChatMessageUser

\n

User information for a chat message sender

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
avatarDRPEntitySummaryChatMessageUserAvatar
idString
uriString
usernameString
\n

DRPEntitySummaryChatMessageUserAvatar

\n

Avatar details for a chat message user

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
linkString
\n

DRPEntitySummaryChatServer

\n

Server details where the chat message originated

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
hostString
\n

DRPEntitySummaryConversationFragment

\n

DRP Entity Summary Conversation Fragment

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
channelString
focusMessageIndexInt
messagesDRPEntitySummaryMessage
serverString
\n

DRPEntitySummaryDetectedVulnerability

\n

DRP Entity Summary Detected Vulnerability

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cveIdString
cvssScoreFloat
descriptionString
referencesString
severityString
titleString
vulnerabilityIdString
\n

DRPEntitySummaryDnsZone

\n

DRP Entity Summary DNS Zone

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
lastRefreshedDateTime
nameServersString
recordCountInt
zoneNameString
\n

DRPEntitySummaryForumPostSnapshot

\n

DRP Entity Summary Forum Post Snapshot

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
authorIdString
authorNameString
contentString
postIdString
postedAtDateTime
tagsString
threadIdString
threadTitleString
\n

DRPEntitySummaryIpAddressDetails

\n

DRP Entity Summary IP Address Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
asnString
cityString
countryString
hostNameString
ipAddressString
ispString
latitudeFloat
longitudeFloat
organizationString
regionString
\n

DRPEntitySummaryIpPortInspection

\n

DRP Entity Summary IP Port Inspection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
bannerString
ipAddressString
portInt
protocolString
scannedAtDateTime
serviceString
stateString
\n

DRPEntitySummaryMarketplaceListing

\n

DRP Entity Summary Marketplace Listing

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
categoriesDRPEntitySummaryMarketplaceListingCategory
htmlDescriptionString
idString
imagesDrpReportLargeImageRef
labelsString
screenshotDrpReportLargeImageRef
sellerDRPEntitySummaryMarketplaceSeller
soldSinceString
textDescriptionString
titleString
unitPricesDRPEntitySummaryMarketplaceListingUnitPrice
uriString
\n

DRPEntitySummaryMarketplaceListingCategory

\n

DRP Entity Summary Marketplace Listing Category

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
labelString
parentDRPEntitySummaryMarketplaceListingSimpleCategory
\n

DRPEntitySummaryMarketplaceListingSimpleCategory

\n

DRP Entity Summary Marketplace Listing Simple Category

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
labelString
\n

DRPEntitySummaryMarketplaceListingUnitPrice

\n

DRP Entity Summary Marketplace Listing Unit Price

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
amountFloat
currencyString
\n

DRPEntitySummaryMarketplaceSeller

\n

DRP Entity Summary Marketplace Seller

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
avatarDrpReportLargeImageRef
badgesString
contactMethodsDRPEntitySummaryMarketplaceSellerContactMethod
idString
joinDateString
lastOnlineString
publicPgpKeyString
uriString
usernameString
\n

DRPEntitySummaryMarketplaceSellerContactMethod

\n

DRP Entity Summary Marketplace Seller Contact Method

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdDateTime
idString
identifierString
sellerDRPEntitySummaryMarketplaceSeller
typeMarketplaceSellerContactMethodProtocol
\n

DRPEntitySummaryMessage

\n

DRP Entity Summary Message

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
contentString
nicknameString
sentDateTime
usernameString
\n

DRPEntitySummaryMobileAppPrimary

\n

DRP Entity Summary Mobile App Primary

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
appIdString
developerString
nameString
packageNameString
storeUrlString
versionCodeInt
versionNameString
\n

DRPEntitySummarySecureSocketInspection

\n

DRP Entity Summary Secure Socket Inspection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
certificateChainDRPEntitySummaryX509CertificateRecord
handshakeSuccessfulBoolean
hostString
knownIssuesDRPEntitySummarySecureSocketsKnownIssueSpec
portInt
protocolString
supportedCipherSuitesString
\n

DRPEntitySummarySecureSocketInspectionPrimaryPage

\n

DRP Entity Summary Secure Socket Inspection Primary Page

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
contentSecureSocketInspectionPrimary
currentPageSearchLightPagination
totalLong
\n

DRPEntitySummarySecureSocketsKnownIssueSpec

\n

DRP Entity Summary Secure Sockets Known Issue Spec

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
affectedProtocolsString
descriptionString
issueIdString
recommendationString
severityString
\n

DRPEntitySummaryWhoisNetwork

\n

The inner WhoisNetwork object

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
abuseEmailString
autonomousSystemNumberInt
capturedDateTime
idString
nameString
rangeDRPAssetNetRange
registryString
\n

DRPEntitySummaryX509CertificateRecord

\n

DRP Entity Summary X509 Certificate Record

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fingerprintString
issuerDistinguishedNameString
notAfterDateTime
notBeforeDateTime
publicKeyAlgorithmString
serialNumberString
signatureAlgorithmString
subjectDistinguishedNameString
versionString
\n

DRPExposedAccessKeyData

\n

DRP Exposed Access Key Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessKeyTypeString
authorsString
firstExposedDateTime
keyString
latestSourceDRPExposedAccessKeySource
riskTypeDRPRiskType
secretString
sourceSummariesDRPExposedAccessKeySourceSummary
\n

DRPExposedAccessKeySource

\n

DRP Exposed Access Key Source

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
authorDetailsDRPCommitUser
contentUriString
filenameString
groupUrlString
latestSourceDetailsDRPExternalSourceSpecificDetails
matchesDRPTextMatch
sourceTypeString
sourceUrlString
updatedDateTime
\n

DRPExposedAccessKeySourceSummary

\n

DRP Exposed Access Key Source Summary

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
countInt
sourceHostString
\n

DRPExposedCommercialDocumentData

\n

DRP Exposed Commercial Document Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fileDRPFileDetails
riskTypeDRPRiskType
sourceDRPSourceDetails
\n

DRPExposedPort

\n

DRP Exposed Port

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
bannerString
detectedClosedDateTime
ipPortInspectionReviewDRPIpPortInspectionReview
portNumberInt
scannedOnDateTime
transportString
\n

DRPExposedPortData

\n

DRP Exposed Port Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
exposedPortsDRPExposedPort
ipAddressDetailsDRPIPAddressDetails
riskTypeDRPRiskType
\n

DRPExposedTechnicalDocumentData

\n

DRP Exposed Technical Document Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fileDRPFileDetails
riskTypeDRPRiskType
sourceDRPSourceDetails
\n

DRPExternalLogoDetections

\n

DRP External Logo Detections

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assetAsset
detectionsDRPLogoDetection
logoString
totalInt
updatedDateTime
\n

DRPExternalSourceSpecificDetails

\n

DRP External Source Specific Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commitCountInt
contributorCountInt
nameString
repositoryDetailsDRPGitRepository
typeString
urlString
\n

DRPFileDetails

\n

DRP File Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
contentHashesDRPContentHashes
firstCollectedString
lastModifiedString
metadataDRPFileMetadata
pdfPreviewString
screenshotString
\n

DRPFileGroup

\n

DRP File Group

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AUDIO_FILES
BACKUP_FILES
CAD_FILES
COMPRESSED_FILES
DATABASE_FILES
DATA_FILES
DEVELOPER_FILES
DISK_IMAGE_FILES
ENCODED_FILES
EXECUTABLE_FILES
FONT_FILES
GAME_FILES
GIS_FILES
MISC_FILES
OTHER
PAGE_LAYOUT_FILES
PLUGIN_FILES
RASTER_IMAGE_FILES
SETTINGS_FILES
SPREADSHEET_FILES
SYSTEM_FILES
TEXT_FILES
THREE_D_IMAGE_FILES
VECTOR_IMAGE_FILES
VIDEO_FILES
WEB_FILES
\n

DRPFileTypeSummary

\n

DRP File Type Summary

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
countLong
extensionString
groupDRPFileGroup
\n

DRPFileMetadata

\n

DRP File Metadata

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessControlDRPAccessControl
contentDRPContentDetails
customMetadataDRPUnknownMetadata
ownershipDRPOwnershipDetails
softwareDRPSoftwareDetails
statisticsDRPStatistics
timelineDRPTimeline
unknownMetadataDRPUnknownMetadata
xmpMediaManagementDRPXmpMediaManagement
\n

DRPGeospatial

\n

DRP Geospatial

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cityString
countryString
countryCodeString
latitudeFloat
longitudeFloat
postcodeString
\n

DRPGithubRepositoryDetails

\n

GitHub‐specific repository details, Github-specific fields: pushed, programmingLanguage, mirrorUri

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdDateTime
descriptionString
forksCountInt
fullNameString
homepageString
mirrorUriString
ownerEmailString
ownerIdString
ownerUsernameString
privateRepoBoolean
programmingLanguageString
pushedDateTime
readmeString
sizeInt
typeDRPRepositoryType
updatedDateTime
watchersCountInt
\n

DRPGitlabRepositoryDetails

\n

GitLab‐specific repository details, GitLab-specific field: parent

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdDateTime
descriptionString
forksCountInt
fullNameString
homepageString
ownerEmailString
ownerIdString
ownerUsernameString
parentDRPGitlabRepositoryDetails
privateRepoBoolean
readmeString
sizeInt
typeDRPRepositoryType
updatedDateTime
watchersCountInt
\n

DRPGitRepository

\n

DRP Git Repository

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdDateTime
descriptionString
forkBoolean
forksCountInt
fullNameString
homepageString
mirrorUriString
ownerEmailString
ownerIdString
ownerUsernameString
parentDRPHostingSpecificRepositoryDetails
privateRepoBoolean
programmingLanguageString
pushedDateTime
readmeString
sizeInt
sourceDRPHostingSpecificRepositoryDetails
typeString
updatedDateTime
watchersCountInt
\n

DRPHostingSpecificRepositoryDetails

\n

Hosting‐specific subset of repository details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdDateTime
descriptionString
forksCountInt
fullNameString
homepageString
ownerEmailString
ownerIdString
ownerUsernameString
privateRepoBoolean
readmeString
sizeInt
typeDRPRepositoryType
updatedDateTime
watchersCountInt
\n

DRPHtmlHistoryDetail

\n

DRP Html History Detail

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fileUrlString
matchesDRPMatchDetail
sourceCodeUrlString
updatedString
\n

DRPImpersonatingCompanyProfileData

\n

DRP Impersonating Company Profile Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accountCreatedString
biographyString
capturedDateString
collectedByString
containsBrandImageryBoolean
containsEmployeeImageryBoolean
domainNameString
followerCountInt
followingCountInt
handleString
hostnameString
lastActiveString
likeCountInt
pageTitleString
postCountInt
riskTypeDRPRiskType
urlString
verifiedBoolean
webpageContentDRPWebpageContent
\n

DRPImpersonatingDomain

\n

DRP Impersonating Domain

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
associatedUrlsString
collectedString
dnsRecordsDRPDnsResourceRecord
domainContentDRPDomainContent
isNewlyRegisteredBoolean
nameString
tldString
whoisDRPWhoIs
\n

DRPImpersonatingDomainData

\n

DRP Impersonating Domain Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
externalLogoDetectionsDRPExternalLogoDetections
impersonatingDomainDRPImpersonatingDomain
reportedContentDRPReportedContent
riskTypeDRPRiskType
\n

DRPImpersonatingEmployeeProfileData

\n

DRP Impersonating Employee Profile Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accountCreatedString
biographyString
capturedDateString
collectedByString
containsBrandImageryBoolean
containsEmployeeImageryBoolean
domainNameString
followerCountInt
followingCountInt
handleString
hostnameString
lastActiveString
likeCountInt
pageTitleString
postCountInt
riskTypeDRPRiskType
urlString
verifiedBoolean
webpageContentDRPWebpageContent
\n

DRPImpersonatingSubdomainData

\n

DRP Impersonating Subdomain Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
externalDomainContentMatchesDRPHtmlHistoryDetail
externalLogoDetectionsDRPExternalLogoDetections
reportedContentDRPReportedContent
riskTypeDRPRiskType
subdomainDRPSubdomain
\n

DRPIofsStatistics

\n

DRP IOFS Statistics

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
earliestModifiedDateTimeDateTime
fileSummariesDRPFileTypeSummary
fromDateTime
latestModifiedDateTimeDateTime
toDateTime
totalFileCountLong
totalFileSizeBytesLong
\n

DRPIPAddressDetails

\n

DRP IP Address Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeString
capturedDateTime
ipAddressInetAddress
locationDRPGeospatial
reverseDomainNamesString
serviceProviderString
\n

DRPIpPortDetails

\n

DRP IP Port Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
iofsStatisticsDRPIofsStatistics
\n

DRPIpPortInspectionReview

\n

DRP Ip Port Inspection Review

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdDateTime
ipPortInspectionStatusString
portNumberInt
userUser
versionInt
\n

DRPIpPortTransport

\n

DRP IP Port Transport

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
portInspectionDetailsDRPIpPortDetails
portNumberInt
transportDRPTransportProtocol
\n

DRPLogoDetection

\n

DRP Logo Detection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
confidenceScoreFloat
matchCountLong
sourceString
\n

DRPMagnitudeOfLoss

\n

DRP Magnitude Of Loss

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assetWeightedRiskScoreDRPAssetWeightedRiskScore
mostLikelyThreatScoreDRPThreatScore
scoreFloat
\n

DRPMarkedDocumentData

\n

DRP Marked Document Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fileDRPFileDetails
riskTypeDRPRiskType
sourceDRPSourceDetails
\n

DRPMatchDetail

\n

DRP Match Detail

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
matchTypeString
matchValueString
snippetsDRPSnippetDetail
totalInt
\n

DRPOriginatingAlert

\n

This is the alert that triggered the DRPAlert. Much of the relevant data for the DRPAlert\nwill be found here. This will be available on the DRPAlert when the originator type is ALERT.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
alertDataDRPOriginatingAlertData
alertTypeString
assetMatchesDRPAsset
createdAtDateTime
deletedAssetsInt
logoDetectionsDRPExternalLogoDetections
raisedAtDateTime
riskFunctionIdString
riskScoreAssessmentDRPRiskScoreAssessment
shortCodeString
supersededByString
\n

DRPOriginatingAlertData

\n

Interface for all of the various risk type specific data structures.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
riskTypeThe interface requires at least 1 field. None of the children will share any other fields but this one.DRPRiskType
\n

DRPOriginatingIncident

\n

DRP Originating Incident

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
alertedDateTime
closedSourceBoolean
descriptionString
entitySummaryDRPEntitySummary
idID
impactDescriptionString
internalBoolean
linkedContentIncidentsDrpReportLinkedContentIncident
modifiedDateTime
occurredDateTime
publishedDateTime
restrictedContentBoolean
reviewDRPReview
riskAssessmentDRPRiskAssessment
riskTypeDRPRiskType
scopeString
scoreInt
severityString
tagsDRPTag
takedownRequestCountInt
titleString
typeString
verifiedDateTime
versionInt
\n

DRPOriginator

\n

Drp Originator

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
alertDRPOriginatingAlert
incidentDRPOriginatingIncident
originatorTypeDRPOriginatorType
\n

DRPOriginatorType

\n

Type of Drp Originator

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ALERT
INCIDENT
\n

DRPOwnershipDetails

\n

DRP Ownership Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
authorString
companyString
initialAuthorString
lastAuthorString
managerString
publisherString
\n

DRPPhishingSite

\n

DRP Phishing Site

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
capturedDataDateTime
dnsRecordsDRPDnsResourceRecord
domainNameString
hostnameString
sourceString
sourceUrlString
tweetContentDRPTweetContent
urlString
webpageContentDRPWebpageContent
whoisDRPWhoIs
\n

DRPPhishingSiteData

\n

DRP Phishing Site Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
phishingSiteDRPPhishingSite
reportedContentDRPReportedContent
riskTypeDRPRiskType
\n

DrpReportAssetType

\n

Represents valid asset type used for Triage Item Filter

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACCESS_KEY
ACCESS_KEY_HASH
BRAND
CODE_FORMAT
CODE_REPOSITORY
COMPANY
DLP_IDENTIFIER
DOCUMENT_MARKING
DOMAIN
GENERAL_KEYWORD
IIN
KEY_STAFF_MEMBER
MOBILE_APP
MOBILE_APP_KEYWORD
NET_RANGE
PACKAGE_NAME
PHONE_NUMBER
SENSITIVE_CODE_IDENTIFIER
SENSITIVE_KEYWORD
SERVER_FORMAT
SERVER_NAME
SOCIAL_MEDIA_HASHTAG
SOCIAL_MEDIA_PROFILE
SUPPLIER
UNRECOGNIZED
\n

DrpReportClassificationsAndRiskFactorsInput

\n

Represents classification and associated risk factors input provided for Triage Item Filtering

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
classificationString
riskFactorKeysString
\n

DrpReportCustomTriageTableWidgetDataLabels

\n

Assets Label for CustomTriageTableWidget

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
valueString
\n

DrpReportCustomTriageTableWidgetDataRiskAttribute

\n

Assets Risk Attribute for CustomTriageTableWidget

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
currentInt
maximumInt
\n

DRPReportedContent

\n

DRP Reported Content

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
contentUriString
domainNameString
scopeNOTE not sent from searchlight-proxyString
timestampDateTime
userUser that reported the contentUser
\n

DrpReportImageRef

\n

Represents a screenshot of the source, if available

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
linkString
restrictedBoolean
\n

DrpReportIncidentScope

\n

Represents valid values for Incident scope

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
GLOBAL
ORGANIZATION
REFERENCE
\n

DrpReportIncidentSeverity

\n

Represents valid incident severity

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
HIGH
LOW
MEDIUM
NONE
VERY_HIGH
VERY_LOW
\n

DrpReportLargeImageRef

\n

Represents a screenshot of the source, if available

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
linkString
restrictedBoolean
thumbnailDrpReportImageRef
\n

DrpReportLinkedContentIncident

\n

Represents linked content incident

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
occurredDateTime
scopeDrpReportIncidentScope
severityDrpReportIncidentSeverity
titleString
\n

DrpReportRiskSize

\n

Represents valid Risk Size used for Triage Item Filter

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
HIGH
LOW
MEDIUM
NONE
VERY_HIGH
VERY_LOW
\n

DrpReportRiskType

\n

Represents valid take Risk Type used for Triage Item Filter

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ASSOCIATION_WITH_MALWARE
ASSOCIATION_WITH_PHISHING_KIT
CCR_BRAND
CCR_TECH
CCR_THREAT
COUNTERFEIT_CURRENCY
CREDENTIAL_EXPOSURE
CUSTOM_CLIENT_REQUEST
EVIDENCE_OF_ADVERSARY_IMPACT
EVIDENCE_OF_CREDENTIAL_ACCESS
EVIDENCE_OF_INITIAL_ACCESS
EVIDENCE_OF_RECONNAISSANCE
EVIDENCE_OF_RESOURCE_DEVELOPMENT
EXPIRED_CERTIFICATE
EXPOSED_ACCESS_KEY
EXPOSED_CLOUD_SERVICE
EXPOSED_COMMERCIAL_DOCUMENT
EXPOSED_CUSTOMER_ACCOUNT
EXPOSED_DEVICE
EXPOSED_EMPLOYEE_PII
EXPOSED_PAYMENT_CARD
EXPOSED_TECHNICAL_DOCUMENT
GENERAL
GENERAL_BRAND
GENERAL_TECH
GENERAL_THREAT
IMPERSONATING_COMPANY_PROFILE
IMPERSONATING_DOMAIN
IMPERSONATING_EMPLOYEE_PROFILE
IMPERSONATING_MOBILE_APP
IMPERSONATING_SUBDOMAIN
LEAKED_SENSITIVE_CODE
LEAKED_SENSITIVE_TECHNOLOGY
MARKED_DOCUMENT
MENTION_BY_A_THREAT_ACTOR
MENTION_IN_RELATION_TO_A_TTP
MISCONFIGURED_WEB_SERVER
NEGATIVE_PUBLICITY
OPEN_PORT
PHISHING_EMAIL
PHISHING_REPORT
PHISHING_SITE
REPORTED_DATA_BREACH
REPORT_OF_BOTNET_ACTIVITY
REPORT_OF_TECHNICAL_VULNERABILITY
REVOKED_CERTIFICATE
SELLING_UNAUTHORIZED_GOODS
UNAUTHORIZED_CODE_COMMIT
UNRECOGNIZED
VULNERABLE_CERTIFICATE
VULNERABLE_PRODUCT
VULNERABLE_SERVICE
WEAK_CERTIFICATE
\n

DrpReportRiskTypesAndRiskFactorsInput

\n

Represents risk type and associated risk factors as input for Triage Item Filtering

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
riskFactorKeysString
riskTypeDrpReportRiskType
\n

DrpReportTriageItemAssigneeFilterInput

\n

Represents filter to uses provided user id's and flag to include unassigned or not in Triage Item Filtering

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneesID
includeUnassignedBoolean
\n

DrpReportTriageItemTakedownState

\n

Represents valid take down state used for Triage Item Filter

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AVAILABLE
CLARIFICATION_PROVIDED
CLARIFICATION_REQUIRED
COMPLETED
IN_PROGRESS
IN_REVIEW
NOT_ENFORCEABLE
NO_ACTION_REQUIRED
REJECTED
SUBMITTED
TERMINATED
UNAVAILABLE
\n

DrpReportTriageItemViewFilterInput

\n

Represents Input for TriageSummary reporting Widget

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activeBoolean
alertExternalIdsID
alertFingerprintsString
assetLabelIdsID
assetSerialIdsID
assetTypesDrpReportAssetType
assigneesDrpReportTriageItemAssigneeFilterInput
changed [DEPRECATED][DEPRECATED: Use updated instead. If both changed and updated are provided, updated will be preferred. Deprecated on 2025-12-17.] Filter by changed time using ISO 8601 duration format (e.g., \"P7D\" for 7 days ago, \"PT1H\" for 1 hour ago).String
classificationsAndRiskFactorsDrpReportClassificationsAndRiskFactorsInput
clientsString
createdFilter by creation time range using earliest and latest DateTime values.TimeRange
deletedBoolean
domainString
externalIdsID
flaggedBoolean
hostsString
idGreaterThanLong
migratedBoolean
raised [DEPRECATED][DEPRECATED: Use created instead. If both raised and created are provided, created will be preferred. Deprecated on 2025-12-17.] Filter by raised time using ISO 8601 duration format (e.g., \"P7D\" for 7 days ago, \"PT1H\" for 1 hour ago).String
rejectedByRuleSerialIdID
riskSizesDrpReportRiskSize
riskTypesAndRiskFactorsDrpReportRiskTypesAndRiskFactorsInput
shortCodesString
singleRuleRejectionBoolean
sourceGroupsString
sourceRefsString
sourceUrisString
statusesString
supersededBoolean
systemActionBoolean
takedownRequestedBoolean
takedownStatusesDrpReportTriageItemTakedownState
updatedFilter by last update time range using earliest and latest DateTime values.TimeRange
watchedBoolean
\n

DRPRepository

\n

DRP Repository

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
nameString
urlString
\n

DRPRepositoryType

\n

DRP Repository Type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
GITHUB
GITLAB
\n

DRPReview

\n

DRP Review

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdDateTime
statusString
userUser
versionInt
\n

DRPRiskAssessment

\n

DRP Risk Assessment

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assessedOnDateTime
riskImpactDRPRiskImpact
riskLevelString
riskLikelihoodDRPRiskLikelihood
\n

DRPRiskCalculation

\n

DRP Risk Calculation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
classString
versionString
\n

DRPRiskFactors

\n

DRP Risk Factor @deprecated(reason: \"Use the Alert's RiskFactorKeys\")

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assetAccessKeyBoolean
assetTextMatchBoolean
committedByEmployeeBoolean
exposedOnClientGitRepoBoolean
exposedOnGitRepoBoolean
exposedOnPasteSiteBoolean
forkCountunauthorized code commit fieldsBoolean
hasAssetsInContentimpersonating generic fieldsBoolean
hasContentBoolean
hasDnsBoolean
hasMxBoolean
highCriticalityKeyTypeexposed access keyBoolean
hostingContentBoolean
hostsLoginFormBoolean
isDnsRecordExistsBoolean
isDomainInThreatFeedBoolean
isDomainNewlyRegisteredBoolean
isFirstSeenRecentlyBoolean
isMxRecordExistsBoolean
isSubdomainInThreatFeedimpersonating subdomain-specific fieldsBoolean
logoDetectionBoolean
newlyRegisteredimpersonating domain-specific fieldsBoolean
parkingPageBoolean
referencingClientContentBoolean
type [DEPRECATED][DEPRECATED: Use the Alert's RiskFactorKeys.]String
userOwnsRepoBoolean
\n

DRPRiskImpact

\n

DRP Risk Impact

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assetIdsString
riskImpactLevelString
\n

DRPRiskLikelihood

\n

DRP Risk Likelihood

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
riskFactorsString
riskLikelihoodLevelString
\n

DRPRiskScore

\n

DRP Risk Score

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
riskSizeString
scoreFloat
\n

DRPRiskScoreAssessment

\n

DRP Risk Score Assessment

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
calculationDRPRiskCalculation
likelihoodOfLossFloat
magnitudeOfLossDRPMagnitudeOfLoss
riskFactorsDRPRiskFactors
riskScoreDRPRiskScore
\n

DRPRiskType

\n

Risk Type ENUM for DRP Alert.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ASSOCIATION_WITH_MALWARE
ASSOCIATION_WITH_PHISHING_KIT
CCR_BRAND
CCR_TECH
CCR_THREAT
COUNTERFEIT_CURRENCY
CREDENTIAL_EXPOSURE
CUSTOM_CLIENT_REQUEST
EVIDENCE_OF_ADVERSARY_IMPACT
EVIDENCE_OF_CREDENTIAL_ACCESS
EVIDENCE_OF_INITIAL_ACCESS
EVIDENCE_OF_RECONNAISSANCE
EVIDENCE_OF_RESOURCE_DEVELOPMENT
EXPIRED_CERTIFICATE
EXPOSED_ACCESS_KEY
EXPOSED_CLOUD_SERVICE
EXPOSED_COMMERCIAL_DOCUMENT
EXPOSED_CUSTOMER_ACCOUNT
EXPOSED_DEVICE
EXPOSED_EMPLOYEE_PII
EXPOSED_PAYMENT_CARD
EXPOSED_TECHNICAL_DOCUMENT
GENERAL
GENERAL_BRAND
GENERAL_TECH
GENERAL_THREAT
IMPERSONATING_COMPANY_PROFILE
IMPERSONATING_DOMAIN
IMPERSONATING_EMPLOYEE_PROFILE
IMPERSONATING_MOBILE_APP
IMPERSONATING_SUBDOMAIN
LEAKED_SENSITIVE_CODE
LEAKED_SENSITIVE_TECHNOLOGY
MARKED_DOCUMENT
MENTION_BY_A_THREAT_ACTOR
MENTION_IN_RELATION_TO_A_TTP
MISCONFIGURED_WEB_SERVER
NEGATIVE_PUBLICITY
OPEN_PORT
PHISHING_EMAIL
PHISHING_REPORT
PHISHING_SITE
REPORTED_DATA_BREACH
REPORT_OF_BOTNET_ACTIVITY
REPORT_OF_TECHNICAL_VULNERABILITY
SELLING_UNAUTHORIZED_GOODS
UNAUTHORIZED_CODE_COMMIT
UNKNOWN
UNRECOGNIZED
VULNERABLE_CERTIFICATE
VULNERABLE_PRODUCT
VULNERABLE_SERVICE
WEAK_CERTIFICATE
\n

DRPSnippetDetail

\n

DRP Snippet Detail

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
htmlSnippetString
lengthInt
lineNumberInt
offsetInt
referencingClientContentBoolean
\n

DRPSoftwareDetails

\n

DRP Software Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
applicationString
applicationVersionString
creatorString
pdfExtensionVersionString
producerString
templateString
\n

DRPSourceDetails

\n

DRP Source Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
domainString
hostTypeString
ipAddressString
locationString
sourceStatusDRPSourceStatus
\n

DRPSourceStatus

\n

DRP Source Status

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
firstSeenString
lastAvailableString
lastCheckedAtString
\n

DRPStatistics

\n

DRP Statistics

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
characterCountInt
characterCountWithSpacesInt
editTimeInt
editingCyclesInt
imageCountInt
lineCountInt
objectCountInt
pageCountInt
paragraphCountInt
slideCountInt
tableCountInt
totalTimeInt
wordCountInt
\n

DRPSubdomain

\n

DRP Subdomain

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
associatedUrlsDRPAssociatedUrl
collectedString
contentDRPDomainContent
dnsRecordsDRPDnsResourceRecord
firstSeenString
nameString
parentNameString
parentWhoisDRPWhoIs
tldString
\n

DRPTag

\n

DRP Tag

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
nameString
typeString
\n

DRPTextMatch

\n

DRP Text Match

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
matchTextString
offsetInt
snippetString
\n

DRPThreatScore

\n

DRP Threat Score

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
competitiveAdvantageString
legalString
productivityString
replacementString
reputationString
responseString
scoreFloat
threatString
\n

DRPTimeline

\n

DRP Timeline

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdString
modifiedString
printedString
savedString
\n

DRPTransportProtocol

\n

DRP Transport Protocol

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
TCP
UDP
\n

DRPTweetContent

\n

DRP Tweet Content

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
capturedDateTime
imageUrisString
likesLong
nameString
postedDateTime
profileImageUriString
retweetedDRPTweetContent
retweetsLong
screenNameString
tweetBodyString
tweetUriString
verifiedBoolean
\n

DRPUnauthorizedCodeCommitData

\n

DRP Unauthorized Code Commit Data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commitDRPCommitDetails
emailString
gitEmailSourceString
latestCommitShaString
latestCommitTimestampDateTime
repositoriesCommittedCountInt
repositoriesCommittedToString
riskTypeDRPRiskType
sourceRepositoryUrlString
topRepositoryDRPGitRepository
uniqueCommitCountInt
userDRPCommitUser
\n

DRPUnknownMetadata

\n

DRP Unknown Metadata

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
keyString
valueString
\n

DRPValidationResponse

\n

DRP Validation Response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
stateString
unknownReasonString
\n

DRPWebpageContent

\n

DRP Webpage Content

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
collectedString
screenshotUriString
\n

DRPWhoIs

\n

DRP Who Is

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
contactsDRPWhoIsContact
createdDateTime
domainNameString
expiresDateTime
registrarAbuseEmailString
registrarAbusePhoneString
registrarIdString
registrarNameString
updatedDateTime
\n

DRPWhoIsContact

\n

DRP Who Is Contact

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cityString
contactTypeDRPWhoIsContactType
countryString
emailString
faxString
faxExtString
nameString
organizationString
phoneString
phoneExtString
postcodeString
stateString
streetString
\n

DRPWhoIsContactType

\n

DRP Who Is Contact Type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ADMIN
BILLING
OTHER
REGISTRANT
TECH
ZONE
\n

DRPXmpMediaManagement

\n

DRP Xmp Media Management

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
derivedFromDocumentIdString
derivedFromInstanceIdString
documentIdString
historyActionString
historyInstanceIdString
historySoftwareAgentString
historyWhenString
instanceIdString
\n

InetAddress

\n

Inet Address

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
canonicalHostNameString
hostAddressString
hostNameString
\n

MarketplaceSellerContactMethodProtocol

\n

Marketplace Seller Contact Method Protocol

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AOL
EMAIL
ICQ
OTHER
XMPP
\n

SearchLightPagination

\n

Search Light Pagination

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
offsetInt
sizeInt
\n

SecureSocketInspectionPrimary

\n

Secure Socket Inspection Primary

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cipherSuiteString
handshakeSuccessfulBoolean
hostString
inspectedAtDateTime
inspectionIdString
portInt
protocolString
\n

Takedown

\n

Takedown schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idString
stateTakedownState
\n

TakedownState

\n

Takedown State ENUM.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AVAILABLE
CLARIFICATION_PROVIDED
CLARIFICATION_REQUIRED
COMPLETED
IN_PROGRESS
IN_REVIEW
NOT_ENFORCEABLE
NO_ACTION_REQUIRED
REJECTED
SUBMITTED
TERMINATED
UNAVAILABLE
UNKNOWN
\n

UpdateDrpAlertStateInput

\n

DRP Update Alert State Input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentString
drpAlertID
stateDRPAlertState
\n
","_postman_id":"7146ce5a-ecab-49b7-a703-57e7895eb8ce","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Emergency Contacts","item":[{"name":"Mutations","item":[{"name":"createEmergencyContact","id":"17b6aef6-4c02-4500-8aac-123802005d96","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createEmergencyContact ($input: CreateEmergencyContactInput!) {\n createEmergencyContact (input: $input) {\n emergencyContact {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callOrder\": 0,\n \"callWindows\": {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n },\n \"fullName\": \"\",\n \"phoneNumber\": \"\",\n \"userId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create an emergency contact

\n

Inputs: \nCreateEmergencyContactInput,

\n

Return: \nCreateEmergencyContactResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"fb212a43-e234-4dae-bdea-a79e4d7faa09","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createEmergencyContact ($input: CreateEmergencyContactInput!) {\n createEmergencyContact (input: $input) {\n emergencyContact {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callOrder\": 0,\n \"callWindows\": {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n },\n \"fullName\": \"\",\n \"phoneNumber\": \"\",\n \"userId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create an emergency contact\n\nInputs: \nCreateEmergencyContactInput, \n\nReturn: \nCreateEmergencyContactResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createEmergencyContact\": {\n \"emergencyContact\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callOrder\": 0,\n \"callWindows\": [\n {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n }\n ],\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"fullName\": \"\",\n \"id\": \"\",\n \"onCall\": true,\n \"phoneNumber\": \"\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"17b6aef6-4c02-4500-8aac-123802005d96"},{"name":"deleteEmergencyContact","id":"e32084a8-870e-4960-88c3-e5ff35fd4ae9","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteEmergencyContact ($id: ID!) {\n deleteEmergencyContact (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete an emergency contact

\n

Inputs: \nID,

\n

Return: \nDeleteEmergencyContactResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"2440229b-9958-4079-a499-07b15c28ca8e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteEmergencyContact ($id: ID!) {\n deleteEmergencyContact (id: $id) {\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete an emergency contact\n\nInputs: \nID, \n\nReturn: \nDeleteEmergencyContactResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteEmergencyContact\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"e32084a8-870e-4960-88c3-e5ff35fd4ae9"},{"name":"updateCallOrder","id":"15d8c131-8fc0-48d6-a6fa-325401fde6d4","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCallOrder ($callOrder: Int!, $id: ID!) {\n updateCallOrder (callOrder: $callOrder, id: $id) {\n emergencyContacts {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"callOrder\": 0,\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update an emergency contact's call order within the call tree

\n

Inputs: \nInt, ID,

\n

Return: \nUpdateCallOrderResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"4615603f-7921-4a77-8a41-87e253cad9a5","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateCallOrder ($callOrder: Int!, $id: ID!) {\n updateCallOrder (callOrder: $callOrder, id: $id) {\n emergencyContacts {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"callOrder\": 0,\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update an emergency contact's call order within the call tree\n\nInputs: \nInt, ID, \n\nReturn: \nUpdateCallOrderResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateCallOrder\": {\n \"emergencyContacts\": [\n {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callOrder\": 0,\n \"callWindows\": [\n {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n }\n ],\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"fullName\": \"\",\n \"id\": \"\",\n \"onCall\": true,\n \"phoneNumber\": \"\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n ],\n \"success\": true\n }\n }\n}"}],"_postman_id":"15d8c131-8fc0-48d6-a6fa-325401fde6d4"},{"name":"updateEmergencyContact","id":"5f895f58-4632-4a8b-8d91-9849e7b71837","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateEmergencyContact ($input: UpdateEmergencyContactInput!) {\n updateEmergencyContact (input: $input) {\n emergencyContact {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callWindows\": {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n },\n \"id\": \"\",\n \"phoneNumber\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update an emergency contact

\n

Inputs: \nUpdateEmergencyContactInput,

\n

Return: \nUpdateEmergencyContactResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"fce1c457-38cb-4081-a7bb-fd3ed5021a5e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateEmergencyContact ($input: UpdateEmergencyContactInput!) {\n updateEmergencyContact (input: $input) {\n emergencyContact {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callWindows\": {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n },\n \"id\": \"\",\n \"phoneNumber\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update an emergency contact\n\nInputs: \nUpdateEmergencyContactInput, \n\nReturn: \nUpdateEmergencyContactResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateEmergencyContact\": {\n \"emergencyContact\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callOrder\": 0,\n \"callWindows\": [\n {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n }\n ],\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"fullName\": \"\",\n \"id\": \"\",\n \"onCall\": true,\n \"phoneNumber\": \"\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"5f895f58-4632-4a8b-8d91-9849e7b71837"}],"id":"1ef0a8ea-5750-4d4d-ab9a-7f6a09a12e8c","_postman_id":"1ef0a8ea-5750-4d4d-ab9a-7f6a09a12e8c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"emergencyContact","id":"dfd10b69-84c3-46c3-842b-34578bd6e812","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query emergencyContact ($after: String, $first: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after1: String, $first1: Int, $after2: String, $filter: AccessGroupFilter, $first2: Int, $order: AccessGroupOrder, $after3: String, $filter1: PodFilter, $first3: Int, $order1: PodOrder, $after4: String, $filter2: RoleFilter, $first4: Int, $order2: RoleFilter, $id: ID!) {\n emergencyContact (id: $id) {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n accessControlPolicies (after: $after, first: $first) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after1, first: $first1) {\n totalCount\n }\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n accessGroups (after: $after2, filter: $filter, first: $first2, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after3, filter: $filter1, first: $first3, order: $order1) {\n totalCount\n }\n roles (after: $after4, filter: $filter2, first: $first4, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"after2\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after4\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first4\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch an emergency contact by its ID

\n

Inputs: \nID,

\n

Return: \nEmergencyContact

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1ae305a3-59b4-420d-b08f-f2f3cdb4928f","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query emergencyContact ($after: String, $first: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after1: String, $first1: Int, $after2: String, $filter: AccessGroupFilter, $first2: Int, $order: AccessGroupOrder, $after3: String, $filter1: PodFilter, $first3: Int, $order1: PodOrder, $after4: String, $filter2: RoleFilter, $first4: Int, $order2: RoleFilter, $id: ID!) {\n emergencyContact (id: $id) {\n callAttempts\n callCategories\n callOrder\n callWindows {\n daysOfWeek\n endTime\n startTime\n timeZone\n }\n customer {\n accessControlPolicies (after: $after, first: $first) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after1, first: $first1) {\n totalCount\n }\n }\n fullName\n id\n onCall\n phoneNumber\n user {\n accessGroups (after: $after2, filter: $filter, first: $first2, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after3, filter: $filter1, first: $first3, order: $order1) {\n totalCount\n }\n roles (after: $after4, filter: $filter2, first: $first4, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"after2\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after4\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first4\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch an emergency contact by its ID\n\nInputs: \nID, \n\nReturn: \nEmergencyContact\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"emergencyContact\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callOrder\": 0,\n \"callWindows\": [\n {\n \"daysOfWeek\": [\n \"FRIDAY\"\n ],\n \"endTime\": \"\",\n \"startTime\": \"\",\n \"timeZone\": \"\"\n }\n ],\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"fullName\": \"\",\n \"id\": \"\",\n \"onCall\": true,\n \"phoneNumber\": \"\",\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"dfd10b69-84c3-46c3-842b-34578bd6e812"},{"name":"emergencyContacts","id":"3bffbf4f-ae25-4c10-98d5-211c163aa324","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query emergencyContacts ($after: String, $filter: EmergencyContactFilter, $first: Int, $order: EmergencyContactOrder) {\n emergencyContacts (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n callAttempts\n callCategories\n callOrder\n fullName\n id\n onCall\n phoneNumber\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"available\": true,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"greyMatterUser\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CALL_CATEGORY\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Query the Emergency contact Call Tree

\n

Inputs: \nString, EmergencyContactFilter, Int, EmergencyContactOrder,

\n

Return: \nEmergencyContactConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d67ad69c-d052-49d6-8015-e3514f6b62c8","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query emergencyContacts ($after: String, $filter: EmergencyContactFilter, $first: Int, $order: EmergencyContactOrder) {\n emergencyContacts (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n callAttempts\n callCategories\n callOrder\n fullName\n id\n onCall\n phoneNumber\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"available\": true,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"greyMatterUser\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CALL_CATEGORY\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Query the Emergency contact Call Tree\n\nInputs: \nString, EmergencyContactFilter, Int, EmergencyContactOrder, \n\nReturn: \nEmergencyContactConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"emergencyContacts\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"callAttempts\": 0,\n \"callCategories\": [\n \"ENGINEERING\"\n ],\n \"callOrder\": 0,\n \"fullName\": \"\",\n \"id\": \"\",\n \"onCall\": true,\n \"phoneNumber\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"3bffbf4f-ae25-4c10-98d5-211c163aa324"}],"id":"fe99b84d-441e-4a25-a66f-34e03c79545d","_postman_id":"fe99b84d-441e-4a25-a66f-34e03c79545d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"8619a5fe-78f4-470a-8406-edfb8e81bbf8","description":"

EmergencyContactOrderBy

\n

OrderBy ENUM for Emergency Contacts

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CALL_CATEGORY
CALL_ORDER
FULL_NAME
\n

CallCategory

\n

Category ENUM for Emergency Contacts

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ENGINEERING
INTEL_ADVISORIES
SECURITY
\n

DayOfWeek

\n

Day ENUM for Call Windows

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
FRIDAY
MONDAY
SATURDAY
SUNDAY
THURSDAY
TUESDAY
WEDNESDAY
\n

EmergencyContactOrder

\n

Emergency Contact OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CALL_ORDER, direction = ASC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByEmergencyContactOrderBy
\n

CreateEmergencyContactInput

\n

Input to create an Emergency Contact

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
callAttemptsInt
callCategoriesCallCategory
callOrderIf the call order is not specified on create, the contact will be added at the bottom of the current call orderInt
callWindowsCreateCallWindowInput
fullNameString
phoneNumberPhoneNumber
userIdID
\n

UpdateEmergencyContactInput

\n

Input to update an emergency contact

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
callAttemptsInt
callCategoriesCallCategory
callWindowsCreateCallWindowInput
idID
phoneNumberPhoneNumber
\n

CreateCallWindowInput

\n

Input to create an emergency contact's call window

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
daysOfWeekDayOfWeek
endTimeLocalTime
startTimeLocalTime
timeZoneIANATimezone
\n

EmergencyContactFilter

\n

Input to filter emergency contacts in the search query

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
availableFilter by availability. true = They are scheduled at this time, false = they are not scheduled for this time, null for all.Boolean
callCategoriesFilter by the call categories. Multiple values will match contacts with all categories. Null will not filter by category.CallCategory
greyMatterUserFilter by if the contact has a login to GreyMatter, true = they have a login, false = they currently do not have a login, null for all.Boolean
\n

CreateEmergencyContactResponse

\n

Response type for create emergency contact operation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
emergencyContactEmergencyContact
successBoolean
\n

UpdateEmergencyContactResponse

\n

Response type for update emergency contact operation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
emergencyContactEmergencyContact
successBoolean
\n

EmergencyContactConnection

\n

Represents a paginated list of emergency contacts

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesEmergencyContactEdge
pageInfoPageInfo
totalCountInt
\n

EmergencyContactEdge

\n

An edge in a connection, representing a single emergency contact

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeEmergencyContact
\n

EmergencyContact

\n

An Emergency Contact, the contact information for an emergency contact on a company's call tree

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
callAttemptsInt
callCategoriesCallCategory
callOrderInt
callWindowsCallWindow
customerCustomer
fullNameString
idID
onCallBoolean
phoneNumberPhoneNumber
userUser
\n

CallWindow

\n

The window of availability for an emergency contact

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
daysOfWeekDayOfWeek
endTimeString
startTimeString
timeZoneString
\n

UpdateCallOrderResponse

\n

Response type for an update emergency contact operation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
emergencyContactsEmergencyContact
successBoolean
\n

DeleteEmergencyContactResponse

\n

Response type for a delete emergency contact operation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successBoolean
\n
","_postman_id":"8619a5fe-78f4-470a-8406-edfb8e81bbf8","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Fields","item":[{"name":"Queries","item":[{"name":"greymatterField","id":"535e0ebc-0208-4c55-83d4-12f1e52091ba","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query greymatterField ($by: GreyMatterFieldBy!) {\n greymatterField (by: $by) {\n description\n displayName\n id\n name\n serviceNowName\n type\n }\n}","variables":"{\n \"by\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch a field.

\n

Inputs: \nGreyMatterFieldBy,

\n

Return: \nGreyMatterField

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"4a703348-25fd-4f86-b8fa-b35302170b14","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query greymatterField ($by: GreyMatterFieldBy!) {\n greymatterField (by: $by) {\n description\n displayName\n id\n name\n serviceNowName\n type\n }\n}","variables":"{\n \"by\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch a field.\n\nInputs: \nGreyMatterFieldBy, \n\nReturn: \nGreyMatterField\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"greymatterField\": {\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"serviceNowName\": \"\",\n \"type\": \"BOOLEAN\"\n }\n }\n}"}],"_postman_id":"535e0ebc-0208-4c55-83d4-12f1e52091ba"},{"name":"greymatterFields","id":"768befd0-ec65-4fda-a90d-b1f58c0960ba","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query greymatterFields ($after: String, $filter: GreyMatterFieldFilter, $first: Int, $order: GreyMatterFieldOrder) {\n greymatterFields (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n description\n displayName\n id\n name\n serviceNowName\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"ids\": [\n \"\"\n ],\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch fields through pageable connection with filter and order capabilities.

\n

Inputs: \nString, GreyMatterFieldFilter, Int, GreyMatterFieldOrder,

\n

Return: \nGreyMatterFieldConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"c5046112-7082-497e-96d5-2ec9b42d5b18","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query greymatterFields ($after: String, $filter: GreyMatterFieldFilter, $first: Int, $order: GreyMatterFieldOrder) {\n greymatterFields (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n description\n displayName\n id\n name\n serviceNowName\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"ids\": [\n \"\"\n ],\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch fields through pageable connection with filter and order capabilities.\n\nInputs: \nString, GreyMatterFieldFilter, Int, GreyMatterFieldOrder, \n\nReturn: \nGreyMatterFieldConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"greymatterFields\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"description\": \"\",\n \"displayName\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"serviceNowName\": \"\",\n \"type\": \"BOOLEAN\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"768befd0-ec65-4fda-a90d-b1f58c0960ba"}],"id":"671976c0-3c58-4560-adec-8070062b68c3","_postman_id":"671976c0-3c58-4560-adec-8070062b68c3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"b8f1a1da-f2d5-4f05-865b-78f7963bb03b","description":"

GreyMatterFieldBy

\n

Input type to get GreyMatterField by either field ID or field name.\nThis input is annotated with @oneOf directive so only one field should be provided to fetch the field.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
nameString
\n

GreyMatterFieldConnection

\n

Field Connection.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesGreyMatterFieldEdge
pageInfoPageInfo
totalCountInt
\n

GreyMatterFieldEdge

\n

Field Edge.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeGreyMatterField
\n

GreyMatterFieldFilter

\n

GreyMatterField Filter.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idsID
searchString
\n

GreyMatterFieldOrderBy

\n

The fields that can be used to order the GreyMatterFieldConnection.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NAME
TYPE
\n

GreyMatterFieldOrder

\n

GreyMatterField Order criteria. If not set, defaults will be used.\nDefaults: orderBy = NAME, direction = ASC.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByGreyMatterFieldOrderBy
\n

GreyMatterField

\n

GreyMatterField schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionString
displayNameString
idID
nameString
serviceNowNameString
typeGreyMatterFieldType
\n

GreyMatterFieldType

\n

The data type of a field.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
BOOLEAN
DATETIME
IP_ADDRESS
NUMBER
STRING
UNKNOWN
\n
","_postman_id":"b8f1a1da-f2d5-4f05-865b-78f7963bb03b","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Identities","item":[{"name":"Queries","item":[{"name":"identities","id":"32e17892-76a2-4dcf-8606-65c424b34119","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query identities ($after: String, $filter: IdentityFilter, $first: Int, $order: IdentityOrder) {\n identities (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n group\n id\n name\n role\n workLocation\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"date\": \"2026-08-01T00:00:00.000Z\",\n \"operator\": \"AFTER\"\n },\n \"groups\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"search\": \"\",\n \"workLocations\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"GROUP\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all identities which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, IdentityFilter, Int, IdentityOrder,

\n

Return: \nIdentityConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"0fea0163-2f68-4678-8e9c-c82e9df22eb4","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query identities ($after: String, $filter: IdentityFilter, $first: Int, $order: IdentityOrder) {\n identities (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n group\n id\n name\n role\n workLocation\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"date\": \"2026-08-01T00:00:00.000Z\",\n \"operator\": \"AFTER\"\n },\n \"groups\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"search\": \"\",\n \"workLocations\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"GROUP\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all identities which match provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, IdentityFilter, Int, IdentityOrder, \n\nReturn: \nIdentityConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"identities\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"group\": [\n \"\"\n ],\n \"id\": \"\",\n \"name\": \"\",\n \"role\": [\n \"\"\n ],\n \"workLocation\": [\n \"\"\n ]\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"32e17892-76a2-4dcf-8606-65c424b34119"}],"id":"ac3463ca-b8fb-4fe2-96ac-a2cba2a3bdf4","_postman_id":"ac3463ca-b8fb-4fe2-96ac-a2cba2a3bdf4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"74dd8e66-7eda-4998-8c97-3d68c3b5d49e","description":"

Identity

\n

Details of Identity

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtIdentity createdAt.DateTime
groupIdentity group(s).String
idIdentity identifier.ID
nameIdentity name.String
roleIdentity role(s).String
workLocationIdentity workLocation(s).String
\n

IdentityConnection

\n

Paginated Identity response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesIdentityEdge
pageInfoPageInfo
totalCountInt
\n

IdentityEdge

\n

Page of Identity

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeIdentity
\n

IdentityOrderBy

\n

Values supported for order operation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
GROUP
NAME
ROLE
WORKLOCATION
\n

IdentityFilter

\n

Primary filter to fetch identities

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdIdentities by created date filter.DateFilter
groupsGroups to filter by.String
rolesRoles to filter by.String
searchIdentity retrieval based on search text.String
workLocationsWorkLocations to filter by.String
\n

IdentityOrder

\n

Field to retrieve identity based on sort order and field name

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionIdentity sort direction.Sort
orderByOrder to retrieve identities.IdentityOrderBy
\n

DateOperator

\n

Date filter allowed values

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AFTER
BEFORE
ON
\n

DateFilter

\n

Date filter for identity

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
dateDateTime
operatorDateOperator
\n
","_postman_id":"74dd8e66-7eda-4998-8c97-3d68c3b5d49e","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Incidents","item":[{"name":"Mutations","item":[{"name":"acknowledgeAssignAndCloseIncident","id":"d813a927-e17c-4441-a705-ac98c899f6f5","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation acknowledgeAssignAndCloseIncident ($input: AcknowledgeAssignAndCloseIncidentInput!) {\n acknowledgeAssignAndCloseIncident (input: $input) {\n incident {\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"assigneeId\": \"\",\n \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n \"closeNote\": \"\",\n \"incidentId\": \"\",\n \"state\": \"RESOLVED\",\n \"type\": \"ACKNOWLEDGE\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Acknowledge, assign, and close an incident in a single atomic operation.\nIntended for the mobile close flow to avoid races between separate\nacknowledge, assign, and close calls.

\n

Inputs: \nAcknowledgeAssignAndCloseIncidentInput,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"4f18a60d-b939-4de2-a885-c7ac3d090c9b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation acknowledgeAssignAndCloseIncident ($input: AcknowledgeAssignAndCloseIncidentInput!) {\n acknowledgeAssignAndCloseIncident (input: $input) {\n incident {\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"assigneeId\": \"\",\n \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n \"closeNote\": \"\",\n \"incidentId\": \"\",\n \"state\": \"RESOLVED\",\n \"type\": \"ACKNOWLEDGE\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Acknowledge, assign, and close an incident in a single atomic operation.\nIntended for the mobile close flow to avoid races between separate\nacknowledge, assign, and close calls.\n\nInputs: \nAcknowledgeAssignAndCloseIncidentInput, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"acknowledgeAssignAndCloseIncident\": {\n \"incident\": {\n \"acknowledgement\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"d813a927-e17c-4441-a705-ac98c899f6f5"},{"name":"acknowledgeIncident","id":"4a4a8d07-4e7e-4a26-92a2-605db7884dd0","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation acknowledgeIncident ($input: IncidentAcknowledgementInput!) {\n acknowledgeIncident (input: $input) {\n incident {\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"autoAssign\": true,\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Acknowledge an incident based on the provided input.

\n

Inputs: \nIncidentAcknowledgementInput,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"364cb984-23a2-4698-a036-9d49db281d0e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation acknowledgeIncident ($input: IncidentAcknowledgementInput!) {\n acknowledgeIncident (input: $input) {\n incident {\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"autoAssign\": true,\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Acknowledge an incident based on the provided input.\n\nInputs: \nIncidentAcknowledgementInput, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"acknowledgeIncident\": {\n \"incident\": {\n \"acknowledgement\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"4a4a8d07-4e7e-4a26-92a2-605db7884dd0"},{"name":"addIncidentComment","id":"3aff61f6-8714-4497-a0bd-b6671a76d434","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addIncidentComment ($after: String, $filter: IncidentCommentFilter, $first: Int, $order: IncidentCommentOrder, $input: IncidentCommentInput!) {\n addIncidentComment (input: $input) {\n incident {\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n node {\n createdAt\n text\n type\n }\n }\n }\n id\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"comment\": \"\",\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Add comment to incident

\n

Inputs: \nIncidentCommentInput,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"ca1a52cd-22cc-45c2-8c71-02e44130fa81","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addIncidentComment ($after: String, $filter: IncidentCommentFilter, $first: Int, $order: IncidentCommentOrder, $input: IncidentCommentInput!) {\n addIncidentComment (input: $input) {\n incident {\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n node {\n createdAt\n text\n type\n }\n }\n }\n id\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"comment\": \"\",\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Add comment to incident\n\nInputs: \nIncidentCommentInput, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"addIncidentComment\": {\n \"incident\": {\n \"comments\": {\n \"edges\": [\n {\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"text\": \"\",\n \"type\": \"PUBLIC\"\n }\n }\n ]\n },\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"3aff61f6-8714-4497-a0bd-b6671a76d434"},{"name":"assignIncident","id":"1458f61c-2423-49e4-bcf1-1877f9c4a756","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignIncident ($input: AssignIncidentInput!) {\n assignIncident (input: $input) {\n incident {\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"assigneeId\": \"\",\n \"comment\": \"\",\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Assign a user to the incident.

\n

Inputs: \nAssignIncidentInput,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"f3593dc9-8780-4ad7-ba0c-fe11b3aab4f8","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignIncident ($input: AssignIncidentInput!) {\n assignIncident (input: $input) {\n incident {\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"assigneeId\": \"\",\n \"comment\": \"\",\n \"incidentId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Assign a user to the incident.\n\nInputs: \nAssignIncidentInput, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"assignIncident\": {\n \"incident\": {\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"1458f61c-2423-49e4-bcf1-1877f9c4a756"},{"name":"bulkCloseIncidents","id":"1f780d38-9d90-49f8-87c1-06cd1e30571a","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkCloseIncidents ($input: BulkCloseIncidentsInput!) {\n bulkCloseIncidents (input: $input) {\n incidents {\n closeCode\n closeNote\n closedAt\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiChatId\": \"\",\n \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n \"closeNote\": \"\",\n \"incidentIds\": [\n \"\"\n ],\n \"state\": \"RESOLVED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Bulk close multiple incidents with the same close code and notes

\n

Inputs: \nBulkCloseIncidentsInput,

\n

Return: \nBulkIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"020c287b-b884-4c67-ab37-406756a414e3","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkCloseIncidents ($input: BulkCloseIncidentsInput!) {\n bulkCloseIncidents (input: $input) {\n incidents {\n closeCode\n closeNote\n closedAt\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiChatId\": \"\",\n \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n \"closeNote\": \"\",\n \"incidentIds\": [\n \"\"\n ],\n \"state\": \"RESOLVED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Bulk close multiple incidents with the same close code and notes\n\nInputs: \nBulkCloseIncidentsInput, \n\nReturn: \nBulkIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"bulkCloseIncidents\": {\n \"incidents\": [\n {\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\"\n }\n ],\n \"success\": true\n }\n }\n}"}],"_postman_id":"1f780d38-9d90-49f8-87c1-06cd1e30571a"},{"name":"closeIncident","id":"d5bfe7ff-bc40-4670-bbfa-e3233e3c2b30","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeIncident ($request: CloseIncidentRequest) {\n closeIncident (request: $request) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n closeCode\n closeNote\n closedAt\n id\n }\n success\n }\n}","variables":"{\n \"request\": {\n \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n \"closeNote\": \"\",\n \"createExclusion\": true,\n \"excludeArtifacts\": {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"exclusionExpiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"incidentId\": \"\",\n \"state\": \"RESOLVED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Close Incident with close code.

\n

Set createExclusion: true on the request to also register a detection-engine exclusion\nrule for the artifacts in excludeArtifacts. That requires closeCode to be\nCUSTOMER_FALSE_POSITIVE; any other close code is rejected as a validation error. The rest\nof the exclusion rule is derived from the incident itself (its detection rule id and source\ntechnology), so only the artifacts to exclude need to be supplied.

\n

When an exclusion is requested the incident is closed first, then the exclusion rule is\ncreated. If the exclusion rule cannot be created the mutation still returns the closed\nincident with success: false and exclusionFailureReason set, rather than failing\noutright. Re-issuing the mutation with the same request is safe: re-closing an\nalready-closed incident is a no-op.

\n

Inputs: \nCloseIncidentRequest,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"b0a957a3-ba7f-4990-b0c1-19f1724f5c19","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeIncident ($request: CloseIncidentRequest) {\n closeIncident (request: $request) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n closeCode\n closeNote\n closedAt\n id\n }\n success\n }\n}","variables":"{\n \"request\": {\n \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n \"closeNote\": \"\",\n \"createExclusion\": true,\n \"excludeArtifacts\": {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"exclusionExpiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"incidentId\": \"\",\n \"state\": \"RESOLVED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Close Incident with close code.\n\nSet `createExclusion: true` on the request to also register a detection-engine exclusion\nrule for the artifacts in `excludeArtifacts`. That requires `closeCode` to be\nCUSTOMER_FALSE_POSITIVE; any other close code is rejected as a validation error. The rest\nof the exclusion rule is derived from the incident itself (its detection rule id and source\ntechnology), so only the artifacts to exclude need to be supplied.\n\nWhen an exclusion is requested the incident is closed first, then the exclusion rule is\ncreated. If the exclusion rule cannot be created the mutation still returns the closed\nincident with `success: false` and `exclusionFailureReason` set, rather than failing\noutright. Re-issuing the mutation with the same request is safe: re-closing an\nalready-closed incident is a no-op.\n\nInputs: \nCloseIncidentRequest, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"closeIncident\": {\n \"exclusionFailureReason\": \"\",\n \"exclusionRule\": {\n \"enabled\": true,\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"incident\": {\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"d5bfe7ff-bc40-4670-bbfa-e3233e3c2b30"},{"name":"releaseIncident","id":"169500c9-ca11-4baa-b223-0ae7ec843372","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation releaseIncident ($filter: ArtifactFilter, $after: String, $filter1: QueryBatchFilter, $first: Int, $order: QueryBatchOrder, $after1: String, $filter2: QueryBatchFilter, $first1: Int, $order1: QueryBatchOrder, $id: ID!) {\n releaseIncident (id: $id) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n allArtifacts (filter: $filter) {\n field\n values\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after, filter: $filter1, first: $first, order: $order) {\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n success\n }\n}","variables":"{\n \"filter\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after\": \"T18w\",\n \"filter1\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"includeArchived\": true\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Release a retained incident

\n

Inputs: \nID,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1c3b057c-8b93-489c-8881-8eb9b1e1a444","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation releaseIncident ($filter: ArtifactFilter, $after: String, $filter1: QueryBatchFilter, $first: Int, $order: QueryBatchOrder, $after1: String, $filter2: QueryBatchFilter, $first1: Int, $order1: QueryBatchOrder, $id: ID!) {\n releaseIncident (id: $id) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n allArtifacts (filter: $filter) {\n field\n values\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after, filter: $filter1, first: $first, order: $order) {\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n success\n }\n}","variables":"{\n \"filter\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after\": \"T18w\",\n \"filter1\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"includeArchived\": true\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Release a retained incident\n\nInputs: \nID, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"releaseIncident\": {\n \"exclusionFailureReason\": \"\",\n \"exclusionRule\": {\n \"enabled\": true,\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"incident\": {\n \"acknowledgedAt\": \"2026-08-01T00:00:00.000Z\",\n \"acknowledgement\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"allArtifacts\": [\n {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n }\n ],\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"category\": \"\",\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"containedAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"detectedAt\": \"2026-08-01T00:00:00.000Z\",\n \"escalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"firstEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"internalOnly\": true,\n \"investigationCompletedAt\": \"2026-08-01T00:00:00.000Z\",\n \"lastEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"logSourceType\": \"\",\n \"metadata\": {\n \"__typename\": \"IncidentEDRMetadata\",\n \"type\": \"EDR\"\n },\n \"originator\": \"DEMO\",\n \"originatorCreatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"originatorUpdatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"queryBatches\": {\n \"totalCount\": 0\n },\n \"remediatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"resolvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"retained\": true,\n \"rule\": {\n \"id\": \"\",\n \"name\": \"\",\n \"version\": 0\n },\n \"searchHistory\": {\n \"totalCount\": 0\n },\n \"severity\": \"CRITICAL\",\n \"state\": \"PENDING_CUSTOMER\",\n \"subCategory\": \"\",\n \"summary\": \"\",\n \"ticketNumber\": \"\",\n \"timeToAcknowledge\": 0,\n \"timeToContain\": 0,\n \"timeToDetect\": 0,\n \"timeToFirstEscalation\": 0,\n \"timeToInvestigate\": 0,\n \"timeToRemediate\": 0,\n \"timeToResolve\": 0,\n \"title\": \"\",\n \"type\": \"DRP\",\n \"unresolveReason\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"169500c9-ca11-4baa-b223-0ae7ec843372"},{"name":"retainIncident","id":"02692711-47dc-4490-8163-5068d36b04bd","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation retainIncident ($filter: ArtifactFilter, $after: String, $filter1: QueryBatchFilter, $first: Int, $order: QueryBatchOrder, $after1: String, $filter2: QueryBatchFilter, $first1: Int, $order1: QueryBatchOrder, $id: ID!) {\n retainIncident (id: $id) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n allArtifacts (filter: $filter) {\n field\n values\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after, filter: $filter1, first: $first, order: $order) {\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n success\n }\n}","variables":"{\n \"filter\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after\": \"T18w\",\n \"filter1\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"includeArchived\": true\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retain an incident

\n

Inputs: \nID,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"a146a9f5-8e1b-4cfb-b6c6-03de79264291","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation retainIncident ($filter: ArtifactFilter, $after: String, $filter1: QueryBatchFilter, $first: Int, $order: QueryBatchOrder, $after1: String, $filter2: QueryBatchFilter, $first1: Int, $order1: QueryBatchOrder, $id: ID!) {\n retainIncident (id: $id) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n allArtifacts (filter: $filter) {\n field\n values\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after, filter: $filter1, first: $first, order: $order) {\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n success\n }\n}","variables":"{\n \"filter\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after\": \"T18w\",\n \"filter1\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"includeArchived\": true\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retain an incident\n\nInputs: \nID, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"retainIncident\": {\n \"exclusionFailureReason\": \"\",\n \"exclusionRule\": {\n \"enabled\": true,\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"incident\": {\n \"acknowledgedAt\": \"2026-08-01T00:00:00.000Z\",\n \"acknowledgement\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"allArtifacts\": [\n {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n }\n ],\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"category\": \"\",\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"containedAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"detectedAt\": \"2026-08-01T00:00:00.000Z\",\n \"escalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"firstEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"internalOnly\": true,\n \"investigationCompletedAt\": \"2026-08-01T00:00:00.000Z\",\n \"lastEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"logSourceType\": \"\",\n \"metadata\": {\n \"__typename\": \"IncidentEDRMetadata\",\n \"type\": \"EDR\"\n },\n \"originator\": \"DEMO\",\n \"originatorCreatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"originatorUpdatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"queryBatches\": {\n \"totalCount\": 0\n },\n \"remediatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"resolvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"retained\": true,\n \"rule\": {\n \"id\": \"\",\n \"name\": \"\",\n \"version\": 0\n },\n \"searchHistory\": {\n \"totalCount\": 0\n },\n \"severity\": \"CRITICAL\",\n \"state\": \"PENDING_CUSTOMER\",\n \"subCategory\": \"\",\n \"summary\": \"\",\n \"ticketNumber\": \"\",\n \"timeToAcknowledge\": 0,\n \"timeToContain\": 0,\n \"timeToDetect\": 0,\n \"timeToFirstEscalation\": 0,\n \"timeToInvestigate\": 0,\n \"timeToRemediate\": 0,\n \"timeToResolve\": 0,\n \"title\": \"\",\n \"type\": \"DRP\",\n \"unresolveReason\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"02692711-47dc-4490-8163-5068d36b04bd"},{"name":"unresolveIncident","id":"57a9a43a-c67e-4dcc-876c-3365f3d1e5ff","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unresolveIncident ($filter: ArtifactFilter, $after: String, $filter1: QueryBatchFilter, $first: Int, $order: QueryBatchOrder, $after1: String, $filter2: QueryBatchFilter, $first1: Int, $order1: QueryBatchOrder, $input: UnresolveIncidentInput!) {\n unresolveIncident (input: $input) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n allArtifacts (filter: $filter) {\n field\n values\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after, filter: $filter1, first: $first, order: $order) {\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n success\n }\n}","variables":"{\n \"filter\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after\": \"T18w\",\n \"filter1\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"includeArchived\": true\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"incidentId\": \"\",\n \"reason\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Unresolve a resolved incident

\n

Inputs: \nUnresolveIncidentInput,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"62bef042-119c-46a4-8cfc-7b396caa2254","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unresolveIncident ($filter: ArtifactFilter, $after: String, $filter1: QueryBatchFilter, $first: Int, $order: QueryBatchOrder, $after1: String, $filter2: QueryBatchFilter, $first1: Int, $order1: QueryBatchOrder, $input: UnresolveIncidentInput!) {\n unresolveIncident (input: $input) {\n exclusionFailureReason\n exclusionRule {\n enabled\n expiresAt\n id\n name\n }\n incident {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n }\n allArtifacts (filter: $filter) {\n field\n values\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after, filter: $filter1, first: $first, order: $order) {\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n success\n }\n}","variables":"{\n \"filter\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after\": \"T18w\",\n \"filter1\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"includeArchived\": true\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"incidentId\": \"\",\n \"reason\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Unresolve a resolved incident\n\nInputs: \nUnresolveIncidentInput, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"unresolveIncident\": {\n \"exclusionFailureReason\": \"\",\n \"exclusionRule\": {\n \"enabled\": true,\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"incident\": {\n \"acknowledgedAt\": \"2026-08-01T00:00:00.000Z\",\n \"acknowledgement\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"allArtifacts\": [\n {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n }\n ],\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"category\": \"\",\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"containedAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"detectedAt\": \"2026-08-01T00:00:00.000Z\",\n \"escalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"firstEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"internalOnly\": true,\n \"investigationCompletedAt\": \"2026-08-01T00:00:00.000Z\",\n \"lastEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"logSourceType\": \"\",\n \"metadata\": {\n \"__typename\": \"IncidentEDRMetadata\",\n \"type\": \"EDR\"\n },\n \"originator\": \"DEMO\",\n \"originatorCreatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"originatorUpdatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"queryBatches\": {\n \"totalCount\": 0\n },\n \"remediatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"resolvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"retained\": true,\n \"rule\": {\n \"id\": \"\",\n \"name\": \"\",\n \"version\": 0\n },\n \"searchHistory\": {\n \"totalCount\": 0\n },\n \"severity\": \"CRITICAL\",\n \"state\": \"PENDING_CUSTOMER\",\n \"subCategory\": \"\",\n \"summary\": \"\",\n \"ticketNumber\": \"\",\n \"timeToAcknowledge\": 0,\n \"timeToContain\": 0,\n \"timeToDetect\": 0,\n \"timeToFirstEscalation\": 0,\n \"timeToInvestigate\": 0,\n \"timeToRemediate\": 0,\n \"timeToResolve\": 0,\n \"title\": \"\",\n \"type\": \"DRP\",\n \"unresolveReason\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"57a9a43a-c67e-4dcc-876c-3365f3d1e5ff"},{"name":"updateIncidentState","id":"30ff4a50-6c61-4c15-9c31-56bc16c80327","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateIncidentState ($input: UpdateIncidentStateInput!) {\n updateIncidentState (input: $input) {\n incident {\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"incidentId\": \"\",\n \"state\": \"PENDING_CUSTOMER\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Updates incident state and add comment

\n

Inputs: \nUpdateIncidentStateInput,

\n

Return: \nIncidentResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"77d3ad7f-a10d-48bb-924e-748ee37df9e2","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateIncidentState ($input: UpdateIncidentStateInput!) {\n updateIncidentState (input: $input) {\n incident {\n id\n state\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"comment\": \"\",\n \"incidentId\": \"\",\n \"state\": \"PENDING_CUSTOMER\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Updates incident state and add comment\n\nInputs: \nUpdateIncidentStateInput, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateIncidentState\": {\n \"incident\": {\n \"id\": \"\",\n \"state\": \"PENDING_CUSTOMER\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"30ff4a50-6c61-4c15-9c31-56bc16c80327"}],"id":"0fe67644-08f0-40d9-948e-22b794407c62","_postman_id":"0fe67644-08f0-40d9-948e-22b794407c62","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"healthIncidents","id":"9e274c3e-733e-4bff-b508-600f9fc9b70d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query healthIncidents ($after: String, $first: Int, $incidentFilter: HealthIncidentFilter, $incidentOrder: IncidentOrder) {\n healthIncidents (after: $after, first: $first, incidentFilter: $incidentFilter, incidentOrder: $incidentOrder) {\n edges {\n cursor\n node {\n acknowledgedAt\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n originator\n originatorCreatedAt\n originatorUpdatedAt\n remediatedAt\n removedAt\n resolvedAt\n retained\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"incidentFilter\": {\n \"acknowledged\": true,\n \"assignees\": [\n \"\"\n ],\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"escalated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"notAssignees\": [\n \"\"\n ],\n \"retained\": true,\n \"ruleNumbers\": [\n \"\"\n ],\n \"search\": \"\",\n \"severity\": [\n \"CRITICAL\"\n ],\n \"state\": [\n \"PENDING_CUSTOMER\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"incidentOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all Incidents of the HEALTH type which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, before = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, Int, HealthIncidentFilter, IncidentOrder,

\n

Return: \nIncidentConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"9b1eaf31-5a29-471e-a0c1-130ed80f3a98","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query healthIncidents ($after: String, $first: Int, $incidentFilter: HealthIncidentFilter, $incidentOrder: IncidentOrder) {\n healthIncidents (after: $after, first: $first, incidentFilter: $incidentFilter, incidentOrder: $incidentOrder) {\n edges {\n cursor\n node {\n acknowledgedAt\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n originator\n originatorCreatedAt\n originatorUpdatedAt\n remediatedAt\n removedAt\n resolvedAt\n retained\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"incidentFilter\": {\n \"acknowledged\": true,\n \"assignees\": [\n \"\"\n ],\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"escalated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"notAssignees\": [\n \"\"\n ],\n \"retained\": true,\n \"ruleNumbers\": [\n \"\"\n ],\n \"search\": \"\",\n \"severity\": [\n \"CRITICAL\"\n ],\n \"state\": [\n \"PENDING_CUSTOMER\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"incidentOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all Incidents of the HEALTH type which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, before = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, Int, HealthIncidentFilter, IncidentOrder, \n\nReturn: \nIncidentConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"healthIncidents\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"acknowledgedAt\": \"2026-08-01T00:00:00.000Z\",\n \"category\": \"\",\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"containedAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"detectedAt\": \"2026-08-01T00:00:00.000Z\",\n \"escalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"firstEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"internalOnly\": true,\n \"investigationCompletedAt\": \"2026-08-01T00:00:00.000Z\",\n \"lastEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"logSourceType\": \"\",\n \"originator\": \"DEMO\",\n \"originatorCreatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"originatorUpdatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"remediatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"resolvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"retained\": true,\n \"severity\": \"CRITICAL\",\n \"state\": \"PENDING_CUSTOMER\",\n \"subCategory\": \"\",\n \"summary\": \"\",\n \"ticketNumber\": \"\",\n \"timeToAcknowledge\": 0,\n \"timeToContain\": 0,\n \"timeToDetect\": 0,\n \"timeToFirstEscalation\": 0,\n \"timeToInvestigate\": 0,\n \"timeToRemediate\": 0,\n \"timeToResolve\": 0,\n \"title\": \"\",\n \"type\": \"DRP\",\n \"unresolveReason\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"9e274c3e-733e-4bff-b508-600f9fc9b70d"},{"name":"incident","id":"98b1010f-9ba4-4047-8303-b706bb015481","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query incident ($after: String, $filter: IncidentActivityLogFilter, $first: Int, $order: IncidentActivityLogOrder, $filter1: ArtifactFilter, $after1: String, $filter2: AccessGroupFilter, $first1: Int, $order1: AccessGroupOrder, $after2: String, $filter3: PodFilter, $first2: Int, $order2: PodOrder, $after3: String, $filter4: RoleFilter, $first3: Int, $order3: RoleFilter, $after4: String, $filter5: IncidentCommentFilter, $first4: Int, $order4: IncidentCommentOrder, $after5: String, $first5: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after6: String, $first6: Int, $after7: String, $filter6: QueryBatchFilter, $first7: Int, $order5: QueryBatchOrder, $after8: String, $filter7: QueryBatchFilter, $first8: Int, $order6: QueryBatchOrder, $by: IncidentBy) {\n incident (by: $by) {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n allArtifacts (filter: $filter1) {\n field\n values\n }\n assignee {\n accessGroups (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after2, filter: $filter3, first: $first2, order: $order2) {\n totalCount\n }\n roles (after: $after3, filter: $filter4, first: $first3, order: $order3) {\n totalCount\n }\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n comments (after: $after4, filter: $filter5, first: $first4, order: $order4) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n containedAt\n createdAt\n customer {\n accessControlPolicies (after: $after5, first: $first5) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after6, first: $first6) {\n totalCount\n }\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after7, filter: $filter6, first: $first7, order: $order5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after8, filter: $filter7, first: $first8, order: $order6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CREATED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"filter1\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after4\": \"T18w\",\n \"filter5\": {\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after5\": \"T18w\",\n \"first5\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after6\": \"T18w\",\n \"first6\": 10,\n \"after7\": \"T18w\",\n \"filter6\": {\n \"includeArchived\": true\n },\n \"first7\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after8\": \"T18w\",\n \"filter7\": {\n \"includeArchived\": true\n },\n \"first8\": 10,\n \"order6\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"by\": {\n \"id\": \"\",\n \"ticketNumber\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch Incident by either incidentId OR ticketNumber.

\n

Inputs: \nIncidentBy,

\n

Return: \nIncident

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"97185ccd-abc6-47a4-a4f2-07f3b7d4cdae","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query incident ($after: String, $filter: IncidentActivityLogFilter, $first: Int, $order: IncidentActivityLogOrder, $filter1: ArtifactFilter, $after1: String, $filter2: AccessGroupFilter, $first1: Int, $order1: AccessGroupOrder, $after2: String, $filter3: PodFilter, $first2: Int, $order2: PodOrder, $after3: String, $filter4: RoleFilter, $first3: Int, $order3: RoleFilter, $after4: String, $filter5: IncidentCommentFilter, $first4: Int, $order4: IncidentCommentOrder, $after5: String, $first5: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after6: String, $first6: Int, $after7: String, $filter6: QueryBatchFilter, $first7: Int, $order5: QueryBatchOrder, $after8: String, $filter7: QueryBatchFilter, $first8: Int, $order6: QueryBatchOrder, $by: IncidentBy) {\n incident (by: $by) {\n acknowledgedAt\n acknowledgement {\n acknowledgementMethod\n createdAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n allArtifacts (filter: $filter1) {\n field\n values\n }\n assignee {\n accessGroups (after: $after1, filter: $filter2, first: $first1, order: $order1) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after2, filter: $filter3, first: $first2, order: $order2) {\n totalCount\n }\n roles (after: $after3, filter: $filter4, first: $first3, order: $order3) {\n totalCount\n }\n serviceNowId\n }\n category\n closeCode\n closeNote\n closedAt\n comments (after: $after4, filter: $filter5, first: $first4, order: $order4) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n containedAt\n createdAt\n customer {\n accessControlPolicies (after: $after5, first: $first5) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after6, first: $first6) {\n totalCount\n }\n }\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n metadata {\n type\n }\n originator\n originatorCreatedAt\n originatorUpdatedAt\n queryBatches (after: $after7, filter: $filter6, first: $first7, order: $order5) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n remediatedAt\n removedAt\n resolvedAt\n retained\n rule {\n id\n name\n version\n }\n searchHistory (after: $after8, filter: $filter7, first: $first8, order: $order6) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CREATED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"filter1\": {\n \"fields\": [\n \"\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter2\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after4\": \"T18w\",\n \"filter5\": {\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after5\": \"T18w\",\n \"first5\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after6\": \"T18w\",\n \"first6\": 10,\n \"after7\": \"T18w\",\n \"filter6\": {\n \"includeArchived\": true\n },\n \"first7\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after8\": \"T18w\",\n \"filter7\": {\n \"includeArchived\": true\n },\n \"first8\": 10,\n \"order6\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"by\": {\n \"id\": \"\",\n \"ticketNumber\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch Incident by either incidentId OR ticketNumber.\n\nInputs: \nIncidentBy, \n\nReturn: \nIncident\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"incident\": {\n \"acknowledgedAt\": \"2026-08-01T00:00:00.000Z\",\n \"acknowledgement\": {\n \"acknowledgementMethod\": \"WEB_UI\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"activity\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n }\n },\n \"allArtifacts\": [\n {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n }\n ],\n \"assignee\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"category\": \"\",\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n }\n },\n \"containedAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"description\": \"\",\n \"detectedAt\": \"2026-08-01T00:00:00.000Z\",\n \"escalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"firstEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"internalOnly\": true,\n \"investigationCompletedAt\": \"2026-08-01T00:00:00.000Z\",\n \"lastEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"logSourceType\": \"\",\n \"metadata\": {\n \"__typename\": \"IncidentEDRMetadata\",\n \"type\": \"EDR\"\n },\n \"originator\": \"DEMO\",\n \"originatorCreatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"originatorUpdatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"queryBatches\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"remediatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"resolvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"retained\": true,\n \"rule\": {\n \"id\": \"\",\n \"name\": \"\",\n \"version\": 0\n },\n \"searchHistory\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"severity\": \"CRITICAL\",\n \"state\": \"PENDING_CUSTOMER\",\n \"subCategory\": \"\",\n \"summary\": \"\",\n \"ticketNumber\": \"\",\n \"timeToAcknowledge\": 0,\n \"timeToContain\": 0,\n \"timeToDetect\": 0,\n \"timeToFirstEscalation\": 0,\n \"timeToInvestigate\": 0,\n \"timeToRemediate\": 0,\n \"timeToResolve\": 0,\n \"title\": \"\",\n \"type\": \"DRP\",\n \"unresolveReason\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n}"}],"_postman_id":"98b1010f-9ba4-4047-8303-b706bb015481"},{"name":"incidents","id":"84888872-7548-4491-a1d3-d9890d960b64","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query incidents ($after: String, $first: Int, $incidentFilter: IncidentFilter, $incidentOrder: IncidentOrder) {\n incidents (after: $after, first: $first, incidentFilter: $incidentFilter, incidentOrder: $incidentOrder) {\n edges {\n cursor\n node {\n acknowledgedAt\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n originator\n originatorCreatedAt\n originatorUpdatedAt\n remediatedAt\n removedAt\n resolvedAt\n retained\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"incidentFilter\": {\n \"acknowledged\": true,\n \"assignees\": [\n \"\"\n ],\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"commentFilter\": {\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"escalated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"incidentTypes\": [\n \"DRP\"\n ],\n \"internalOnly\": true,\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"memories\": [\n \"\"\n ],\n \"notAssignees\": [\n \"\"\n ],\n \"retained\": true,\n \"ruleNumbers\": [\n \"\"\n ],\n \"search\": \"\",\n \"severity\": [\n \"CRITICAL\"\n ],\n \"state\": [\n \"PENDING_CUSTOMER\"\n ],\n \"ticketNumber\": \"\",\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"incidentOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all Incidents which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, before = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, Int, IncidentFilter, IncidentOrder,

\n

Return: \nIncidentConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"319c5a3d-faea-4213-aefc-6052a5ceba4b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query incidents ($after: String, $first: Int, $incidentFilter: IncidentFilter, $incidentOrder: IncidentOrder) {\n incidents (after: $after, first: $first, incidentFilter: $incidentFilter, incidentOrder: $incidentOrder) {\n edges {\n cursor\n node {\n acknowledgedAt\n category\n closeCode\n closeNote\n closedAt\n containedAt\n createdAt\n description\n detectedAt\n escalatedAt\n firstEscalatedAt\n id\n internalOnly\n investigationCompletedAt\n lastEscalatedAt\n logSourceType\n originator\n originatorCreatedAt\n originatorUpdatedAt\n remediatedAt\n removedAt\n resolvedAt\n retained\n severity\n state\n subCategory\n summary\n ticketNumber\n timeToAcknowledge\n timeToContain\n timeToDetect\n timeToFirstEscalation\n timeToInvestigate\n timeToRemediate\n timeToResolve\n title\n type\n unresolveReason\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"incidentFilter\": {\n \"acknowledged\": true,\n \"assignees\": [\n \"\"\n ],\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"commentFilter\": {\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"earliestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"escalated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"incidentTypes\": [\n \"DRP\"\n ],\n \"internalOnly\": true,\n \"latestCreate\": \"2026-08-01T00:00:00.000Z\",\n \"memories\": [\n \"\"\n ],\n \"notAssignees\": [\n \"\"\n ],\n \"retained\": true,\n \"ruleNumbers\": [\n \"\"\n ],\n \"search\": \"\",\n \"severity\": [\n \"CRITICAL\"\n ],\n \"state\": [\n \"PENDING_CUSTOMER\"\n ],\n \"ticketNumber\": \"\",\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"incidentOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all Incidents which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, before = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, Int, IncidentFilter, IncidentOrder, \n\nReturn: \nIncidentConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"incidents\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"acknowledgedAt\": \"2026-08-01T00:00:00.000Z\",\n \"category\": \"\",\n \"closeCode\": \"\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"containedAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"detectedAt\": \"2026-08-01T00:00:00.000Z\",\n \"escalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"firstEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"internalOnly\": true,\n \"investigationCompletedAt\": \"2026-08-01T00:00:00.000Z\",\n \"lastEscalatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"logSourceType\": \"\",\n \"originator\": \"DEMO\",\n \"originatorCreatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"originatorUpdatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"remediatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"removedAt\": \"2026-08-01T00:00:00.000Z\",\n \"resolvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"retained\": true,\n \"severity\": \"CRITICAL\",\n \"state\": \"PENDING_CUSTOMER\",\n \"subCategory\": \"\",\n \"summary\": \"\",\n \"ticketNumber\": \"\",\n \"timeToAcknowledge\": 0,\n \"timeToContain\": 0,\n \"timeToDetect\": 0,\n \"timeToFirstEscalation\": 0,\n \"timeToInvestigate\": 0,\n \"timeToRemediate\": 0,\n \"timeToResolve\": 0,\n \"title\": \"\",\n \"type\": \"DRP\",\n \"unresolveReason\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"84888872-7548-4491-a1d3-d9890d960b64"}],"id":"aceb4273-7cdc-4b96-8e59-6a3f70c14076","_postman_id":"aceb4273-7cdc-4b96-8e59-6a3f70c14076","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"f46399bc-c94e-4daf-9489-637c00886587","description":"

IncidentFilter

\n

Incident Filter input type to filter out Incidents. If not set, defaults will be used.\nDefaults: state = NEW

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgedFilter out incidents based on acknowledgment True: Acknowledged incidents False: Un-Acknowledged incidentsBoolean
assigneesList of assignee IDs to filterID
closedIncident closed TimeRange filter (Earliest and latest TimeStamp)TimeRange
commentFilterA comment filter. Filter incidents based on whether or not they have comments that match the comment filter.IncidentCommentFilter
createdIncident creation TimeRange filter (Earliest and latest TimeStamp)TimeRange
earliestCreate [DEPRECATED][DEPRECATED: Use created instead. Deprecated on 2025-01-15.] Incident creation earliest TimeStamp.DateTime
escalatedIncident escalated TimeRange filter (Earliest and latest TimeStamp)TimeRange
incidentTypesIncident type based filter. Note: While ENGINEERING/HEALTH are valid IncidentTypes, it cannot be used to filter for the incidents query. To query HEALTH Incidents, please use the healthIncidents query.IncidentType
internalOnlyAn internal only incident is an incident logged by a customer as internal only for their own tracking purposes and worked only by the customer, not by RQBoolean
latestCreate [DEPRECATED][DEPRECATED: Use created instead. Deprecated on 2025-01-15.] Incident creation latest TimeStamp.DateTime
memoriesThe memory ID's that were used in responding to and influencing the decision of this ticket. Memories are user-provided context for the AI to refine its decision making.ID
notAssigneesList of assignee IDs to exclude, not include, in the filter.ID
retainedFilter on if the incident has been marked as retained or not True: Retained incidents False: Unretained incidentsBoolean
ruleNumbersList of rule number to filter incidentsString
searchWildcard search string to search from Incident's Title/Description/Type/TicketNumber/Summary.String
severityList of Severities to filter.IncidentSeverity
stateList of States to filter.IncidentState
ticketNumberA human-readable ticket or case number for the incident. Note: The ticketNumber always begins with \"RQ\".String
unassignedFilter out incidents based on assignment True: Incidents which are not assigned to any user False: Incidents which are assigned to userBoolean
updatedIncident updated TimeRange filter (Earliest and latest TimeStamp)TimeRange
\n

HealthIncidentFilter

\n

Health Incident Filter input type to filter out Incidents. If not set, defaults will be used. The difference\nof this filter and the other IncidentFilter is that you cannot filter by types. This will always return incidents of\nthe Health type.\nDefaults: state = NEW

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgedFilter out incidents based on acknowledgment True: Acknowledged incidents False: Un-Acknowledged incidentsBoolean
assigneesList of assignee IDs to filterID
closedIncident closed TimeRange filter (Earliest and latest TimeStamp)TimeRange
createdIncident creation TimeRange filter (Earliest and latest TimeStamp)TimeRange
escalatedIncident escalated TimeRange filter (Earliest and latest TimeStamp)TimeRange
notAssigneesList of assignee IDs to exclude, not include, in the filter.ID
retainedFilter on if the incident has been marked as retained or not True: Retained incidents False: Unretained incidentsBoolean
ruleNumbersList of rule number to filter incidentsString
searchWildcard search string to search from Incident's Title/Description/Type/TicketNumber/Summary.String
severityList of Severities to filter.IncidentSeverity
stateList of States to filter.IncidentState
unassignedFilter out incidents based on assignment True: Incidents which are not assigned to any user False: Incidents which are assigned to userBoolean
updatedIncident updated TimeRange filter (Earliest and latest TimeStamp)TimeRange
\n

IncidentOrderBy

\n

Order by ENUM for Incidents.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOSED_AT
CREATED_AT
ESCALATED_AT
SEVERITY
STATE
\n

IncidentOrder

\n

Incident OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByIncidentOrderBy
\n

IncidentBy

\n

Input type to get Incident by either incidentId or ticketNumber.\nThis input is annotated with @oneOf directive so only one field should be provided to fetch Incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
ticketNumberString
\n

Incident

\n

Incident schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgedAtDateTime
acknowledgementThe acknowledgement record for the incident, if acknowledged.IncidentAcknowledgement
activityPaginated activity log entries that capture changes to the incident.IncidentActivityLogConnection
allArtifactsAll artifacts associated with the incident.Artifact
assigneeThe user currently assigned to the incident.User
categoryThe high-level category associated with the incident.String
closeCodeThe code indicating why the incident was closed.String
closeNoteNotes entered at the time of closing the incident.String
closedAtWhen the incident was closed.DateTime
commentsPaginated list of comments associated with the incident from the customer or ReliaQuest team.IncidentCommentConnection
containedAtDateTime
createdAtWhen the incident was created in GreyMatter.DateTime
customerThe assigned customer of this incident.Customer
descriptionA detailed description of the incident.String
detectedAtDateTime
escalatedAtWhen the incident was escalated to the customer, if applicable.DateTime
firstEscalatedAtDateTime
idThe ID of the incident.ID
internalOnlyAn internal only incident is an incident logged by a customer for their own tracking purposes and worked only by the customer, not by RQBoolean
investigationCompletedAtDateTime
lastEscalatedAtDateTime
logSourceTypeThe data source the detection was run against.String
metadataSource-specific metadata associated with the incident. The concrete type corresponds to the metadata type field, so select fields via an inline fragment on that type. Note: incidents of type PHISHING_ANALYZER previously resolved to IncidentSIEMMetadata and now resolve to IncidentPhishingAnalyzerMetadata. A fragment on IncidentSIEMMetadata no longer matches them; the four shared fields are unchanged on the new type.IncidentMetadata
originatorThe source that originated or reported the incident.IncidentOriginator
originatorCreatedAtWhen the incident originator initially created the incident.DateTime
originatorUpdatedAtWhen the incident originator last updated the incident, if applicable.DateTime
queryBatches [DEPRECATED][DEPRECATED: Use searchHistory instead. Deprecated on 2025-01-10.]QueryBatchConnection
remediatedAtDateTime
removedAtWhen the incident was removed, if applicable.DateTime
resolvedAtDateTime
retainedWhether the incident query data has been retained (preserved) for longer-term reference.Boolean
ruleThe detection rule that generated the incident.IncidentRule
searchHistoryHistorical queries associated with the incident.QueryBatchConnection
severityThe severity level assigned to the incident.IncidentSeverity
stateThe current state of the incident.IncidentState
subCategoryThe subcategory providing additional classification.String
summaryA short summary of the incident.String
ticketNumberA human-readable ticket or case number for the incident. Note: The ticketNumber always begins with \"RQ\".String
timeToAcknowledgeLong
timeToContainLong
timeToDetectLong
timeToFirstEscalationLong
timeToInvestigateLong
timeToRemediateLong
timeToResolveLong
titleThe title of the incident.String
typeThe type of the incident based on source.IncidentType
unresolveReasonUnresolve reason if provided while doing the un resolve activityString
updatedAtWhen the incident was last updated in GreyMatter.DateTime
\n

IncidentResponse

\n

The IncidentResponse type is used to return the result of an incident-related operation.

\n

Fields:

\n
    \n
  • success: Indicates whether the operation was successful.
  • \n
  • incident: Provides details of the incident (optional, might be null if no incident is associated).
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    FieldDescriptionType
    exclusionFailureReasonWhy the exclusion rule could not be created, when closeIncident was called with createExclusion true, the incident was closed, but the rule creation failed. Null otherwise. Reports the reason given by the detection service when there is one; otherwise a generic message, with the underlying failure recorded in the server logs.String
    exclusionRuleThe exclusion rule that was created. Only populated by closeIncident when createExclusion was true and the rule was created successfully; null otherwise.IncidentExclusionRule
    incidentProvides details of the incident (optional, might be null if no incident is associated).Incident
    successIndicates whether the operation was successful.Boolean
    \n
  • \n
\n

IncidentEdge

\n

IncidentEdge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeIncident
\n

IncidentConnection

\n

Incident Connection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesIncidentEdge
pageInfoPageInfo
totalCountInt
\n

IncidentRule

\n

Rule details of Incidents.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idString
nameString
versionInt
\n

IncidentMetadata

\n

Metadata associated with the incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
typeIncidentMetadataType
\n

IncidentMetadataType

\n

Incident Metadata Type. Each type will have different metadata associated with it.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
EDR
ENGINEERING
HEALTH
PHISHING_ANALYZER
SIEM
\n

IncidentSIEMMetadata

\n

SIEM metadata for an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
duplicatedIncidentIncident
integrationIntegration
sourceTechnologyString
typeIncidentMetadataType
\n

IncidentEDRMetadata

\n

EDR metadata for an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
duplicatedIncidentIncident
integrationIntegration
sourceTechnologyString
typeIncidentMetadataType
\n

IncidentEngineeringMetadata

\n

ENGINEERING metadata for an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
duplicatedIncidentIncident
integrationIntegration
sourceTechnologyString
typeIncidentMetadataType
\n

IncidentHealthMetadata

\n

HEALTH metadata for an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
duplicatedIncidentIncident
integrationIntegration
sourceTechnologyString
typeIncidentMetadataType
\n

IncidentPhishingAnalyzerMetadata

\n

PHISHING_ANALYZER metadata for an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
duplicatedIncidentIncident
integrationIntegration
sourceTechnologyString
typeIncidentMetadataType
\n

IncidentOriginator

\n

The source that originated or reported the incident to the system.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
DEMO
SERVICENOW
UNKNOWN
\n

IncidentState

\n

Incident State ENUM.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CANCELLEDThe incident has been cancelled.
CLOSEDThe incident has been closed.
IN_PROGRESSThe incident is currently being investigated.
NEWA new incident has been created.
ON_HOLDThe incident is on hold.
PENDING_CUSTOMERThe incident is pending a response or action from the customer.
PENDING_RQThe incident is pending a response or action from the ReliaQuest team.
PENDING_VENDORThe incident is pending a response or action from a vendor.
RESOLVEDThe incident has been resolved.
UNKNOWN
\n

IncidentSeverity

\n

Incidents Severity ENUM.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
INFORMATIONAL
LOW
MEDIUM
UNASSESSED
\n

IncidentType

\n

Incidents Type ENUM.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
DRPIncident generated from Digital Risk Protection.
EDRIncident generated from the customer's EDR tool.
ENGINEERINGHealth alert generated by GreyMatter.
HEALTHHealth alert generated by GreyMatter.
PHISHING_ANALYZERIncident generated by Greymatter's Phishing Analyzer
SIEMIncident generated from the customer's SIEM.
\n

Artifact

\n

Critical data points associated to an Incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldAll possible artifact fields can be pulled from the greymatterFields query.String
valuesString
\n

ArtifactFilter

\n

Collection of Artifacts to fetch with Incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldsString
\n

IncidentAcknowledgement

\n

Represents an acknowledgement of an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgementMethodThe method used to acknowledge the incident.IncidentAcknowledgementMethod
createdAtThe timestamp when the incident was acknowledged (optional).DateTime
userThe user who acknowledged the incident (optional).User
\n

IncidentAcknowledgementMethod

\n

Enum for the methods used to acknowledge an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACTION_TOKENAcknowledged via a notification link
APIAcknowledged via the API
AUTOMATED_CALLOUTAcknowledged via an automated call-out
GREYMATTER_WORKFLOWAcknowledged via a GreyMatter Workflow
MOBILE_APPAcknowledged through the mobile application.
SNOWAcknowledged through the ServiceNow (SNOW) platform.
WEB_UIAcknowledged through the GreyMatter web platform.
\n

IncidentAcknowledgementInput

\n

Input type for acknowledging an incident.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgementMethodThe method used to acknowledge the incident.IncidentAcknowledgementMethod
autoAssign [DEPRECATED][DEPRECATED: Not used anymore. Default across system is true. Since 2025-06-26.] Whether to auto-assign the incident (default is false).Boolean
incidentIdThe unique identifier of the incident.ID
\n

IncidentCommentOrderBy

\n

Order by ENUM for Incident Comments

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
CREATED_BY
TYPE
\n

IncidentCommentOrder

\n

Incident Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByIncidentCommentOrderBy
\n

IncidentCommentType

\n

Incident Comment Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
PUBLIC
\n

IncidentCommentFilter

\n

Incident comment filter input type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
earliestCreateComment creation earliest timestamp (Optional)DateTime
latestCreateComment creation latest timestamp (Optional)DateTime
typesComment type to be filtered. (Required) Will be set to default if not explicitly passed.IncidentCommentType
\n

IncidentComment

\n

Represents the Incident Comment schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByUser
textString
typeIncidentCommentType
\n

IncidentCommentEdge

\n

IncidentComment Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeIncidentComment
\n

IncidentCommentConnection

\n

Incident Comment Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesIncidentCommentEdge
pageInfoPageInfo
\n

IncidentActivityLogOrderBy

\n

Order by ENUM for Incident Activity Log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
CREATED_BY
FIELD
FIELD_VALUE_NEW
FIELD_VALUE_OLD
TYPE
\n

IncidentActivityLogOrder

\n

Incident Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByListIncidentActivityLogOrderBy
\n

IncidentActivityLogFilter

\n

Incident activity log filter input type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdActivity log creation time range (Optional)TimeRange
typesActivity log type to be filtered. (Required) Will be set to default if not explicitly passed.IncidentActivityLogType
\n

IncidentActivityLogType

\n

Incident Activity Log Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED
UPDATED
\n

IncidentActivityLogEntry

\n

Represents the Incident Activity Log Entry schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtWhen the action was performedDateTime
createdByWho performed the actionUser
customerWhich customer owns the incident that was created/updated/etc.Customer
fieldThe name of the field that changed null when type is CREATEDString
fieldValueNewA JSON-serialized string representing the updated value following the action null when type is CREATEDString
fieldValueOldA JSON-serialized string representing the original value prior to the action null when type is CREATEDString
typeThe type of action performedIncidentActivityLogType
\n

IncidentActivityLogEdge

\n

IncidentActivityLog Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeIncidentActivityLogEntry
\n

IncidentActivityLogConnection

\n

Incident Activity Log Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesIncidentActivityLogEdge
pageInfoPageInfo
\n

AssignIncidentInput

\n

Input type to assign an incident to a user.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeIdThe ID of the user to assign to the incident. Null unassigns the incident.ID
commentOptional comment recorded with the assignment change.String
incidentIdThe ID of the incident to assign.ID
\n

UpdatableIncidentState

\n

Represents different states an Incident can be updated with

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CANCELLEDThe incident has been cancelled.
IN_PROGRESSThe incident is currently being investigated.
NEWA new incident has been created.
ON_HOLDThe incident is on hold.
PENDING_CUSTOMERThe incident is pending a response or action from the customer.
PENDING_RQThe incident is pending a response or action from the ReliaQuest team.
PENDING_VENDORThe incident is pending a response or action from a vendor.
\n

UpdateIncidentStateInput

\n

Input type to update Incident state

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentComment StringString
incidentIdIncident id to update stateID
stateState to updateUpdatableIncidentState
\n

ClosableIncidentState

\n

States which can be assigned while closing incident

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOSED
RESOLVED
\n

IncidentCloseCode

\n

Represents incident close code

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CUSTOMER_ANOMALOUS_SAFEActivity has been determined as safe, but the same activity can sometimes be malicious.
CUSTOMER_CANCELLED
CUSTOMER_ESCALATED_AS_INTERNAL_INCIDENT
CUSTOMER_FALSE_POSITIVEActivity does not match the use case that was intended to catch.
CUSTOMER_NOT_APPLICABLE
CUSTOMER_NO_RESPONSE_AUTO_CLOSE
CUSTOMER_NO_RESPONSE_RECEIVED
CUSTOMER_RECOMMENDATION_APPROVED_AND_RQ_ACTION_NEEDED
CUSTOMER_RECOMMENDATION_CUSTOMER_IMPLEMENTED
CUSTOMER_RECOMMENDATION_DECLINED
CUSTOMER_SECURITY_CONTROL_TESTINGActivity is related to known security control testing.
CUSTOMER_TRUE_POSITIVEConfirmed malicious activity.
CUSTOMER_TRUE_POSITIVE_SUSPICIOUS
FALSE_POSITIVE_CREATE_TUNING_TICKETOpens up a tuning ticket to be actioned by ReliaQuest.
\n

CloseIncidentRequest

\n

Represents close incident request

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
closeCodeClose code to be used for closing this incident. (Required)IncidentCloseCode
closeNoteReason/Notes for closing the incident. (Required)String
createExclusionAlso register a detection-engine exclusion rule for the artifacts in excludeArtifacts. (Optional) Default: false Requires closeCode to be CUSTOMER_FALSE_POSITIVE and at least one entry in excludeArtifacts; any other combination is rejected as a validation error.Boolean
excludeArtifactsThe artifacts to exclude. An incident whose artifacts match every entry here will be excluded from the incident's detection rule going forward. Required when createExclusion is true, and only allowed when createExclusion is true.IncidentExclusionArtifactInput
exclusionExpiresAtWhen the exclusion should stop applying. Null means the exclusion never expires. (Optional) Only allowed when createExclusion is true.DateTime
incidentIdIncident id to close. (Required)ID
stateState of the incident on closure. (Optional) Default: RESOLVEDClosableIncidentState
\n

IncidentCommentInput

\n

Input to create an IncidentComment.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentThe text body of the comment.String
incidentIdThe ID of the incident to comment on.ID
\n

UnresolveIncidentInput

\n

Represents unresolve incident input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
incidentIdIncident id to unresolve. (Required)ID
reasonReason for unresolving the incident. (Optional)String
\n

BulkCloseIncidentsInput

\n

Input for bulk closing incidents with the same close code and notes

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aiChatIdOptional AI chat ID to associate with all incident closures.ID
closeCodeThe close code to apply to all incidents. (Required)IncidentCloseCode
closeNoteThe close note to apply to all incidents. (Required)String
incidentIdsIDs of the incidents to close. Maximum 100 IDs per request. (Required)ID
stateWhether to set the closed status (CLOSED) or the resolved status (RESOLVED). Defaults to RESOLVED.ClosableIncidentState
\n

BulkIncidentResponse

\n

Response for bulk incident mutations. Contains the updated incidents.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
incidentsThe updated incidents.Incident
successWhether the operation was successful.Boolean
\n

AcknowledgeAssignAndCloseIncidentInput

\n

Represents an atomic acknowledge + assign + close request, used by the\nmobile app to avoid the race between separate acknowledge, assign, and\nclose operations.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgementMethodMethod used to acknowledge the incident if it is not already acknowledged.IncidentAcknowledgementMethod
assigneeIdThe id of the user to assign to the incident. When null, the current user is used.ID
closeCodeClose code to be used for closing this incident. Required when type is CLOSE.IncidentCloseCode
closeNoteReason/Notes for closing the incident. Required when type is CLOSE.String
incidentIdIncident id to acknowledge, assign, and close. (Required)ID
stateState of the incident on closure. (Optional) Default: RESOLVEDClosableIncidentState
typeSelects which steps to perform. CLOSE performs acknowledge + assign + close, ASSIGN performs acknowledge + assign, ACKNOWLEDGE performs acknowledge only. Default: CLOSEIncidentActionType
\n

IncidentExclusionArtifactInput

\n

A single artifact field and the values of that field to exclude.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldThe artifact field name, as reported on the incident's artifacts (e.g. \"message\"). (Required)String
valuesThe values of that field to exclude. At least one value is required.String
\n

IncidentExclusionRule

\n

A customer detection-engine exclusion rule registered when an incident was closed as a false positive.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
enabledWhether the exclusion is currently in effect.Boolean
expiresAtWhen the exclusion stops applying. Null when the exclusion never expires.DateTime
idID
nameGenerated name of the exclusion rule.String
\n

IncidentActionType

\n

Action selector for AcknowledgeAssignAndCloseIncidentInput. Controls which of\nthe acknowledge / assign / close steps are performed: each value performs that\nstep and all preceding ones.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACKNOWLEDGEAcknowledge the incident only.
ASSIGNAcknowledge the incident and assign it to the current user.
CLOSEAcknowledge, assign, and close the incident.
\n
","_postman_id":"f46399bc-c94e-4daf-9489-637c00886587","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Indicators","item":[{"name":"Queries","item":[{"name":"indicator","id":"e49f4399-88f3-4807-ace5-d9bf1f530c04","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query indicator ($by: IOCBy!) {\n indicator (by: $by) {\n city\n countScore\n country\n description\n feedNames\n firstSeenAt\n id\n lastSeenAt\n name\n region\n reliabilityScore\n severity\n threatScore\n type\n }\n}","variables":"{\n \"by\": {\n \"id\": \"\",\n \"input\": {\n \"name\": \"\",\n \"type\": \"CIDR\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch a Indicator by IOCBy search filter.\nWhen includeDynamicAggregates is true (default), dynamically creates aggregates from associated IOCs (DOMAIN↔URL, CIDR↔IP).\nWhen false, returns only pre-computed aggregates from the database.

\n

Inputs: \nIOCBy,

\n

Return: \nIndicator

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"068b8e97-086e-4955-b759-2a17b6cf67f3","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query indicator ($by: IOCBy!) {\n indicator (by: $by) {\n city\n countScore\n country\n description\n feedNames\n firstSeenAt\n id\n lastSeenAt\n name\n region\n reliabilityScore\n severity\n threatScore\n type\n }\n}","variables":"{\n \"by\": {\n \"id\": \"\",\n \"input\": {\n \"name\": \"\",\n \"type\": \"CIDR\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch a Indicator by IOCBy search filter.\nWhen includeDynamicAggregates is true (default), dynamically creates aggregates from associated IOCs (DOMAIN↔URL, CIDR↔IP).\nWhen false, returns only pre-computed aggregates from the database.\n\nInputs: \nIOCBy, \n\nReturn: \nIndicator\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"indicator\": {\n \"city\": \"\",\n \"countScore\": 0,\n \"country\": \"\",\n \"description\": \"\",\n \"feedNames\": [\n \"\"\n ],\n \"firstSeenAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"lastSeenAt\": \"2026-08-01T00:00:00.000Z\",\n \"name\": \"\",\n \"region\": \"\",\n \"reliabilityScore\": 0,\n \"severity\": \"CRITICAL\",\n \"threatScore\": 0,\n \"type\": \"CIDR\"\n }\n }\n}"}],"_postman_id":"e49f4399-88f3-4807-ace5-d9bf1f530c04"},{"name":"indicators","id":"85a5dd8d-2198-4a67-82cc-2df98cf46672","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query indicators ($after: String, $filter: IndicatorFilter, $first: Int, $order: IndicatorOrder) {\n indicators (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n city\n countScore\n country\n description\n feedNames\n firstSeenAt\n id\n lastSeenAt\n name\n region\n reliabilityScore\n severity\n threatScore\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"feedNames\": [\n \"\"\n ],\n \"lastSeenAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"names\": [\n \"\"\n ],\n \"severity\": [\n \"CRITICAL\"\n ],\n \"type\": [\n \"CIDR\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"LAST_SEEN\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all Indicators that match the provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position (This will be\nconverted to Page number based on the Page size provided).

\n

Inputs: \nString, IndicatorFilter, Int, IndicatorOrder,

\n

Return: \nIndicatorConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"ffaedfba-cfce-43aa-9da6-5665d202df51","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query indicators ($after: String, $filter: IndicatorFilter, $first: Int, $order: IndicatorOrder) {\n indicators (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n city\n countScore\n country\n description\n feedNames\n firstSeenAt\n id\n lastSeenAt\n name\n region\n reliabilityScore\n severity\n threatScore\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"feedNames\": [\n \"\"\n ],\n \"lastSeenAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"names\": [\n \"\"\n ],\n \"severity\": [\n \"CRITICAL\"\n ],\n \"type\": [\n \"CIDR\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"LAST_SEEN\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all Indicators that match the provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position (This will be\nconverted to Page number based on the Page size provided).\n\nInputs: \nString, IndicatorFilter, Int, IndicatorOrder, \n\nReturn: \nIndicatorConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"indicators\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"city\": \"\",\n \"countScore\": 0,\n \"country\": \"\",\n \"description\": \"\",\n \"feedNames\": [\n \"\"\n ],\n \"firstSeenAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"lastSeenAt\": \"2026-08-01T00:00:00.000Z\",\n \"name\": \"\",\n \"region\": \"\",\n \"reliabilityScore\": 0,\n \"severity\": \"CRITICAL\",\n \"threatScore\": 0,\n \"type\": \"CIDR\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"85a5dd8d-2198-4a67-82cc-2df98cf46672"}],"id":"85cd1298-47cb-495d-a226-fddf3cc82aa9","_postman_id":"85cd1298-47cb-495d-a226-fddf3cc82aa9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"010b2883-e1e1-4aed-ad14-f48ac8f3bc75","description":"

Indicator

\n

Represents an Indicator type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cityString
countScoreCount score based on number of feeds (1-3)Int
countryString
descriptionString
feedNamesString
firstSeenAtDateTime
idID
lastSeenAtDateTime
nameString
regionString
reliabilityScoreReliability score based on feed quality (1-5)Int
severityIOCSeverity
threatScoreOverall threat score combining reliability, count, and recencyInt
typeIOCType
\n

IndicatorConnection

\n

Indicator Connection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesIndicatorEdge
pageInfoPageInfo
totalCountInt
\n

IndicatorEdge

\n

Indicator Edge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeIndicator
\n

IOCBy

\n

Search filter for indicator query. Either input the Indicator's Global id or the corresponding IOCInput.\nIf fetching by id, input should be 'Indicator:{type}_{name}' encoded in base64

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
inputIOCInput
\n

IOCInput

\n

Input for the name and type of the Indicator.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
nameString
typeIOCType
\n

IndicatorFilter

\n

Input to filter Indicators by the time range (searching for the last seen occurrence Indicators), the type of Indicator,\nthe Indicator severity, Indicator names, and the feed names which Indicators are seen on.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
feedNamesString
lastSeenAtTimeRange
namesString
severityIOCSeverity
typeIOCType
\n

IndicatorOrder

\n

Indicator OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = LAST_SEEN, direction = ASC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByIndicatorOrderBy
\n

IOCType

\n

IOC type Enum for Indicator. We support search on five categories of IOCs as per GreyMatter functionality.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CIDR
DOMAIN
HASH
IP_ADDRESS
URL
\n

IOCSeverity

\n

IOC Severity Enum for Indicator. Determined by threat score calculation in threat-intelligence.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
INFORMATIONAL
LOW
MEDIUM
UNASSESSED
\n

IndicatorOrderBy

\n

Order by Enum for Indicator.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
LAST_SEEN
\n
","_postman_id":"010b2883-e1e1-4aed-ad14-f48ac8f3bc75","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Memory","item":[{"name":"Mutations","item":[{"name":"createAiContext","id":"3d588b1d-61fd-4fdd-8697-6f6e8499168c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createAiContext ($input: CreateAiContextInput!) {\n createAiContext (input: $input) {\n aiContext {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"context\": \"\",\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"mode\": {\n \"always\": true,\n \"criteria\": \"\",\n \"rag\": {\n \"incident\": \"\",\n \"score\": {\n \"customScore\": \"\",\n \"score\": \"EXTREMELY_SIMILAR\"\n }\n }\n },\n \"name\": \"\",\n \"tags\": {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create an AI context.\nThe context is created for the customer set in the x-reliaquest-customerId header.

\n

Inputs: \nCreateAiContextInput,

\n

Return: \nAiContextResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"516a65ef-5f44-4d0c-8761-1d133993118c","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createAiContext ($input: CreateAiContextInput!) {\n createAiContext (input: $input) {\n aiContext {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"context\": \"\",\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"mode\": {\n \"always\": true,\n \"criteria\": \"\",\n \"rag\": {\n \"incident\": \"\",\n \"score\": {\n \"customScore\": \"\",\n \"score\": \"EXTREMELY_SIMILAR\"\n }\n }\n },\n \"name\": \"\",\n \"tags\": {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create an AI context.\nThe context is created for the customer set in the x-reliaquest-customerId header.\n\nInputs: \nCreateAiContextInput, \n\nReturn: \nAiContextResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createAiContext\": {\n \"aiContext\": {\n \"approvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"context\": \"\",\n \"contextType\": \"GUIDANCE\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"mode\": {\n \"criteria\": \"\",\n \"mode\": \"ALWAYS\"\n },\n \"name\": \"\",\n \"source\": \"AD_HOC\",\n \"status\": \"ACTIVE\",\n \"tags\": [\n {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"3d588b1d-61fd-4fdd-8697-6f6e8499168c"},{"name":"deleteAiContext","id":"e01bd281-06d1-4a08-8ab0-092240c9e7c2","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAiContext ($id: ID!) {\n deleteAiContext (id: $id) {\n aiContext {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete an AI context.

\n

Inputs: \nID,

\n

Return: \nAiContextResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"118c98c4-7b1a-4853-b6b6-c8bf14797c23","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAiContext ($id: ID!) {\n deleteAiContext (id: $id) {\n aiContext {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete an AI context.\n\nInputs: \nID, \n\nReturn: \nAiContextResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteAiContext\": {\n \"aiContext\": {\n \"approvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"context\": \"\",\n \"contextType\": \"GUIDANCE\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"mode\": {\n \"criteria\": \"\",\n \"mode\": \"ALWAYS\"\n },\n \"name\": \"\",\n \"source\": \"AD_HOC\",\n \"status\": \"ACTIVE\",\n \"tags\": [\n {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"e01bd281-06d1-4a08-8ab0-092240c9e7c2"},{"name":"updateAiContext","id":"a11e6065-2413-4a80-ab7b-0135cc3785e0","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAiContext ($input: UpdateAiContextInput!) {\n updateAiContext (input: $input) {\n aiContext {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"context\": \"\",\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"mode\": {\n \"always\": true,\n \"criteria\": \"\",\n \"rag\": {\n \"incident\": \"\",\n \"score\": {\n \"customScore\": \"\",\n \"score\": \"EXTREMELY_SIMILAR\"\n }\n }\n },\n \"name\": \"\",\n \"neverExpires\": true,\n \"status\": \"ACTIVE\",\n \"tags\": {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update an AI context.

\n

Inputs: \nUpdateAiContextInput,

\n

Return: \nAiContextResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"bf654d74-aa1a-48bc-bd18-b687f6fd1463","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateAiContext ($input: UpdateAiContextInput!) {\n updateAiContext (input: $input) {\n aiContext {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"context\": \"\",\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"mode\": {\n \"always\": true,\n \"criteria\": \"\",\n \"rag\": {\n \"incident\": \"\",\n \"score\": {\n \"customScore\": \"\",\n \"score\": \"EXTREMELY_SIMILAR\"\n }\n }\n },\n \"name\": \"\",\n \"neverExpires\": true,\n \"status\": \"ACTIVE\",\n \"tags\": {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update an AI context.\n\nInputs: \nUpdateAiContextInput, \n\nReturn: \nAiContextResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateAiContext\": {\n \"aiContext\": {\n \"approvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"context\": \"\",\n \"contextType\": \"GUIDANCE\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"mode\": {\n \"criteria\": \"\",\n \"mode\": \"ALWAYS\"\n },\n \"name\": \"\",\n \"source\": \"AD_HOC\",\n \"status\": \"ACTIVE\",\n \"tags\": [\n {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"a11e6065-2413-4a80-ab7b-0135cc3785e0"}],"id":"6f332fee-6435-4330-b355-5c351d51f317","_postman_id":"6f332fee-6435-4330-b355-5c351d51f317","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"aiContext","id":"9d127f01-e212-4ed8-923f-342cd327c80f","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query aiContext ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $after3: String, $first3: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after4: String, $first4: Int, $after5: String, $filter3: AccessGroupFilter, $first5: Int, $order3: AccessGroupOrder, $after6: String, $filter4: PodFilter, $first6: Int, $order4: PodOrder, $after7: String, $filter5: RoleFilter, $first7: Int, $order5: RoleFilter, $id: ID!) {\n aiContext (id: $id) {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after3, first: $first3) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after4, first: $first4) {\n totalCount\n }\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n rag {\n customScore\n score\n }\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n accessGroups (after: $after5, filter: $filter3, first: $first5, order: $order3) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after6, filter: $filter4, first: $first6, order: $order4) {\n totalCount\n }\n roles (after: $after7, filter: $filter5, first: $first7, order: $order5) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after3\": \"T18w\",\n \"first3\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after4\": \"T18w\",\n \"first4\": 10,\n \"after5\": \"T18w\",\n \"filter3\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after7\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first7\": 10,\n \"order5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch an AI context by its ID.

\n

Inputs: \nID,

\n

Return: \nAiContext

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"2ecdf1bd-017d-488e-a2a1-f3a00a7f4a1d","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query aiContext ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $after3: String, $first3: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after4: String, $first4: Int, $after5: String, $filter3: AccessGroupFilter, $first5: Int, $order3: AccessGroupOrder, $after6: String, $filter4: PodFilter, $first6: Int, $order4: PodOrder, $after7: String, $filter5: RoleFilter, $first7: Int, $order5: RoleFilter, $id: ID!) {\n aiContext (id: $id) {\n approvedAt\n context\n contextType\n createdAt\n createdBy {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after3, first: $first3) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after4, first: $first4) {\n totalCount\n }\n }\n description\n expiresAt\n id\n mode {\n criteria\n mode\n rag {\n customScore\n score\n }\n }\n name\n source\n status\n tags {\n agent\n step\n }\n updatedAt\n updatedBy {\n accessGroups (after: $after5, filter: $filter3, first: $first5, order: $order3) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after6, filter: $filter4, first: $first6, order: $order4) {\n totalCount\n }\n roles (after: $after7, filter: $filter5, first: $first7, order: $order5) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after3\": \"T18w\",\n \"first3\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after4\": \"T18w\",\n \"first4\": 10,\n \"after5\": \"T18w\",\n \"filter3\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after7\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first7\": 10,\n \"order5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch an AI context by its ID.\n\nInputs: \nID, \n\nReturn: \nAiContext\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"aiContext\": {\n \"approvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"context\": \"\",\n \"contextType\": \"GUIDANCE\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"mode\": {\n \"criteria\": \"\",\n \"mode\": \"ALWAYS\",\n \"rag\": {\n \"customScore\": \"\",\n \"score\": \"EXTREMELY_SIMILAR\"\n }\n },\n \"name\": \"\",\n \"source\": \"AD_HOC\",\n \"status\": \"ACTIVE\",\n \"tags\": [\n {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n }\n ],\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"9d127f01-e212-4ed8-923f-342cd327c80f"},{"name":"aiContexts","id":"b65fd408-022a-42f1-8e64-8fdc60f91f07","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query aiContexts ($after: String, $filter: AiContextFilter, $first: Int, $order: AiContextOrder) {\n aiContexts (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n approvedAt\n context\n contextType\n createdAt\n description\n expiresAt\n id\n name\n source\n status\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"createdAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"createdById\": [\n \"\"\n ],\n \"expiresAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"ids\": [\n \"\"\n ],\n \"mode\": [\n \"ALWAYS\"\n ],\n \"name\": \"\",\n \"source\": [\n \"AD_HOC\"\n ],\n \"status\": [\n \"ACTIVE\"\n ],\n \"tags\": {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n },\n \"updatedAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"updatedById\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"APPROVED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all AI context. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.\nResults are scoped to the customer set in the x-reliaquest-customerId header.

\n

Inputs: \nString, AiContextFilter, Int, AiContextOrder,

\n

Return: \nAiContextConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d9aca2f9-c337-4a55-8efc-a730d4c65f85","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query aiContexts ($after: String, $filter: AiContextFilter, $first: Int, $order: AiContextOrder) {\n aiContexts (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n approvedAt\n context\n contextType\n createdAt\n description\n expiresAt\n id\n name\n source\n status\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"createdAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"createdById\": [\n \"\"\n ],\n \"expiresAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"ids\": [\n \"\"\n ],\n \"mode\": [\n \"ALWAYS\"\n ],\n \"name\": \"\",\n \"source\": [\n \"AD_HOC\"\n ],\n \"status\": [\n \"ACTIVE\"\n ],\n \"tags\": {\n \"agent\": \"HEALTH\",\n \"step\": \"ENRICHMENT\"\n },\n \"updatedAt\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"updatedById\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"APPROVED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all AI context. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.\nResults are scoped to the customer set in the x-reliaquest-customerId header.\n\nInputs: \nString, AiContextFilter, Int, AiContextOrder, \n\nReturn: \nAiContextConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"aiContexts\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"approvedAt\": \"2026-08-01T00:00:00.000Z\",\n \"context\": \"\",\n \"contextType\": \"GUIDANCE\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"expiresAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"name\": \"\",\n \"source\": \"AD_HOC\",\n \"status\": \"ACTIVE\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"b65fd408-022a-42f1-8e64-8fdc60f91f07"}],"id":"fff0a405-e40a-45de-b9b1-96b0427e4b7c","_postman_id":"fff0a405-e40a-45de-b9b1-96b0427e4b7c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"6409478f-f4c9-498b-967b-49fe4d787ffc","description":"

AiContext

\n

Context injected into AI prompts and tools. Used to provide memories or guidance to AI operations.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
approvedAtDateTime
contextString
contextTypeAiContextType
createdAtDateTime
createdByUser
customerCustomer
descriptionString
expiresAtDateTime
idID
modeRetrievalMode
nameString
sourceAiContextSource
statusAiContextStatus
tagsAiContextOutcomeTags
updatedAtDateTime
updatedByUser
\n

AiContextConnection

\n

AI Context Connection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesAiContextEdge
pageInfoPageInfo
totalCountInt
\n

AiContextEdge

\n

AI Context Edge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeAiContext
\n

AiContextResponse

\n

Response type for create, update, and delete operations on AI context.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aiContextAiContext
successBoolean
\n

AiContextFilter

\n

Input for filtering AI context by name, prompt tags, retrieval mode, approvals status, source, enabled/disabled status, timestamp ranges, or user IDs.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtTimeRange
createdByIdID
expiresAtTimeRange
idsID
modeRetrievalModeType
nameString
sourceAiContextSource
statusAiContextStatus
tagsAiContextOutcomeTagsInput
updatedAtTimeRange
updatedByIdID
\n

AiContextOrder

\n

AI Context OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = UPDATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByAiContextOrderBy
\n

AiContextOrderBy

\n

Order by Enum for AI context.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
APPROVED_AT
CREATED_AT
EXPIRES_AT
NAME
UPDATED_AT
\n

AiContextType

\n

The category of AI context content. Can be MEMORY or GUIDANCE.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
GUIDANCEMemories created by users within the GreyMatter platform
MEMORYMemories created by GreyMatter using Feedback or Close Notes.
\n

AiContextStatus

\n

The status of AI context. Can be ACTIVE, DISABLED, DENIED, PENDING, or EXPIRED.\nAPPROVED is deprecated (use ACTIVE instead) and will be removed after data migration.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACTIVE
APPROVED
DENIED
DISABLED
EXPIRED
PENDING
\n

AiContextSource

\n

The origin of AI context. Can be FEEDBACK, CLOSE_NOTES, or AD_HOC.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AD_HOCMemories created by a user in GreyMatter.
CLOSE_NOTESMemories created by GreyMatter from context found in Close Notes of incidents.
FEEDBACKMemories created by GreyMatter from context found in AI Feedback.
MIGRATIONDeprecated.
USER_ADDEDDeprecated.
\n

AiContextOutcomeTags

\n

Tags that determine when AI context is applied during a specific teammate run or particular steps in that run.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
agentTeammate
stepStep
\n

AiContextOutcomeTagsInput

\n

Input for tags that determine when AI context is applied during a specific teammate run or particular steps in that run.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
agentTeammate
stepStep
\n

Teammate

\n

The teammate to apply AI context to.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
HEALTH
IR
\n

Step

\n

The workflow step to apply AI context to.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ENRICHMENT
GENERATE_REPORT
GET_NEXT_STEP
MAKE_DECISION
PLAN
RELATED_INCIDENTS
RESPOND
SEARCH
\n

RetrievalMode

\n

The retrieval mode in which AI context is applied. Can be ALWAYS, CRITERIA, or RAG.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
criteriaCriteria is populated when mode = CRITERIA.UqliFilter
modeRetrievalModeType
ragRag is populated when mode = RAG.RagThreshold
\n

RetrievalModeType

\n

The mode used to apply AI context to prompts. Can be ALWAYS, CRITERIA, or RAG.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ALWAYS
CRITERIA
RAG
\n

RagThreshold

\n

Similarity threshold configuration for RAG-based context retrieval.\nWhen an incident is provided, context is retrieved based on similarity to that specific incident.\nWhen no incident is provided, context is treated as global and similarity is evaluated on all incidents.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
customScoreFloat
incidentIncident
scoreSimilarityThreshold
\n

SimilarityThreshold

\n

The minimum similarity score required for RAG matching.\nEXTREMELY_SIMILAR (0.95), SIMILAR (0.80), LOOSELY_SIMILAR (0.5). Any other threshold is returned via customScore.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
EXTREMELY_SIMILAR
LOOSELY_SIMILAR
SIMILAR
\n

CreateAiContextInput

\n

Input for creating an AI context.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
contextString
descriptionString
expiresAtDateTime
modeAiContextModeInput
nameString
tagsAiContextOutcomeTagsInput
\n

UpdateAiContextInput

\n

Input for updating an AI context.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
contextString
descriptionString
expiresAtDateTime
idID
modeAiContextModeInput
nameString
neverExpiresBoolean
statusApprove or deny a pending memory, or enable or disable one that has already been reviewed. Omit to leave the status unchanged. Possible values: - \"ACTIVE\": Approves a pending memory, or re-enables a disabled one - \"DENIED\": Denies a pending memory - \"DISABLED\": Disables an active memory Approving or denying requires the APPROVE_AI_MEMORY permission. Every other status is read-only here: to expire a memory, set expiresAt instead.AiContextStatus
tagsAiContextOutcomeTagsInput
\n

AiContextModeInput

\n

Mode configuration for AI context. Exactly one field must be non-null.\nThe populated field determines the retrieval mode.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
alwaysAlways apply this context. No conditions. Must be true.Boolean
criteriaApply based on criteria evaluation.UqliFilter
ragApply using RAG (Retrieval-Augmented Generation).RagModeInput
\n

RagModeInput

\n

Configuration for RAG retrieval mode.\nContext is retrieved based on semantic similarity.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
incidentThe RQ incident ticketNumber.String
scoreRagThresholdScore
\n

RagThresholdScore

\n

Score configuration for RAG similarity matching. Provide either a predefined threshold or a custom score.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
customScoreFloat
scoreSimilarityThreshold
\n
","_postman_id":"6409478f-f4c9-498b-967b-49fe4d787ffc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Playbooks","item":[{"name":"Mutations","item":[{"name":"rerunAllFailedTasksForPlaybookRun","id":"93747bff-0db1-47f3-ae33-1b3d65d8b144","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation rerunAllFailedTasksForPlaybookRun ($playbookRunId: ID!) {\n rerunAllFailedTasksForPlaybookRun (playbookRunId: $playbookRunId) {\n playbookRun {\n id\n }\n success\n }\n}","variables":"{\n \"playbookRunId\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Rerun all failed tasks for a playbook run

\n

Inputs: \nID,

\n

Return: \nPlaybookRunResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"3d777de7-c6f4-4ae8-bd77-e23549f6db6e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation rerunAllFailedTasksForPlaybookRun ($playbookRunId: ID!) {\n rerunAllFailedTasksForPlaybookRun (playbookRunId: $playbookRunId) {\n playbookRun {\n id\n }\n success\n }\n}","variables":"{\n \"playbookRunId\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Rerun all failed tasks for a playbook run\n\nInputs: \nID, \n\nReturn: \nPlaybookRunResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"rerunAllFailedTasksForPlaybookRun\": {\n \"playbookRun\": {\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"93747bff-0db1-47f3-ae33-1b3d65d8b144"},{"name":"runPlaybook","id":"cc2da0a4-3c6e-4f8f-9b69-4704a6e09155","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation runPlaybook ($input: RunPlaybookInput!) {\n runPlaybook (input: $input) {\n playbookRun {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiChatId\": \"\",\n \"drpAlertShortCode\": \"\",\n \"input\": {\n \"integrationIds\": [\n \"\"\n ],\n \"playbookVariables\": {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n }\n },\n \"originatorId\": \"\",\n \"platform\": \"WEB\",\n \"playbookAction\": \"ADD_DOMAIN_TO_LIST\",\n \"reason\": \"\",\n \"tempRuleId\": \"\",\n \"ticketNumber\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Run a playbook with the given input

\n

Inputs: \nRunPlaybookInput,

\n

Return: \nPlaybookRunResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d21bd3cc-6ebc-4f5e-8393-c5bc90a9fb17","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation runPlaybook ($input: RunPlaybookInput!) {\n runPlaybook (input: $input) {\n playbookRun {\n id\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"aiChatId\": \"\",\n \"drpAlertShortCode\": \"\",\n \"input\": {\n \"integrationIds\": [\n \"\"\n ],\n \"playbookVariables\": {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n }\n },\n \"originatorId\": \"\",\n \"platform\": \"WEB\",\n \"playbookAction\": \"ADD_DOMAIN_TO_LIST\",\n \"reason\": \"\",\n \"tempRuleId\": \"\",\n \"ticketNumber\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Run a playbook with the given input\n\nInputs: \nRunPlaybookInput, \n\nReturn: \nPlaybookRunResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"runPlaybook\": {\n \"playbookRun\": {\n \"id\": \"\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"cc2da0a4-3c6e-4f8f-9b69-4704a6e09155"},{"name":"upsertCustomerPlaybook","id":"5fd185d1-b758-47d8-90a4-0a310cb5f262","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation upsertCustomerPlaybook ($input: UpsertCustomerPlaybookInput!) {\n upsertCustomerPlaybook (input: $input) {\n customerPlaybook {\n id\n note\n rqAllowedToRun\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"id\": \"\",\n \"note\": \"\",\n \"rqAllowedToRun\": \"APPROVED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Upsert customer metadata settings for a playbook

\n

Inputs: \nUpsertCustomerPlaybookInput,

\n

Return: \nCustomerPlaybookResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"e68e0e2b-535a-499d-b99c-9d285089571a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation upsertCustomerPlaybook ($input: UpsertCustomerPlaybookInput!) {\n upsertCustomerPlaybook (input: $input) {\n customerPlaybook {\n id\n note\n rqAllowedToRun\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"id\": \"\",\n \"note\": \"\",\n \"rqAllowedToRun\": \"APPROVED\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Upsert customer metadata settings for a playbook\n\nInputs: \nUpsertCustomerPlaybookInput, \n\nReturn: \nCustomerPlaybookResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"upsertCustomerPlaybook\": {\n \"customerPlaybook\": {\n \"id\": \"\",\n \"note\": \"\",\n \"rqAllowedToRun\": \"APPROVED\"\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"5fd185d1-b758-47d8-90a4-0a310cb5f262"},{"name":"upsertPlaybookMetadata","id":"ae10df3f-6cff-49e0-8501-ba63a276a57f","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation upsertPlaybookMetadata ($input: UpsertPlaybookMetadataInput!) {\n upsertPlaybookMetadata (input: $input) {\n playbook {\n id\n metadata {\n description\n enabled\n name\n type\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"description\": \"\",\n \"enabled\": true,\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"CONTAINMENT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Upsert metadata settings for a playbook

\n

Inputs: \nUpsertPlaybookMetadataInput,

\n

Return: \nPlaybookResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"2e4727a6-a5ec-4e52-a992-d11ec174af58","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation upsertPlaybookMetadata ($input: UpsertPlaybookMetadataInput!) {\n upsertPlaybookMetadata (input: $input) {\n playbook {\n id\n metadata {\n description\n enabled\n name\n type\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"description\": \"\",\n \"enabled\": true,\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"CONTAINMENT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Upsert metadata settings for a playbook\n\nInputs: \nUpsertPlaybookMetadataInput, \n\nReturn: \nPlaybookResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"upsertPlaybookMetadata\": {\n \"playbook\": {\n \"id\": \"\",\n \"metadata\": {\n \"description\": \"\",\n \"enabled\": true,\n \"name\": \"\",\n \"type\": \"CONTAINMENT\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"ae10df3f-6cff-49e0-8501-ba63a276a57f"}],"id":"f62ac6b7-87ac-45ac-86d7-fe05d0ed7362","_postman_id":"f62ac6b7-87ac-45ac-86d7-fe05d0ed7362","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"customerPlaybooks","id":"e8d8c78e-afa7-4ca6-91b8-4077ac5bf15c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerPlaybooks ($after: String, $filter: IntegrationActivityLogFilter, $first: Int, $order: IntegrationActivityLogOrder) {\n customerPlaybooks {\n action\n fieldDefinitions {\n deprecated\n field\n required\n }\n id\n metadata {\n description\n enabled\n name\n type\n }\n note\n rqAllowedToRun\n supportedIntegrations {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n connectionStatus\n connector {\n documentationUrl\n id\n name\n type\n }\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n sharedBy {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CONFIGURATION_CHANGED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Get the playbooks that are available with the associated custom customer settings

\n

Return: \nCustomerPlaybook

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"bbafc78d-b54b-462e-9a1c-6172a1250a79","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerPlaybooks ($after: String, $filter: IntegrationActivityLogFilter, $first: Int, $order: IntegrationActivityLogOrder) {\n customerPlaybooks {\n action\n fieldDefinitions {\n deprecated\n field\n required\n }\n id\n metadata {\n description\n enabled\n name\n type\n }\n note\n rqAllowedToRun\n supportedIntegrations {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n connectionStatus\n connector {\n documentationUrl\n id\n name\n type\n }\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n sharedBy {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CONFIGURATION_CHANGED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Get the playbooks that are available with the associated custom customer settings\n\nReturn: \nCustomerPlaybook\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"customerPlaybooks\": [\n {\n \"action\": \"\",\n \"fieldDefinitions\": [\n {\n \"deprecated\": true,\n \"field\": \"\",\n \"required\": true\n }\n ],\n \"id\": \"\",\n \"metadata\": {\n \"description\": \"\",\n \"enabled\": true,\n \"name\": \"\",\n \"type\": \"CONTAINMENT\"\n },\n \"note\": \"\",\n \"rqAllowedToRun\": \"APPROVED\",\n \"supportedIntegrations\": [\n {\n \"activity\": {\n \"totalCount\": 0\n },\n \"connectionStatus\": \"CONNECTED\",\n \"connector\": {\n \"documentationUrl\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"AI\"\n },\n \"enabled\": true,\n \"id\": \"\",\n \"lastConnectionTest\": \"2026-08-01T00:00:00.000Z\",\n \"lastUsed\": \"2026-08-01T00:00:00.000Z\",\n \"name\": \"\",\n \"sharedBy\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n }\n }\n ]\n }\n ]\n }\n}"}],"_postman_id":"e8d8c78e-afa7-4ca6-91b8-4077ac5bf15c"},{"name":"playbookRun","id":"c4cc1a17-af29-45d3-b787-2afe4ac4fd00","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query playbookRun ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $after3: String, $first3: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after4: String, $first4: Int, $after5: String, $filter3: AccessGroupFilter, $first5: Int, $order3: AccessGroupOrder, $after6: String, $filter4: PodFilter, $first6: Int, $order4: PodOrder, $after7: String, $filter5: RoleFilter, $first7: Int, $order5: RoleFilter, $id: ID!) {\n playbookRun (id: $id) {\n createdAt\n createdBy {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after3, first: $first3) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after4, first: $first4) {\n totalCount\n }\n }\n drpAlertShortCode\n executionResult {\n actionExecutions {\n actionExecutionStatus\n field\n id\n outputErrorMessage\n outputMessage\n value\n }\n endTime\n lastRetriedTime\n startTime\n }\n id\n platform\n playbookAction\n playbookName\n playbookType\n reason\n rqAllowedToRun\n status\n tempRuleId\n ticketNumber\n trigger\n type\n updatedAt\n updatedBy {\n accessGroups (after: $after5, filter: $filter3, first: $first5, order: $order3) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after6, filter: $filter4, first: $first6, order: $order4) {\n totalCount\n }\n roles (after: $after7, filter: $filter5, first: $first7, order: $order5) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after3\": \"T18w\",\n \"first3\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after4\": \"T18w\",\n \"first4\": 10,\n \"after5\": \"T18w\",\n \"filter3\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after7\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first7\": 10,\n \"order5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Get a PlaybookRun.

\n

Set includeReversal to also resolve the run's configured reversal playbook. It costs an\nextra upstream call, so leave it off unless reversalPlaybook is selected.

\n

Inputs: \nID,

\n

Return: \nPlaybookRun

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d02daf3c-8424-4109-a99a-b55b16f17600","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query playbookRun ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $after3: String, $first3: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after4: String, $first4: Int, $after5: String, $filter3: AccessGroupFilter, $first5: Int, $order3: AccessGroupOrder, $after6: String, $filter4: PodFilter, $first6: Int, $order4: PodOrder, $after7: String, $filter5: RoleFilter, $first7: Int, $order5: RoleFilter, $id: ID!) {\n playbookRun (id: $id) {\n createdAt\n createdBy {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after3, first: $first3) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after4, first: $first4) {\n totalCount\n }\n }\n drpAlertShortCode\n executionResult {\n actionExecutions {\n actionExecutionStatus\n field\n id\n outputErrorMessage\n outputMessage\n value\n }\n endTime\n lastRetriedTime\n startTime\n }\n id\n platform\n playbookAction\n playbookName\n playbookType\n reason\n rqAllowedToRun\n status\n tempRuleId\n ticketNumber\n trigger\n type\n updatedAt\n updatedBy {\n accessGroups (after: $after5, filter: $filter3, first: $first5, order: $order3) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after6, filter: $filter4, first: $first6, order: $order4) {\n totalCount\n }\n roles (after: $after7, filter: $filter5, first: $first7, order: $order5) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after3\": \"T18w\",\n \"first3\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after4\": \"T18w\",\n \"first4\": 10,\n \"after5\": \"T18w\",\n \"filter3\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter4\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after7\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first7\": 10,\n \"order5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Get a PlaybookRun.\n\nSet `includeReversal` to also resolve the run's configured reversal playbook. It costs an\nextra upstream call, so leave it off unless `reversalPlaybook` is selected.\n\nInputs: \nID, \n\nReturn: \nPlaybookRun\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"playbookRun\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"drpAlertShortCode\": \"\",\n \"executionResult\": {\n \"actionExecutions\": [\n {\n \"actionExecutionStatus\": \"\",\n \"field\": \"\",\n \"id\": \"\",\n \"outputErrorMessage\": \"\",\n \"outputMessage\": \"\",\n \"value\": \"\"\n }\n ],\n \"endTime\": \"2026-08-01T00:00:00.000Z\",\n \"lastRetriedTime\": \"2026-08-01T00:00:00.000Z\",\n \"startTime\": \"2026-08-01T00:00:00.000Z\"\n },\n \"id\": \"\",\n \"platform\": \"WEB\",\n \"playbookAction\": \"\",\n \"playbookName\": \"\",\n \"playbookType\": \"CONTAINMENT\",\n \"reason\": \"\",\n \"rqAllowedToRun\": \"APPROVED\",\n \"status\": \"FAILED\",\n \"tempRuleId\": \"\",\n \"ticketNumber\": \"\",\n \"trigger\": \"AGENTIC\",\n \"type\": \"CUSTOM_PLAYBOOK\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"c4cc1a17-af29-45d3-b787-2afe4ac4fd00"},{"name":"playbookRuns","id":"5f60c282-43e3-43c9-a915-97038c58101c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query playbookRuns ($after: String, $filter: PlaybookRunFilter, $first: Int, $orderBy: PlaybookRunOrder) {\n playbookRuns (after: $after, filter: $filter, first: $first, orderBy: $orderBy) {\n edges {\n cursor\n node {\n createdAt\n drpAlertShortCode\n id\n platform\n playbookAction\n playbookName\n playbookType\n reason\n rqAllowedToRun\n status\n tempRuleId\n ticketNumber\n trigger\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"drpAlertShortCodes\": [\n \"\"\n ],\n \"platforms\": [\n \"WEB\"\n ],\n \"playbookActions\": [\n \"\"\n ],\n \"playbookNames\": [\n \"\"\n ],\n \"playbookTypes\": [\n \"CONTAINMENT\"\n ],\n \"search\": \"\",\n \"statuses\": [\n \"FAILED\"\n ],\n \"tempRuleIds\": [\n \"\"\n ],\n \"ticketNumbers\": [\n \"\"\n ],\n \"triggers\": [\n \"AGENTIC\"\n ],\n \"types\": [\n \"CUSTOM_PLAYBOOK\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"orderBy\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Get PlaybookRuns.

\n

Inputs: \nString, PlaybookRunFilter, Int, PlaybookRunOrder,

\n

Return: \nPlaybookRunConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"93ef0025-869b-43b6-8184-8f650c57a2ec","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query playbookRuns ($after: String, $filter: PlaybookRunFilter, $first: Int, $orderBy: PlaybookRunOrder) {\n playbookRuns (after: $after, filter: $filter, first: $first, orderBy: $orderBy) {\n edges {\n cursor\n node {\n createdAt\n drpAlertShortCode\n id\n platform\n playbookAction\n playbookName\n playbookType\n reason\n rqAllowedToRun\n status\n tempRuleId\n ticketNumber\n trigger\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"drpAlertShortCodes\": [\n \"\"\n ],\n \"platforms\": [\n \"WEB\"\n ],\n \"playbookActions\": [\n \"\"\n ],\n \"playbookNames\": [\n \"\"\n ],\n \"playbookTypes\": [\n \"CONTAINMENT\"\n ],\n \"search\": \"\",\n \"statuses\": [\n \"FAILED\"\n ],\n \"tempRuleIds\": [\n \"\"\n ],\n \"ticketNumbers\": [\n \"\"\n ],\n \"triggers\": [\n \"AGENTIC\"\n ],\n \"types\": [\n \"CUSTOM_PLAYBOOK\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"orderBy\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Get PlaybookRuns.\n\nInputs: \nString, PlaybookRunFilter, Int, PlaybookRunOrder, \n\nReturn: \nPlaybookRunConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"playbookRuns\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"drpAlertShortCode\": \"\",\n \"id\": \"\",\n \"platform\": \"WEB\",\n \"playbookAction\": \"\",\n \"playbookName\": \"\",\n \"playbookType\": \"CONTAINMENT\",\n \"reason\": \"\",\n \"rqAllowedToRun\": \"APPROVED\",\n \"status\": \"FAILED\",\n \"tempRuleId\": \"\",\n \"ticketNumber\": \"\",\n \"trigger\": \"AGENTIC\",\n \"type\": \"CUSTOM_PLAYBOOK\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"5f60c282-43e3-43c9-a915-97038c58101c"},{"name":"playbooks","id":"8d9fd010-7ad4-46be-b5b6-c94754164337","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query playbooks {\n playbooks {\n action\n fieldDefinitions {\n deprecated\n field\n required\n }\n id\n metadata {\n description\n enabled\n name\n type\n }\n supportedTechnologies {\n documentationUrl\n id\n name\n type\n }\n }\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Get playbooks that are available.

\n

Return: \nPlaybook

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"bc889d1d-c846-4041-ae05-314ac1533bf5","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query playbooks {\n playbooks {\n action\n fieldDefinitions {\n deprecated\n field\n required\n }\n id\n metadata {\n description\n enabled\n name\n type\n }\n supportedTechnologies {\n documentationUrl\n id\n name\n type\n }\n }\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Get playbooks that are available.\n\nReturn: \nPlaybook\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"playbooks\": [\n {\n \"action\": \"\",\n \"fieldDefinitions\": [\n {\n \"deprecated\": true,\n \"field\": \"\",\n \"required\": true\n }\n ],\n \"id\": \"\",\n \"metadata\": {\n \"description\": \"\",\n \"enabled\": true,\n \"name\": \"\",\n \"type\": \"CONTAINMENT\"\n },\n \"supportedTechnologies\": [\n {\n \"documentationUrl\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"AI\"\n }\n ]\n }\n ]\n }\n}"}],"_postman_id":"8d9fd010-7ad4-46be-b5b6-c94754164337"},{"name":"recommendedPlaybooks","id":"4d5e9bc4-fac3-4ce4-a334-9a308a230375","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query recommendedPlaybooks ($filter: RecommendedPlaybookFilter!) {\n recommendedPlaybooks (filter: $filter) {\n playbooks {\n fields {\n field\n required\n values\n }\n playbook {\n action\n id\n note\n rqAllowedToRun\n }\n }\n }\n}","variables":"{\n \"filter\": {\n \"artifacts\": {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"tempRuleId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Get the recommended playbooks based on the filter parameters.

\n

Inputs: \nRecommendedPlaybookFilter,

\n

Return: \nRecommendedPlaybooks

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"73d8e1fd-f7a4-438a-925e-1411528e6a3e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query recommendedPlaybooks ($filter: RecommendedPlaybookFilter!) {\n recommendedPlaybooks (filter: $filter) {\n playbooks {\n fields {\n field\n required\n values\n }\n playbook {\n action\n id\n note\n rqAllowedToRun\n }\n }\n }\n}","variables":"{\n \"filter\": {\n \"artifacts\": {\n \"field\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"tempRuleId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Get the recommended playbooks based on the filter parameters.\n\nInputs: \nRecommendedPlaybookFilter, \n\nReturn: \nRecommendedPlaybooks\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"recommendedPlaybooks\": {\n \"playbooks\": [\n {\n \"fields\": [\n {\n \"field\": \"\",\n \"required\": true,\n \"values\": [\n \"\"\n ]\n }\n ],\n \"playbook\": {\n \"action\": \"\",\n \"id\": \"\",\n \"note\": \"\",\n \"rqAllowedToRun\": \"APPROVED\"\n }\n }\n ]\n }\n }\n}"}],"_postman_id":"4d5e9bc4-fac3-4ce4-a334-9a308a230375"}],"id":"c022784f-868c-4bc4-b112-b13b2f25c015","_postman_id":"c022784f-868c-4bc4-b112-b13b2f25c015","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"ab3cfeb5-a3b5-480b-9ec5-bf5939da9c39","description":"

RecommendedPlaybooks

\n

Type representing recommended playbooks response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
playbooksRecommendedPlaybook
\n

CustomerPlaybookResponse

\n

Type representing customer playbook response

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
customerPlaybookCustomerPlaybook
successBoolean
\n

PlaybookResponse

\n

Represents playbook response type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
playbookPlaybook
successBoolean
\n

Playbook

\n

Represents Playbook Type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionString
fieldDefinitionsActionFieldDefinition
idID
metadataPlaybookMetadata
supportedTechnologiesTechnologies which support this playbook executionConnector
\n

CustomerPlaybook

\n

Represents customer playbook type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionString
fieldDefinitionsActionFieldDefinition
idID
metadataPlaybookMetadata
noteString
rqAllowedToRunRQAllowedToRun
supportedIntegrationsIntegration against which this playbook can be executedIntegration
\n

RecommendedPlaybook

\n

Represents recommended playbook type containing playbook metadata and action fields

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldsActionFieldRecommendation
playbookCustomerPlaybook
\n

ActionFieldDefinition

\n

Field definition which will be used to run the playbook

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
deprecatedBoolean
fieldString
requiredBoolean
\n

ActionFieldRecommendation

\n

Action field recommendation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldString
requiredBoolean
valuesString
\n

PlaybookMetadata

\n

Playbook meta details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionString
enabledBoolean
nameString
typePlaybookType
\n

UpsertPlaybookMetadataInput

\n

Input type representing upsert playbook metadata

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionString
enabledBoolean
idID
nameString
typePlaybookType
\n

RecommendedPlaybookFilter

\n

Represents type to filter out playbooks in recommended list

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
artifactsArtifactInput
tempRuleIdString
\n

ArtifactInput

\n

Represents artifacts details for recommended playbook filter

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldString
valuesString
\n

UpsertCustomerPlaybookInput

\n

Input type representing upsert customer playbook details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
noteString
rqAllowedToRunRQAllowedToRun
\n

PlaybookType

\n

Playbook type enum

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CONTAINMENT
CUSTOMA customer-authored custom playbook. It declares no security intent, which is why it is its own value rather than one of the four above: OTHER would make it indistinguishable from an uncategorised tech-action playbook.
ENRICHMENT
OTHER
REMEDIATION
REVERSAL
\n

PlaybookRunResponse

\n

Represents playbook run response type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
playbookRunPlaybookRun
successBoolean
\n

PlaybookRun

\n

Represents Playbook Run type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByUser
customerCustomer
drpAlertShortCodeString
executionResultPlaybookRunExecution
idPlaybook run identifierID
platformPlaybookRunPlatformType
playbookActionAction this playbook run performed on target systemString
playbookNameString
playbookTypePlaybookType
reasonString
rqAllowedToRunRQAllowedToRun
statusPlaybookRunStatus
tempRuleIdString
ticketNumberString
triggerPlaybookRunTriggerType
typePlaybookRunType
updatedAtDateTime
updatedByUser
\n

PlaybookRunExecution

\n

PlaybookRunExecution summarizes the execution of the PlaybookRun

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionExecutionsPlaybookRunActionExecution
endTimeDateTime
lastRetriedTimeDateTime
startTimeDateTime
\n

PlaybookRunActionExecution

\n

Represents the execution of a single action within a playbook run, including its status, inputs, and outputs.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionExecutionStatusString
fieldString
idUnique identifier for this action execution.ID
integrationIntegration
outputErrorMessageString
outputMessageString
valueString
\n

PlaybookRunEdge

\n

Represents the edge type for Playbook Run

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodePlaybookRun
\n

PlaybookRunConnection

\n

Represents the connection type for Playbook Run

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesPlaybookRunEdge
pageInfoPageInfo
totalCountInt
\n

PlaybookRunOrder

\n

Represents playbook run order type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByPlaybookRunOrderBy
\n

PlaybookRunFilter

\n

Playbook run filter while retrieving runs

\n

See Also: PlaybookRunFilterData

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdTimeRange
drpAlertShortCodesString
platformsPlaybookRunPlatformType
playbookActionsString
playbookNamesString
playbookTypesPlaybookType
searchString
statusesPlaybookRunStatus
tempRuleIdsString
ticketNumbersString
triggersPlaybookRunTriggerType
typesPlaybookRunType
usersID
\n

RunPlaybookInput

\n

Represents Playbook Run input type for running a playbook

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aiChatIdID
drpAlertShortCodeString
inputPlaybookInput
originatorIdThis is the Incident ID that might have triggered running this playbookID
platformPlaybookRunPlatformType
playbookActionTechAction
reasonString
tempRuleIdString
ticketNumberString
\n

PlaybookInput

\n

Run Playbook inputs

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
integrationIdsID
playbookVariablesPlaybookVariable
\n

PlaybookVariable

\n

Parameters required to run playbook

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
fieldString
valuesString
\n

RQAllowedToRun

\n

Enum representing if the Playbook is allowed to be run by ReliaQuest

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
APPROVED
CONDITIONAL
DENIED
UNKNOWN
\n

PlaybookRunType

\n

Playbook run type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CUSTOM_PLAYBOOKThe run executed a customer-authored custom playbook. Distinct from DYNAMIC_TECH_ACTION rather than reusing it, because reuse would enrol custom runs in every behaviour keyed on that value — nearest, reversal-playbook lookup, which custom playbooks do not have.
DYNAMIC_TECH_ACTION
GENERIC
\n

PlaybookRunStatus

\n

Represents enum of Playbook Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
FAILED
NOT_FOUND
PARTIAL
PREVENTEDThe run was blocked before executing. Reversal playbooks are not generated for prevented runs.
RUNNING
SUCCESS
\n

PlaybookRunOrderBy

\n

Playbook Order by options

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
PLAYBOOK_NAME
PLAYBOOK_TYPE
STATUS
TYPE
\n

PlaybookRunTriggerType

\n

Represents playbook run trigger source

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AGENTICUsed for Agentic ARP run
AGENTIC_ARPARP actions selected by the IR analyst agent
AGENTIC_DETERMINATION_ARPAutomated actions proposed during the agent determination phase
AGENTIC_WORKFLOWWorkflow-driven run flagged as part of an autonomous agent run
AUTOMATED_ENRICHMENTIR workflow enrichment sub-workflow runs
AUTOMATED_REVERSALReversal of a previous automated run
AUTOMATION
CUSTOMER
PROGRAMMATIC_ARPDeterministic IR workflow automated-action steps
RQ_USER
WORKFLOWRun from a customer workflow
\n

PlaybookRunPlatformType

\n

Represents playbook run trigger platform

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
MOBILE
WEB
\n

TechAction

\n

Actions that can be taken for technologies

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ADD_DOMAIN_TO_LIST
ADD_HOST_TO_GROUP
ADD_IP_TO_LIST
ADD_URL_TO_LIST
ADD_USER_TO_GROUP
ADM_PROBE_QUERY
ALLOW_APPLICATION
ALLOW_DOMAIN
ALLOW_EMAIL_ADDRESS
ALLOW_HASH
ALLOW_IP
ALLOW_PORT
ALLOW_URL
ANALYZE_FILE
ANALYZE_URL
BAN_HASH
BLOCK_APPLICATION
BLOCK_DOMAIN
BLOCK_EMAIL_ADDRESS
BLOCK_EMAIL_DOMAIN
BLOCK_EXTERNAL_TENANT
BLOCK_IP
BLOCK_PERIPHERAL_DEVICE
BLOCK_PORT
BLOCK_URL
CHECK_COMMAND_STATUS
CREATE_FOLDER
CREATE_LIST
DELETE_CHAT
DELETE_CHAT_FILE
DELETE_DEVICE
DELETE_EMAIL
DELETE_EMAIL_ATTACHMENT
DELETE_FILE
DELETE_FILE_BY_DEVICE_ID
DELETE_FILE_BY_HASH
DELETE_FOLDER
DELETE_INBOX_RULE
DELETE_PROJECT
DELETE_PROJECT_DOCUMENT
DELETE_RULES
DISABLE_INBOX_RULE
DISABLE_MFA
DISABLE_SERVICE_ACCOUNT
DISABLE_USER
DRILLDOWN
ENABLE_INBOX_RULE
ENABLE_USER
ENRICH_ALERT
ENRICH_DEVICE
ENRICH_DOMAIN
ENRICH_DOMAIN_CONTROLLER
ENRICH_EMAIL
ENRICH_FIELDS
ENRICH_GROUP
ENRICH_HASH
ENRICH_HOST
ENRICH_IP
ENRICH_LIST
ENRICH_POLICY
ENRICH_QUARANTINE_EMAIL
ENRICH_QUARANTINE_MESSAGE
ENRICH_SOURCES
ENRICH_URL
ENRICH_USER
ENRICH_VULNERABILITY
ENROLL_MFA
ENROLL_MFA_WITH_PROVIDER
FETCH_ASSETS
FETCH_IDENTITIES
FETCH_MISCONFIGURATIONS
FETCH_SAAS
FETCH_SAAS_APPS
FETCH_SOFTWARES
GENERATE_NATIVE_QUERY
GENERATE_NATIVE_QUERY_FOR_DETECT
GET_DETECTIONS_STATUS
GET_DETECTION_RECORDS
GET_FIELD_SUMMARY
GET_FILTERED_EMAILS
GET_RULES
HARD_DELETE_ALL_EMAIL_BY_SENDER
HARD_DELETE_ALL_EMAIL_BY_SENDER_WITH_SUBJECT
HARD_DELETE_EMAIL
INITIATE_FILE_SCAN
INITIATE_HOST_SCAN
INITIATE_IP_SCAN
INITIATE_VULNERABILITY_SCAN
ISOLATE_HOST
ISOLATE_HOST_BY_IP
ISOLATE_HOST_BY_MAC
LIST_USER_IN_GROUP
MASS_HARD_DELETE_EMAIL
MASS_HARD_DELETE_EMAIL_BY_SENDER
MASS_HARD_DELETE_EMAIL_BY_SENDER_AND_SUBJECT
MASS_SOFT_DELETE_EMAIL
MASS_SOFT_DELETE_EMAIL_BY_SENDER
MASS_SOFT_DELETE_EMAIL_BY_SENDER_AND_SUBJECT
MOVE_EMAIL
MOVE_USER_TO_OU
PARTIALLY_ISOLATE_HOST
PERFORM_GM_DETECT_QUERY
PERFORM_GM_DETECT_THREATS_WITH_EVENTS
PERFORM_GM_DETECT_UQLI_QUERY
PERFORM_LDAP_QUERY
PERFORM_QUERY
QUARANTINE_EMAIL
QUARANTINE_FILE
QUARANTINE_MESSAGE_GROUP
RELEASE_QUARANTINE_MESSAGE
REMOTE_LOCK
REMOTE_RESTART
REMOTE_UNLOCK
REMOVE_ALL_AUTHENTICATION_METHODS
REMOVE_ALL_AUTH_METHODS
REMOVE_DOMAIN_FROM_LIST
REMOVE_HOST_FROM_GROUP
REMOVE_IP_FROM_LIST
REMOVE_MFA_AUTH_METHODS
REMOVE_MULTI_FACTOR_AUTHENTICATION_METHODS
REMOVE_URL_FROM_LIST
REMOVE_USER_FROM_GROUP
RESET_MFA
RESET_PASSWORD
RESTORE_EMAIL
RESTORE_MESSAGE_GROUP
RETIRE_DEVICE
SCAN_RESULTS
SEND_EMAIL
SET_PASSWORD
SET_PASSWORD_BY_PROVIDER
SHUTDOWN_HOST
SOFT_DELETE_ALL_EMAIL_BY_SENDER
SOFT_DELETE_ALL_EMAIL_BY_SENDER_WITH_SUBJECT
SOFT_DELETE_EMAIL
SOFT_DELETE_MESSAGE_GROUP
SYNC_RULES
TERMINATE_PROCESS
TERMINATE_PROCESS_BY_ID
TERMINATE_SESSIONS
TEST_CONNECTION
UNALLOW_APPLICATION
UNALLOW_DOMAIN
UNALLOW_EMAIL_ADDRESS
UNALLOW_HASH
UNALLOW_IP
UNALLOW_PORT
UNALLOW_URL
UNBAN_HASH
UNBLOCK_APPLICATION
UNBLOCK_DOMAIN
UNBLOCK_EMAIL_ADDRESS
UNBLOCK_EMAIL_DOMAIN
UNBLOCK_EXTERNAL_TENANT
UNBLOCK_IP
UNBLOCK_PERIPHERAL_DEVICE
UNBLOCK_PORT
UNBLOCK_URL
UNISOLATE_HOST
UNISOLATE_HOST_BY_IP
UNISOLATE_HOST_BY_MAC
UNLOCK_USER
UNQUARANTINE_EMAIL
UNQUARANTINE_FILE
UPDATE_DETECTIONS
UPSERT_RULES
WIPE_DEVICE
\n
","_postman_id":"ab3cfeb5-a3b5-480b-9ec5-bf5939da9c39","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Query Management","item":[{"name":"Queries","item":[{"name":"integration","id":"0006e600-a8fc-48a1-bc96-c50bfc7b7870","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query integration ($after: String, $filter: IntegrationActivityLogFilter, $first: Int, $order: IntegrationActivityLogOrder, $after1: String, $first1: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after2: String, $first2: Int, $id: ID!) {\n integration (id: $id) {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n connectionStatus\n connector {\n documentationUrl\n id\n name\n type\n }\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n sharedBy {\n accessControlPolicies (after: $after1, first: $first1) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after2, first: $first2) {\n totalCount\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CONFIGURATION_CHANGED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after2\": \"T18w\",\n \"first2\": 10,\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retrieves one integration by ID

\n

Inputs: \nID,

\n

Return: \nIntegration

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"8ba16d20-083d-47af-8f4f-fd038135381b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query integration ($after: String, $filter: IntegrationActivityLogFilter, $first: Int, $order: IntegrationActivityLogOrder, $after1: String, $first1: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after2: String, $first2: Int, $id: ID!) {\n integration (id: $id) {\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n connectionStatus\n connector {\n documentationUrl\n id\n name\n type\n }\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n sharedBy {\n accessControlPolicies (after: $after1, first: $first1) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after2, first: $first2) {\n totalCount\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CONFIGURATION_CHANGED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after1\": \"T18w\",\n \"first1\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after2\": \"T18w\",\n \"first2\": 10,\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retrieves one integration by ID\n\nInputs: \nID, \n\nReturn: \nIntegration\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"integration\": {\n \"activity\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"connectionStatus\": \"CONNECTED\",\n \"connector\": {\n \"documentationUrl\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"AI\"\n },\n \"enabled\": true,\n \"id\": \"\",\n \"lastConnectionTest\": \"2026-08-01T00:00:00.000Z\",\n \"lastUsed\": \"2026-08-01T00:00:00.000Z\",\n \"name\": \"\",\n \"sharedBy\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n }\n }\n }\n}"}],"_postman_id":"0006e600-a8fc-48a1-bc96-c50bfc7b7870"},{"name":"integrations","id":"6e827f12-e5da-4f80-8220-69737cf33afd","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query integrations ($after: String, $first: Int, $integrationFilter: IntegrationFilter, $integrationOrder: IntegrationOrder) {\n integrations (after: $after, first: $first, integrationFilter: $integrationFilter, integrationOrder: $integrationOrder) {\n edges {\n cursor\n node {\n connectionStatus\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"integrationFilter\": {\n \"connectionStatus\": \"CONNECTED\",\n \"connectorNames\": [\n \"\"\n ],\n \"connectorTypes\": [\n \"AI\"\n ],\n \"enabled\": true,\n \"ids\": [\n \"\"\n ],\n \"search\": \"\"\n },\n \"integrationOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CONNECTOR_NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retrieves a list of integrations, optionally filtered by various criteria.

\n

Inputs: \nString, Int, IntegrationFilter, IntegrationOrder,

\n

Return: \nIntegrationConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"8ec97ff8-6ae1-4b83-9349-e782b9841da8","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query integrations ($after: String, $first: Int, $integrationFilter: IntegrationFilter, $integrationOrder: IntegrationOrder) {\n integrations (after: $after, first: $first, integrationFilter: $integrationFilter, integrationOrder: $integrationOrder) {\n edges {\n cursor\n node {\n connectionStatus\n enabled\n id\n lastConnectionTest\n lastUsed\n name\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"integrationFilter\": {\n \"connectionStatus\": \"CONNECTED\",\n \"connectorNames\": [\n \"\"\n ],\n \"connectorTypes\": [\n \"AI\"\n ],\n \"enabled\": true,\n \"ids\": [\n \"\"\n ],\n \"search\": \"\"\n },\n \"integrationOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CONNECTOR_NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retrieves a list of integrations, optionally filtered by various criteria.\n\nInputs: \nString, Int, IntegrationFilter, IntegrationOrder, \n\nReturn: \nIntegrationConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"integrations\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"connectionStatus\": \"CONNECTED\",\n \"enabled\": true,\n \"id\": \"\",\n \"lastConnectionTest\": \"2026-08-01T00:00:00.000Z\",\n \"lastUsed\": \"2026-08-01T00:00:00.000Z\",\n \"name\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"6e827f12-e5da-4f80-8220-69737cf33afd"},{"name":"searchHistory","id":"8fe972eb-58de-4920-b797-ecdb50e13d5b","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query searchHistory ($after: String, $by: QueryBatchSearchBy!, $filter: QueryBatchFilter, $first: Int, $order: QueryBatchOrder) {\n searchHistory (after: $after, by: $by, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n id\n name\n state\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"by\": {\n \"incidentId\": \"\"\n },\n \"filter\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retrieve a list of query batches.

\n

Inputs: \nString, QueryBatchSearchBy, QueryBatchFilter, Int, QueryBatchOrder,

\n

Return: \nQueryBatchConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"c793007b-9a6b-405b-9021-26e2aabe8da1","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query searchHistory ($after: String, $by: QueryBatchSearchBy!, $filter: QueryBatchFilter, $first: Int, $order: QueryBatchOrder) {\n searchHistory (after: $after, by: $by, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n id\n name\n state\n type\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"by\": {\n \"incidentId\": \"\"\n },\n \"filter\": {\n \"includeArchived\": true\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retrieve a list of query batches.\n\nInputs: \nString, QueryBatchSearchBy, QueryBatchFilter, Int, QueryBatchOrder, \n\nReturn: \nQueryBatchConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"searchHistory\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"id\": \"\",\n \"name\": \"\",\n \"state\": \"CANCELLED\",\n \"type\": \"ADHOC_PLAYBOOK\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"8fe972eb-58de-4920-b797-ecdb50e13d5b"}],"id":"95b2f08c-c7a7-4089-b221-b7aea111ae98","_postman_id":"95b2f08c-c7a7-4089-b221-b7aea111ae98","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"6712414b-9f95-4e65-92bb-e5e6a5600b26","description":"

IntegrationFilter

\n

Input type used to filter integrations based on specific criteria.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
connectionStatusThe connection status to filter integrations indicating whether the integration connection check was successful, unsuccessful or connection status is currently unavailable.ConnectionStatus
connectorNamesA list of connector names to filter integrations. Only integrations that match any of these connector names will be included in the results.String
connectorTypesA list of connector types to filter integrations. This should be a list of technology types that integrations can be categorized by.TechnologyType
enabledA boolean flag to filter integrations based on their enabled status. Set to true to include only enabled integrations, false for disabled, or null to include both.Boolean
idsA list of integration uuid to filter integrations. Only integrations that match these integration uuid will be included in the results.ID
searchAllows searching for integrations by matching keywords in fields like connector name, type, and integration name.String
\n

IntegrationOrderBy

\n

Order by ENUM for Integrations.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CONNECTOR_NAME
CONNECTOR_TYPE
CREATED_AT
ENABLED
LAST_CONNECTION_TEST
NAME
UPDATED_AT
UUID
\n

IntegrationOrder

\n

Integration OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = NAME, direction = ASC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByIntegrationOrderBy
\n

Integration

\n

Represents an integration.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
activityPaginated activity log entries that capture changes to the integration.IntegrationActivityLogConnection
connectionStatusConnection status of the integration.ConnectionStatus
connectorThe connector associated with the integration, linking to a specific technology type.Connector
enabledWhether the integration is enabled.Boolean
idUnique identifier for the integration.ID
lastConnectionTestTimestamp of the last connection test.DateTime
lastUsedTimestamp of the last integration run.DateTime
nameName of the integration.String
sharedByThe customer that shared this integration, if shared.Customer
\n

Connector

\n

Represents a technology connector.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
documentationUrlURL to the connector's documentation article in the Resource Center.String
idUnique identifier for the connector.ID
nameName of the connector.String
typeThe type of technology the connector represents.TechnologyType
\n

IntegrationConnection

\n

Supports pagination of integrations.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesA list of edges, each containing a node (Integration) and a cursor for pagination.IntegrationEdge
pageInfoContains information about pagination (e.g., hasNextPage, hasPreviousPage).PageInfo
totalCountInt
\n

IntegrationEdge

\n

An edge in the connections list.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorA cursor pointing to this edge, used for pagination.String
nodeThe integration node associated with this edge.Integration
\n

IntegrationActivityLogConnection

\n

Integration Activity Log Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesIntegrationActivityLogEdge
pageInfoPageInfo
totalCountInt
\n

IntegrationActivityLogEdge

\n

Integration Activity Log Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeIntegrationActivityLogEntry
\n

IntegrationActivityLogEntry

\n

Represents an Integration Activity Log Entry

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
changeGroupUuidGroups related log entries that originated from the same user actionString
createdAtWhen the action was performedDateTime
createdByWho performed the actionUser
fieldThe name of the field that changed. Null when type is CREATED, DELETED, ENABLED, or DISABLED.String
fieldChangeThe old and new values of the field that changed. Null when type is CREATED, DELETED, ENABLED, or DISABLED.StringListChanged
idUnique identifier for this activity log entryID
typeThe type of action performedIntegrationActivityLogType
\n

IntegrationActivityLogOrderBy

\n

Integration Activity Log OrderBy fields

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
\n

IntegrationActivityLogType

\n

Integration Activity Log Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CONFIGURATION_CHANGED
CREATED
DELETED
DISABLED
ENABLED
UPDATED
\n

IntegrationActivityLogFilter

\n

Integration activity log filter input type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdActivity log creation time range (Optional)TimeRange
typesActivity log types to filter by (Optional)IntegrationActivityLogType
\n

IntegrationActivityLogOrder

\n

Integration Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByIntegrationActivityLogOrderBy
\n

ConnectionStatus

\n

Integration ConnectionStatus ENUM.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CONNECTED
DISCONNECTED
NOT_AVAILABLE
\n

TechnologyType

\n

Defines the various types of technology that a connector can be associated with.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AI
ANTIVIRUS
CASB
CLOUD
DATA_LAKE
DLP
DNS
EDL_LIST
EDR
EMAIL_SECURITY
EPM
FILE_INTEGRITY_MONITORING
FILE_TRANSFER_OR_STORAGE
FIREWALL
IAM
IDS_IPS
MALWARE_SEARCH
MOBILE_DEVICE_MANAGEMENT
OPERATIONAL_TECHNOLOGY
OSINT
SANDBOXING
SASE
SIEM
SOAR
THREAT_INTELLIGENCE
UBA
VIRTUALIZATION
VPN
VULNERABILITY_MANAGEMENT
VULNERABILITY_SCANNER
WAF
XDR
\n
","_postman_id":"6712414b-9f95-4e65-92bb-e5e6a5600b26","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Reference Lists","item":[{"name":"Mutations","item":[{"name":"createReferenceList","id":"75fc556c-b432-4254-9884-040bead344e7","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createReferenceList ($after: String, $columnSelector: ReferenceListColumnSelector, $filter: ReferenceListRowFilter, $first: Int, $order: ReferenceListRowOrder, $input: CreateReferenceListInput!) {\n createReferenceList (input: $input) {\n referenceList {\n columns {\n createdAt\n description\n id\n name\n type\n updatedAt\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after, columnSelector: $columnSelector, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"dataTagging\": true,\n \"description\": \"\",\n \"name\": \"\",\n \"queryReference\": true\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a reference list.

\n

Inputs: \nCreateReferenceListInput,

\n

Return: \nReferenceListResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"99245c67-b0a3-4e85-b6f5-0cecad2351e3","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createReferenceList ($after: String, $columnSelector: ReferenceListColumnSelector, $filter: ReferenceListRowFilter, $first: Int, $order: ReferenceListRowOrder, $input: CreateReferenceListInput!) {\n createReferenceList (input: $input) {\n referenceList {\n columns {\n createdAt\n description\n id\n name\n type\n updatedAt\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after, columnSelector: $columnSelector, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"dataTagging\": true,\n \"description\": \"\",\n \"name\": \"\",\n \"queryReference\": true\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a reference list.\n\nInputs: \nCreateReferenceListInput, \n\nReturn: \nReferenceListResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createReferenceList\": {\n \"referenceList\": {\n \"columns\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"dataTagging\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"isBuiltIn\": true,\n \"name\": \"\",\n \"queryReference\": true,\n \"rows\": {\n \"totalCount\": 0\n },\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"75fc556c-b432-4254-9884-040bead344e7"},{"name":"createReferenceListColumn","id":"96f3c579-9e79-49fd-ae98-a84a44a4c405","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createReferenceListColumn ($input: CreateReferenceListColumnInput!) {\n createReferenceListColumn (input: $input) {\n column {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"description\": \"\",\n \"linkedFields\": [\n \"\"\n ],\n \"name\": \"\",\n \"referenceList\": \"\",\n \"type\": \"BOOLEAN\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a column and any associated linked GreyMatter fields within a reference list.

\n

Inputs: \nCreateReferenceListColumnInput,

\n

Return: \nReferenceListColumnResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"57d52aef-20f3-441f-a14b-b9f07d349cd1","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createReferenceListColumn ($input: CreateReferenceListColumnInput!) {\n createReferenceListColumn (input: $input) {\n column {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"description\": \"\",\n \"linkedFields\": [\n \"\"\n ],\n \"name\": \"\",\n \"referenceList\": \"\",\n \"type\": \"BOOLEAN\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a column and any associated linked GreyMatter fields within a reference list.\n\nInputs: \nCreateReferenceListColumnInput, \n\nReturn: \nReferenceListColumnResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createReferenceListColumn\": {\n \"column\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"linkedFields\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"96f3c579-9e79-49fd-ae98-a84a44a4c405"},{"name":"createReferenceListRow","id":"36671704-4b59-45a3-8d1d-7c68a16c28b5","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createReferenceListRow ($input: CreateReferenceListRowInput!) {\n createReferenceListRow (input: $input) {\n row {\n id\n updatedAt\n values {\n id\n updatedAt\n value\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"referenceList\": \"\",\n \"values\": {\n \"column\": \"\",\n \"value\": \"\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a row within a reference list.

\n

Inputs: \nCreateReferenceListRowInput,

\n

Return: \nReferenceListRowResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1627b909-b795-42a9-ac9f-0ba5697ff38c","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createReferenceListRow ($input: CreateReferenceListRowInput!) {\n createReferenceListRow (input: $input) {\n row {\n id\n updatedAt\n values {\n id\n updatedAt\n value\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"referenceList\": \"\",\n \"values\": {\n \"column\": \"\",\n \"value\": \"\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a row within a reference list.\n\nInputs: \nCreateReferenceListRowInput, \n\nReturn: \nReferenceListRowResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createReferenceListRow\": {\n \"row\": {\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"values\": [\n {\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"value\": \"\"\n }\n ]\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"36671704-4b59-45a3-8d1d-7c68a16c28b5"},{"name":"deleteReferenceList","id":"2a9f88c0-c112-4587-b35d-22f16115747f","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteReferenceList ($after: String, $columnSelector: ReferenceListColumnSelector, $filter: ReferenceListRowFilter, $first: Int, $order: ReferenceListRowOrder, $id: ID!) {\n deleteReferenceList (id: $id) {\n referenceList {\n columns {\n createdAt\n description\n id\n name\n type\n updatedAt\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after, columnSelector: $columnSelector, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete a reference list.

\n

Inputs: \nID,

\n

Return: \nReferenceListResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"5a912e16-6f9e-41d7-887e-92484ec0e1bd","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteReferenceList ($after: String, $columnSelector: ReferenceListColumnSelector, $filter: ReferenceListRowFilter, $first: Int, $order: ReferenceListRowOrder, $id: ID!) {\n deleteReferenceList (id: $id) {\n referenceList {\n columns {\n createdAt\n description\n id\n name\n type\n updatedAt\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after, columnSelector: $columnSelector, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete a reference list.\n\nInputs: \nID, \n\nReturn: \nReferenceListResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteReferenceList\": {\n \"referenceList\": {\n \"columns\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"dataTagging\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"isBuiltIn\": true,\n \"name\": \"\",\n \"queryReference\": true,\n \"rows\": {\n \"totalCount\": 0\n },\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"2a9f88c0-c112-4587-b35d-22f16115747f"},{"name":"deleteReferenceListColumn","id":"9a79b983-a547-43c8-b0b5-35192b731063","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteReferenceListColumn ($id: ID!) {\n deleteReferenceListColumn (id: $id) {\n column {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete a column within a reference list.

\n

Inputs: \nID,

\n

Return: \nReferenceListColumnResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"ccd7f506-0c70-4db9-81d7-568af85defce","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteReferenceListColumn ($id: ID!) {\n deleteReferenceListColumn (id: $id) {\n column {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete a column within a reference list.\n\nInputs: \nID, \n\nReturn: \nReferenceListColumnResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteReferenceListColumn\": {\n \"column\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"linkedFields\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"9a79b983-a547-43c8-b0b5-35192b731063"},{"name":"deleteReferenceListRow","id":"65ce88d6-7382-4681-a830-9c75f9dccc7b","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteReferenceListRow ($id: ID!) {\n deleteReferenceListRow (id: $id) {\n row {\n id\n updatedAt\n values {\n id\n updatedAt\n value\n }\n }\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete a row within a reference list.

\n

Inputs: \nID,

\n

Return: \nReferenceListRowResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"5a692679-138d-422a-89ec-ef879033a142","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteReferenceListRow ($id: ID!) {\n deleteReferenceListRow (id: $id) {\n row {\n id\n updatedAt\n values {\n id\n updatedAt\n value\n }\n }\n success\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete a row within a reference list.\n\nInputs: \nID, \n\nReturn: \nReferenceListRowResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteReferenceListRow\": {\n \"row\": {\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"values\": [\n {\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"value\": \"\"\n }\n ]\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"65ce88d6-7382-4681-a830-9c75f9dccc7b"},{"name":"updateReferenceList","id":"e307c9aa-07c2-43f9-b72e-6932fc7fe431","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateReferenceList ($after: String, $columnSelector: ReferenceListColumnSelector, $filter: ReferenceListRowFilter, $first: Int, $order: ReferenceListRowOrder, $input: UpdateReferenceListInput!) {\n updateReferenceList (input: $input) {\n referenceList {\n columns {\n createdAt\n description\n id\n name\n type\n updatedAt\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after, columnSelector: $columnSelector, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"dataTagging\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"queryReference\": true\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update a reference list.

\n

Inputs: \nUpdateReferenceListInput,

\n

Return: \nReferenceListResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7f1798b5-31c0-4b0a-89ec-b32e4d01fe63","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateReferenceList ($after: String, $columnSelector: ReferenceListColumnSelector, $filter: ReferenceListRowFilter, $first: Int, $order: ReferenceListRowOrder, $input: UpdateReferenceListInput!) {\n updateReferenceList (input: $input) {\n referenceList {\n columns {\n createdAt\n description\n id\n name\n type\n updatedAt\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after, columnSelector: $columnSelector, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"dataTagging\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"queryReference\": true\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update a reference list.\n\nInputs: \nUpdateReferenceListInput, \n\nReturn: \nReferenceListResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateReferenceList\": {\n \"referenceList\": {\n \"columns\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"dataTagging\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"isBuiltIn\": true,\n \"name\": \"\",\n \"queryReference\": true,\n \"rows\": {\n \"totalCount\": 0\n },\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"e307c9aa-07c2-43f9-b72e-6932fc7fe431"},{"name":"updateReferenceListColumn","id":"1e79b1c8-ae02-4cbf-9b72-95acef602b9d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateReferenceListColumn ($input: UpdateReferenceListColumnInput!) {\n updateReferenceListColumn (input: $input) {\n column {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"description\": \"\",\n \"id\": \"\",\n \"linkedFields\": {\n \"add\": [\n \"\"\n ],\n \"remove\": [\n \"\"\n ],\n \"replace\": [\n \"\"\n ]\n },\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update a column and its associated linked GreyMatter fields within a reference list.

\n

Inputs: \nUpdateReferenceListColumnInput,

\n

Return: \nReferenceListColumnResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"89bb0c8a-8913-42f5-b9fa-1a8771ad4961","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateReferenceListColumn ($input: UpdateReferenceListColumnInput!) {\n updateReferenceListColumn (input: $input) {\n column {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"description\": \"\",\n \"id\": \"\",\n \"linkedFields\": {\n \"add\": [\n \"\"\n ],\n \"remove\": [\n \"\"\n ],\n \"replace\": [\n \"\"\n ]\n },\n \"name\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update a column and its associated linked GreyMatter fields within a reference list.\n\nInputs: \nUpdateReferenceListColumnInput, \n\nReturn: \nReferenceListColumnResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateReferenceListColumn\": {\n \"column\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"linkedFields\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"1e79b1c8-ae02-4cbf-9b72-95acef602b9d"},{"name":"updateReferenceListRow","id":"d1353146-50c9-4afa-9555-ccbe34e2a928","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateReferenceListRow ($input: UpdateReferenceListRowInput!) {\n updateReferenceListRow (input: $input) {\n row {\n id\n updatedAt\n values {\n id\n updatedAt\n value\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"id\": \"\",\n \"values\": {\n \"column\": \"\",\n \"value\": \"\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update a row's values within a reference list.

\n

Inputs: \nUpdateReferenceListRowInput,

\n

Return: \nReferenceListRowResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7198aad9-0856-4595-b14e-01c591e545d5","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateReferenceListRow ($input: UpdateReferenceListRowInput!) {\n updateReferenceListRow (input: $input) {\n row {\n id\n updatedAt\n values {\n id\n updatedAt\n value\n }\n }\n success\n }\n}","variables":"{\n \"input\": {\n \"id\": \"\",\n \"values\": {\n \"column\": \"\",\n \"value\": \"\"\n }\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update a row's values within a reference list.\n\nInputs: \nUpdateReferenceListRowInput, \n\nReturn: \nReferenceListRowResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateReferenceListRow\": {\n \"row\": {\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"values\": [\n {\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"value\": \"\"\n }\n ]\n },\n \"success\": true\n }\n }\n}"}],"_postman_id":"d1353146-50c9-4afa-9555-ccbe34e2a928"}],"id":"0e5310d3-36cf-4607-ab7a-10137de0b312","_postman_id":"0e5310d3-36cf-4607-ab7a-10137de0b312","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"referenceList","id":"003bc37f-b832-4319-a56b-789456b2eab9","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query referenceList ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $after3: String, $columnSelector: ReferenceListColumnSelector, $filter3: ReferenceListRowFilter, $first3: Int, $order3: ReferenceListRowOrder, $after4: String, $filter4: AccessGroupFilter, $first4: Int, $order4: AccessGroupOrder, $after5: String, $filter5: PodFilter, $first5: Int, $order5: PodOrder, $after6: String, $filter6: RoleFilter, $first6: Int, $order6: RoleFilter, $id: ID!) {\n referenceList (id: $id) {\n columns {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n createdAt\n createdBy {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after3, columnSelector: $columnSelector, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n updatedAt\n updatedBy {\n accessGroups (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after5, filter: $filter5, first: $first5, order: $order5) {\n totalCount\n }\n roles (after: $after6, filter: $filter6, first: $first6, order: $order6) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after3\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter3\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first3\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after5\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter6\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order6\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch a reference list by its ID.

\n

Inputs: \nID,

\n

Return: \nReferenceList

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"67c0401f-74ec-4d84-b8cb-cb495aa160e3","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query referenceList ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $after3: String, $columnSelector: ReferenceListColumnSelector, $filter3: ReferenceListRowFilter, $first3: Int, $order3: ReferenceListRowOrder, $after4: String, $filter4: AccessGroupFilter, $first4: Int, $order4: AccessGroupOrder, $after5: String, $filter5: PodFilter, $first5: Int, $order5: PodOrder, $after6: String, $filter6: RoleFilter, $first6: Int, $order6: RoleFilter, $id: ID!) {\n referenceList (id: $id) {\n columns {\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n description\n id\n linkedFields {\n createdAt\n id\n updatedAt\n }\n name\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n createdAt\n createdBy {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n rows (after: $after3, columnSelector: $columnSelector, filter: $filter3, first: $first3, order: $order3) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n updatedAt\n updatedBy {\n accessGroups (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after5, filter: $filter5, first: $first5, order: $order5) {\n totalCount\n }\n roles (after: $after6, filter: $filter6, first: $first6, order: $order6) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after3\": \"T18w\",\n \"columnSelector\": {\n \"columns\": [\n \"\"\n ],\n \"linkedFields\": [\n \"\"\n ]\n },\n \"filter3\": {\n \"listConditions\": {\n \"caseInsensitive\": true,\n \"column\": \"\",\n \"values\": [\n \"\"\n ]\n },\n \"operator\": \"AND\",\n \"search\": \"\"\n },\n \"first3\": 10,\n \"order3\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after5\": \"T18w\",\n \"filter5\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter6\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order6\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch a reference list by its ID.\n\nInputs: \nID, \n\nReturn: \nReferenceList\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"referenceList\": {\n \"columns\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"description\": \"\",\n \"id\": \"\",\n \"linkedFields\": [\n {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n ],\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n ],\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"dataTagging\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"isBuiltIn\": true,\n \"name\": \"\",\n \"queryReference\": true,\n \"rows\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"003bc37f-b832-4319-a56b-789456b2eab9"},{"name":"referenceLists","id":"09184122-9bc7-4a48-8a2c-4bc95f796adc","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query referenceLists ($after: String, $filter: ReferenceListFilter, $first: Int, $order: ReferenceListOrder) {\n referenceLists (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"dataTagging\": true,\n \"queryReference\": true,\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all reference lists which match the provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, ReferenceListFilter, Int, ReferenceListOrder,

\n

Return: \nReferenceListConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"fbcf7146-092d-4e29-b3df-aede7fd3e4e9","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query referenceLists ($after: String, $filter: ReferenceListFilter, $first: Int, $order: ReferenceListOrder) {\n referenceLists (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n createdAt\n dataTagging\n description\n id\n isBuiltIn\n name\n queryReference\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"dataTagging\": true,\n \"queryReference\": true,\n \"search\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all reference lists which match the provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = page size, after = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, ReferenceListFilter, Int, ReferenceListOrder, \n\nReturn: \nReferenceListConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"referenceLists\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"dataTagging\": true,\n \"description\": \"\",\n \"id\": \"\",\n \"isBuiltIn\": true,\n \"name\": \"\",\n \"queryReference\": true,\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"09184122-9bc7-4a48-8a2c-4bc95f796adc"}],"id":"08a5fc84-d66c-44ca-9428-fd4e6b1067b7","_postman_id":"08a5fc84-d66c-44ca-9428-fd4e6b1067b7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"6f6f49ac-b573-4165-b3ea-9e956300b70f","description":"

ReferenceList

\n

Represents a Reference List type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
columnsReferenceListColumn
createdAtDateTime
createdByUser
dataTaggingAllows for the automatic tagging of incoming logs with reference list data.Boolean
descriptionString
idID
isBuiltInBoolean
nameString
queryReferenceAllows the reference list to be included in Investigate and Hunt queries.Boolean
rowsThe rows field works like an SQL table, with the filter parameter determining the rows to include. The columnSelector defines which values (columns) are returned for each row.ReferenceListRowConnection
updatedAtDateTime
updatedByUser
\n

ReferenceListConnection

\n

Reference List Connection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesReferenceListEdge
pageInfoPageInfo
totalCountInt
\n

ReferenceListEdge

\n

Reference List Edge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeReferenceList
\n

ReferenceListResponse

\n

Response type for Create, Update, and Delete operations on Reference Lists.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
referenceListReferenceList
successBoolean
\n

ReferenceListFilter

\n

Input to filter reference lists by name, queryReference enabling, and dataTagging enabling.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
dataTaggingBoolean
queryReferenceBoolean
searchString
\n

ReferenceListOrder

\n

Reference Lists OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByReferenceListOrderBy
\n

CreateReferenceListInput

\n

Input to create a reference list.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
dataTaggingBoolean
descriptionString
nameString
queryReferenceBoolean
\n

UpdateReferenceListInput

\n

Input to update a reference list.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
dataTaggingBoolean
descriptionString
idID
nameString
queryReferenceBoolean
\n

ReferenceListOrderBy

\n

Order by Enum for Reference Lists.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
DESCRIPTION
NAME
UPDATED_AT
\n

ReferenceListColumn

\n

Represents a Reference List Column type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByUser
descriptionString
idID
linkedFieldsReferenceListLinkedGreyMatterField
nameString
typeReferenceListColumnValueType
updatedAtDateTime
updatedByUser
\n

ReferenceListColumnValueType

\n

The value type of a Reference List Column.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
BOOLEAN
STRING
\n

ReferenceListLinkedGreyMatterField

\n

Represents a Linked GreyMatter Field type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByUser
idID
linkedFieldGreyMatterField
updatedAtDateTime
updatedByUser
\n

ReferenceListColumnResponse

\n

Response type for Create, Update, and Delete operations on Reference List Columns.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
columnReferenceListColumn
successBoolean
\n

CreateReferenceListColumnInput

\n

Input to create a column and any associated linked GreyMatter fields in a reference list.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionString
linkedFieldsString
nameString
referenceListID
typeReferenceListColumnValueType
\n

UpdateReferenceListColumnInput

\n

Input to update a column and its associated linked GreyMatter fields in a reference list.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
descriptionString
idID
linkedFieldsIf the \"replace\" operation is provided, any \"add\" or \"remove\" operations are ignored. \"Remove\" is performed prior to \"add\".UpdateReferenceListLinkedGreyMatterFieldInput
nameString
\n

UpdateReferenceListLinkedGreyMatterFieldInput

\n

Input to update the associated linked GreyMatter fields in a Reference List Column.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
addString
removeString
replaceString
\n

ReferenceListRow

\n

Represents a Reference List Row type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
updatedAtDateTime
valuesReferenceListValue
\n

ReferenceListRowConnection

\n

Reference List Row Connection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesReferenceListRowEdge
pageInfoPageInfo
totalCountInt
\n

ReferenceListRowEdge

\n

Reference List Row Edge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeReferenceListRow
\n

ReferenceListRowResponse

\n

Response type for Create, Update, and Delete operations on Reference List Rows.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
rowReferenceListRow
successBoolean
\n

ReferenceListColumnSelector

\n

Input to select table columns by Column name or linked GreyMatter fields.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
columnsID
linkedFieldsString
\n

ReferenceListRowFilter

\n

Input to filter values within a row.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
listConditionsInput 'listConditions' is used to refine returned rows and values based on the applied constraints.ListCondition
operatorInput 'operator' is used to AND/OR list conditions.ListConditionOperator
searchInput 'search' is used to filter for rows containing the substring of the search.String
\n

ReferenceListRowOrder

\n

Reference List Rows OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByReferenceListRowOrderBy
\n

CreateReferenceListRowInput

\n

Input to create a row in a reference list.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
referenceListID
valuesReferenceListRowValueInput
\n

UpdateReferenceListRowInput

\n

Input to update a row's values within a reference list.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
idID
valuesReferenceListRowValueInput
\n

ReferenceListRowValueInput

\n

Input to populate values when creating/updating a row.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
columnID
valueString
\n

ReferenceListRowOrderBy

\n

Order by Enum for Reference List Rows.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
UPDATED_AT
\n

ReferenceListValue

\n

Represents a Reference List Value type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
columnReferenceListColumn
idID
updatedAtDateTime
valueString
\n

ListCondition

\n

Input to provide column- and value-based conditions to refine filtering.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
caseInsensitiveBoolean
columnID
valuesString
\n

ListConditionOperator

\n

Operator Enum for List Conditions.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
AND
OR
\n
","_postman_id":"6f6f49ac-b573-4165-b3ea-9e956300b70f","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Tasks","item":[{"name":"Mutations","item":[{"name":"acknowledgeTask","id":"60c84b44-6577-4f8c-ba03-858febfe2e8a","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation acknowledgeTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: AcknowledgeTaskInput!) {\n acknowledgeTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Acknowledge a task.

\n

Inputs: \nAcknowledgeTaskInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"af270cce-c19f-4277-8e3a-d3bd5bfa4bb9","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation acknowledgeTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: AcknowledgeTaskInput!) {\n acknowledgeTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Acknowledge a task.\n\nInputs: \nAcknowledgeTaskInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"acknowledgeTask\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"60c84b44-6577-4f8c-ba03-858febfe2e8a"},{"name":"addTaskComment","id":"9537de95-2fea-4bb5-82e6-fbbecb4cffb7","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addTaskComment ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: TaskCommentInput!) {\n addTaskComment (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"comment\": \"\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Add comment to task

\n

Inputs: \nTaskCommentInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"e64da6c4-52f4-4aaf-ba87-2e75718a20db","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addTaskComment ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: TaskCommentInput!) {\n addTaskComment (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"comment\": \"\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Add comment to task\n\nInputs: \nTaskCommentInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"addTaskComment\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"9537de95-2fea-4bb5-82e6-fbbecb4cffb7"},{"name":"assignTask","id":"faf26e45-cf73-456b-a148-714572c4b31c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: AssignTaskInput!) {\n assignTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"assigneeId\": \"\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Assign a user to the task

\n

Inputs: \nAssignTaskInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"13f6a1b3-65dd-448a-9aac-fdd25272ca4d","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation assignTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: AssignTaskInput!) {\n assignTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"assigneeId\": \"\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Assign a user to the task\n\nInputs: \nAssignTaskInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"assignTask\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"faf26e45-cf73-456b-a148-714572c4b31c"},{"name":"bulkResolveTasks","id":"d02b5b1e-0ec0-4ccf-8c1d-852476507b2d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkResolveTasks ($input: BulkResolveTasksInput!) {\n bulkResolveTasks (input: $input) {\n success\n tasks {\n closeCode\n closeNote\n id\n state\n }\n }\n}","variables":"{\n \"input\": {\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"taskIds\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Bulk resolve multiple tasks with the same close code and notes

\n

Inputs: \nBulkResolveTasksInput,

\n

Return: \nBulkTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"b204a3d7-1b61-42d3-9730-a6dbeb2321f7","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation bulkResolveTasks ($input: BulkResolveTasksInput!) {\n bulkResolveTasks (input: $input) {\n success\n tasks {\n closeCode\n closeNote\n id\n state\n }\n }\n}","variables":"{\n \"input\": {\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"taskIds\": [\n \"\"\n ]\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Bulk resolve multiple tasks with the same close code and notes\n\nInputs: \nBulkResolveTasksInput, \n\nReturn: \nBulkTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"bulkResolveTasks\": {\n \"success\": true,\n \"tasks\": [\n {\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"id\": \"\",\n \"state\": \"CANCELLED\"\n }\n ]\n }\n }\n}"}],"_postman_id":"d02b5b1e-0ec0-4ccf-8c1d-852476507b2d"},{"name":"createTask","id":"15743072-41f6-4274-b6d5-1a3def1ec5c4","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: CreateTaskInput!) {\n createTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"assignee\": \"\",\n \"description\": \"\",\n \"initialState\": \"CANCELLED\",\n \"metadata\": {\n \"engineeringMetadata\": {\n \"businessCriticalLogSourceImpact\": true,\n \"businessCriticalLogSourceImpactReason\": \"\",\n \"changeWindowDetails\": {\n \"reason\": \"\",\n \"timeRange\": {}\n },\n \"changeWindowRequired\": true,\n \"contactDetails\": {\n \"email\": \"\",\n \"name\": \"\",\n \"phoneNumber\": \"\"\n },\n \"engineeringTaskSubType\": \"LOG_SOURCE_MODIFICATION\",\n \"environmentImpact\": \"BETWEEN_25_50_PCT\",\n \"errorMessageDetails\": \"\",\n \"errorMessagesObserved\": true,\n \"issue\": \"INCORRECT_INGESTION\",\n \"issueStartedAt\": \"LAST_24_HOURS\",\n \"logSourceIntegrationDetails\": {\n \"additionalInformation\": \"\",\n \"hostname\": \"\",\n \"ipAddress\": \"\",\n \"serviceAccount\": \"\"\n },\n \"logSourceNotListed\": true,\n \"logSources\": [\n \"\"\n ],\n \"neededForCompliance\": true,\n \"neededForComplianceDetails\": \"\",\n \"recentLogSourceChangeDetails\": \"\",\n \"recentLogSourceChanges\": true,\n \"requiredMetadata\": true,\n \"requiredMetadataDetails\": {\n \"filename\": \"\",\n \"hash\": \"\",\n \"logSourceName\": \"\",\n \"sourceIp\": \"\",\n \"url\": \"\"\n },\n \"retentionReason\": \"\",\n \"retentionRequirements\": true,\n \"supportTimeFrame\": \"ASAP\",\n \"troubleShootingDetails\": \"\",\n \"troubleShootingStarted\": true\n }\n },\n \"priority\": \"CRITICAL\",\n \"taskType\": \"DETECT_TUNING\",\n \"title\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a new task

\n

Inputs: \nCreateTaskInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"303243c8-5031-4a50-aed8-d6f05445e527","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: CreateTaskInput!) {\n createTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"assignee\": \"\",\n \"description\": \"\",\n \"initialState\": \"CANCELLED\",\n \"metadata\": {\n \"engineeringMetadata\": {\n \"businessCriticalLogSourceImpact\": true,\n \"businessCriticalLogSourceImpactReason\": \"\",\n \"changeWindowDetails\": {\n \"reason\": \"\",\n \"timeRange\": {}\n },\n \"changeWindowRequired\": true,\n \"contactDetails\": {\n \"email\": \"\",\n \"name\": \"\",\n \"phoneNumber\": \"\"\n },\n \"engineeringTaskSubType\": \"LOG_SOURCE_MODIFICATION\",\n \"environmentImpact\": \"BETWEEN_25_50_PCT\",\n \"errorMessageDetails\": \"\",\n \"errorMessagesObserved\": true,\n \"issue\": \"INCORRECT_INGESTION\",\n \"issueStartedAt\": \"LAST_24_HOURS\",\n \"logSourceIntegrationDetails\": {\n \"additionalInformation\": \"\",\n \"hostname\": \"\",\n \"ipAddress\": \"\",\n \"serviceAccount\": \"\"\n },\n \"logSourceNotListed\": true,\n \"logSources\": [\n \"\"\n ],\n \"neededForCompliance\": true,\n \"neededForComplianceDetails\": \"\",\n \"recentLogSourceChangeDetails\": \"\",\n \"recentLogSourceChanges\": true,\n \"requiredMetadata\": true,\n \"requiredMetadataDetails\": {\n \"filename\": \"\",\n \"hash\": \"\",\n \"logSourceName\": \"\",\n \"sourceIp\": \"\",\n \"url\": \"\"\n },\n \"retentionReason\": \"\",\n \"retentionRequirements\": true,\n \"supportTimeFrame\": \"ASAP\",\n \"troubleShootingDetails\": \"\",\n \"troubleShootingStarted\": true\n }\n },\n \"priority\": \"CRITICAL\",\n \"taskType\": \"DETECT_TUNING\",\n \"title\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a new task\n\nInputs: \nCreateTaskInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createTask\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"15743072-41f6-4274-b6d5-1a3def1ec5c4"},{"name":"resolveTask","id":"c8afab01-6098-4279-9467-4088c9de4289","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation resolveTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: ResolveTaskInput!) {\n resolveTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Resolve a task

\n

Inputs: \nResolveTaskInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"5d909946-a177-4d23-bc25-1c01201ae400","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation resolveTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: ResolveTaskInput!) {\n resolveTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Resolve a task\n\nInputs: \nResolveTaskInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"resolveTask\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"c8afab01-6098-4279-9467-4088c9de4289"},{"name":"unresolveTask","id":"7724e0dd-6a66-44b7-b423-66d1a1b99aa0","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unresolveTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: UnresolveTaskInput!) {\n unresolveTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Unresolve a resolved task

\n

Inputs: \nUnresolveTaskInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d32f7562-05a7-4f36-bcd9-0006e42d7a4a","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation unresolveTask ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: UnresolveTaskInput!) {\n unresolveTask (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Unresolve a resolved task\n\nInputs: \nUnresolveTaskInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"unresolveTask\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"7724e0dd-6a66-44b7-b423-66d1a1b99aa0"},{"name":"updateTaskRetainedStatus","id":"24d2d6e7-5ae5-4746-b7f8-97593c1cd481","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateTaskRetainedStatus ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: UpdateTaskRetainedStatusInput!) {\n updateTaskRetainedStatus (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"retained\": true,\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update Task retained status

\n

Inputs: \nUpdateTaskRetainedStatusInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1c8f9a84-cc84-43c3-8ee6-4ae43de7b08f","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateTaskRetainedStatus ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: UpdateTaskRetainedStatusInput!) {\n updateTaskRetainedStatus (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"retained\": true,\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update Task retained status\n\nInputs: \nUpdateTaskRetainedStatusInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateTaskRetainedStatus\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"24d2d6e7-5ae5-4746-b7f8-97593c1cd481"},{"name":"updateTaskState","id":"578712e3-7b05-46ac-bdbd-822397905a2d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateTaskState ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: UpdateTaskStateInput!) {\n updateTaskState (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"newState\": \"CANCELLED\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update Task State

\n

Inputs: \nUpdateTaskStateInput,

\n

Return: \nTaskResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"26036640-ccf8-436d-a6a8-b266a56a86b1","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateTaskState ($after: String, $filter: TaskCommentFilter, $first: Int, $order: TaskCommentOrder, $input: UpdateTaskStateInput!) {\n updateTaskState (input: $input) {\n success\n task {\n acknowledgement {\n actionMethod\n createdAt\n }\n assignee {\n email\n fullName\n id\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n createdAt\n createdBy {\n email\n fullName\n id\n serviceNowId\n }\n customer {\n active\n headerSlug\n id\n name\n residency\n slug\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n email\n fullName\n id\n serviceNowId\n }\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"input\": {\n \"newState\": \"CANCELLED\",\n \"taskId\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update Task State\n\nInputs: \nUpdateTaskStateInput, \n\nReturn: \nTaskResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateTaskState\": {\n \"success\": true,\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\"\n },\n \"assignee\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"active\": true,\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\"\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n }\n }\n}"}],"_postman_id":"578712e3-7b05-46ac-bdbd-822397905a2d"}],"id":"dffd1a0b-0e94-4786-b3d2-c91cda1447ff","_postman_id":"dffd1a0b-0e94-4786-b3d2-c91cda1447ff","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"task","id":"bdd08af9-fb7b-464b-8636-0749c56d571f","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query task ($after: String, $filter: TaskActivityLogFilter, $first: Int, $order: TaskActivityLogOrder, $after1: String, $filter1: AccessGroupFilter, $first1: Int, $order1: AccessGroupOrder, $after2: String, $filter2: PodFilter, $first2: Int, $order2: PodOrder, $after3: String, $filter3: RoleFilter, $first3: Int, $order3: RoleFilter, $after4: String, $filter4: TaskCommentFilter, $first4: Int, $order4: TaskCommentOrder, $after5: String, $filter5: AccessGroupFilter, $first5: Int, $order5: AccessGroupOrder, $after6: String, $filter6: PodFilter, $first6: Int, $order6: PodOrder, $after7: String, $filter7: RoleFilter, $first7: Int, $order7: RoleFilter, $after8: String, $first8: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after9: String, $first9: Int, $after10: String, $filter8: AccessGroupFilter, $first10: Int, $order8: AccessGroupOrder, $after11: String, $filter9: PodFilter, $first11: Int, $order9: PodOrder, $after12: String, $filter10: RoleFilter, $first12: Int, $order10: RoleFilter, $by: TaskBy!) {\n task (by: $by) {\n acknowledgement {\n actionMethod\n createdAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n assignee {\n accessGroups (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n roles (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n totalCount\n }\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n createdBy {\n accessGroups (after: $after5, filter: $filter5, first: $first5, order: $order5) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after6, filter: $filter6, first: $first6, order: $order6) {\n totalCount\n }\n roles (after: $after7, filter: $filter7, first: $first7, order: $order7) {\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after8, first: $first8) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after9, first: $first9) {\n totalCount\n }\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n accessGroups (after: $after10, filter: $filter8, first: $first10, order: $order8) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after11, filter: $filter9, first: $first11, order: $order9) {\n totalCount\n }\n roles (after: $after12, filter: $filter10, first: $first12, order: $order10) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CREATED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after5\": \"T18w\",\n \"filter5\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter6\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order6\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after7\": \"T18w\",\n \"filter7\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first7\": 10,\n \"order7\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after8\": \"T18w\",\n \"first8\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after9\": \"T18w\",\n \"first9\": 10,\n \"after10\": \"T18w\",\n \"filter8\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first10\": 10,\n \"order8\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after11\": \"T18w\",\n \"filter9\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first11\": 10,\n \"order9\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after12\": \"T18w\",\n \"filter10\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first12\": 10,\n \"order10\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"by\": {\n \"externalId\": \"\",\n \"id\": \"\",\n \"slug\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch Task by id, slug OR externalId.

\n

Inputs: \nTaskBy,

\n

Return: \nTask

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"ff42089e-3719-4950-b50c-48f4d752e31e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query task ($after: String, $filter: TaskActivityLogFilter, $first: Int, $order: TaskActivityLogOrder, $after1: String, $filter1: AccessGroupFilter, $first1: Int, $order1: AccessGroupOrder, $after2: String, $filter2: PodFilter, $first2: Int, $order2: PodOrder, $after3: String, $filter3: RoleFilter, $first3: Int, $order3: RoleFilter, $after4: String, $filter4: TaskCommentFilter, $first4: Int, $order4: TaskCommentOrder, $after5: String, $filter5: AccessGroupFilter, $first5: Int, $order5: AccessGroupOrder, $after6: String, $filter6: PodFilter, $first6: Int, $order6: PodOrder, $after7: String, $filter7: RoleFilter, $first7: Int, $order7: RoleFilter, $after8: String, $first8: Int, $createdAfter: DateTime, $createdBefore: DateTime, $after9: String, $first9: Int, $after10: String, $filter8: AccessGroupFilter, $first10: Int, $order8: AccessGroupOrder, $after11: String, $filter9: PodFilter, $first11: Int, $order9: PodOrder, $after12: String, $filter10: RoleFilter, $first12: Int, $order10: RoleFilter, $by: TaskBy!) {\n task (by: $by) {\n acknowledgement {\n actionMethod\n createdAt\n user {\n email\n fullName\n id\n serviceNowId\n }\n }\n activity (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n assignee {\n accessGroups (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n roles (after: $after3, filter: $filter3, first: $first3, order: $order3) {\n totalCount\n }\n serviceNowId\n }\n closeCode\n closeNote\n closedAt\n comments (after: $after4, filter: $filter4, first: $first4, order: $order4) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n createdAt\n createdBy {\n accessGroups (after: $after5, filter: $filter5, first: $first5, order: $order5) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after6, filter: $filter6, first: $first6, order: $order6) {\n totalCount\n }\n roles (after: $after7, filter: $filter7, first: $first7, order: $order7) {\n totalCount\n }\n serviceNowId\n }\n customer {\n accessControlPolicies (after: $after8, first: $first8) {\n totalCount\n }\n active\n deployedRulesCount (createdAfter: $createdAfter, createdBefore: $createdBefore) {\n count\n }\n headerSlug\n id\n name\n residency\n slug\n users (after: $after9, first: $first9) {\n totalCount\n }\n }\n description\n externalId\n id\n metadata {\n ... on EngineeringTaskMetadata {\n businessCriticalLogSourceImpact\n businessCriticalLogSourceImpactReason\n changeWindowRequired\n engineeringTaskSubType\n environmentImpact\n errorMessagesObserved\n issue\n issueStartedAt\n logSourceNotListed\n logSources\n neededForCompliance\n neededForComplianceDetails\n recentLogSourceChangeDetails\n recentLogSourceChanges\n requiredMetadata\n retentionReason\n retentionRequirements\n supportTimeFrame\n troubleShootingDetails\n troubleShootingStarted\n }\n }\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n updatedBy {\n accessGroups (after: $after10, filter: $filter8, first: $first10, order: $order8) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after11, filter: $filter9, first: $first11, order: $order9) {\n totalCount\n }\n roles (after: $after12, filter: $filter10, first: $first12, order: $order10) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"CREATED\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderByList\": [\n \"CREATED_AT\"\n ]\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after3\": \"T18w\",\n \"filter3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first3\": 10,\n \"order3\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after4\": \"T18w\",\n \"filter4\": {\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"types\": [\n \"PUBLIC\"\n ]\n },\n \"first4\": 10,\n \"order4\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CREATED_AT\"\n },\n \"after5\": \"T18w\",\n \"filter5\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first5\": 10,\n \"order5\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after6\": \"T18w\",\n \"filter6\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first6\": 10,\n \"order6\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after7\": \"T18w\",\n \"filter7\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first7\": 10,\n \"order7\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"after8\": \"T18w\",\n \"first8\": 10,\n \"createdAfter\": \"2026-08-01T00:00:00.000Z\",\n \"createdBefore\": \"2026-08-01T00:00:00.000Z\",\n \"after9\": \"T18w\",\n \"first9\": 10,\n \"after10\": \"T18w\",\n \"filter8\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first10\": 10,\n \"order8\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after11\": \"T18w\",\n \"filter9\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first11\": 10,\n \"order9\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after12\": \"T18w\",\n \"filter10\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first12\": 10,\n \"order10\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"by\": {\n \"externalId\": \"\",\n \"id\": \"\",\n \"slug\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch Task by id, slug OR externalId.\n\nInputs: \nTaskBy, \n\nReturn: \nTask\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"task\": {\n \"acknowledgement\": {\n \"actionMethod\": \"ACTION_TOKEN\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"user\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n },\n \"activity\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n }\n },\n \"assignee\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"comments\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n },\n \"customer\": {\n \"accessControlPolicies\": {\n \"totalCount\": 0\n },\n \"active\": true,\n \"deployedRulesCount\": {\n \"count\": 0\n },\n \"headerSlug\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"residency\": \"\",\n \"slug\": \"\",\n \"users\": {\n \"totalCount\": 0\n }\n },\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"metadata\": {\n \"__typename\": \"EngineeringTaskMetadata\"\n },\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\",\n \"updatedBy\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"bdd08af9-fb7b-464b-8636-0749c56d571f"},{"name":"tasks","id":"a72b2a9a-6213-4f11-aaed-8891cb764f9d","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query tasks ($after: String, $first: Int, $taskFilter: TaskFilter, $taskOrder: TaskOrder) {\n tasks (after: $after, first: $first, taskFilter: $taskFilter, taskOrder: $taskOrder) {\n edges {\n cursor\n node {\n closeCode\n closeNote\n closedAt\n createdAt\n description\n externalId\n id\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"taskFilter\": {\n \"acknowledged\": true,\n \"assignees\": [\n \"\"\n ],\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"notAssignees\": [\n \"\"\n ],\n \"priorities\": [\n \"CRITICAL\"\n ],\n \"search\": \"\",\n \"serviceNowCategories\": [\n \"CONTENT\"\n ],\n \"states\": [\n \"CANCELLED\"\n ],\n \"types\": [\n \"DETECT_TUNING\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"taskOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Fetch all Tasks which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.

\n

Inputs: \nString, Int, TaskFilter, TaskOrder,

\n

Return: \nTaskConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"c1b9eaf9-8a87-49bc-94c0-558f5cd89a65","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query tasks ($after: String, $first: Int, $taskFilter: TaskFilter, $taskOrder: TaskOrder) {\n tasks (after: $after, first: $first, taskFilter: $taskFilter, taskOrder: $taskOrder) {\n edges {\n cursor\n node {\n closeCode\n closeNote\n closedAt\n createdAt\n description\n externalId\n id\n priority\n retained\n serviceNowCategory\n serviceNowSubCategory\n slug\n state\n title\n type\n updatedAt\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"first\": 10,\n \"taskFilter\": {\n \"acknowledged\": true,\n \"assignees\": [\n \"\"\n ],\n \"closed\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"created\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n },\n \"notAssignees\": [\n \"\"\n ],\n \"priorities\": [\n \"CRITICAL\"\n ],\n \"search\": \"\",\n \"serviceNowCategories\": [\n \"CONTENT\"\n ],\n \"states\": [\n \"CANCELLED\"\n ],\n \"types\": [\n \"DETECT_TUNING\"\n ],\n \"unassigned\": true,\n \"updated\": {\n \"earliest\": \"2026-08-01T00:00:00.000Z\",\n \"latest\": \"2026-08-01T00:00:00.000Z\"\n }\n },\n \"taskOrder\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"CLOSED_AT\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Fetch all Tasks which matches provided filter criteria. This API is paginated.\nPagination is handled by these arguments: first = Page count, after = Cursor offset position - This will be converted to Page number based on Page size provided.\n\nInputs: \nString, Int, TaskFilter, TaskOrder, \n\nReturn: \nTaskConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"tasks\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"closeCode\": \"CANCELLED\",\n \"closeNote\": \"\",\n \"closedAt\": \"2026-08-01T00:00:00.000Z\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"description\": \"\",\n \"externalId\": \"\",\n \"id\": \"\",\n \"priority\": \"CRITICAL\",\n \"retained\": true,\n \"serviceNowCategory\": \"\",\n \"serviceNowSubCategory\": \"\",\n \"slug\": \"\",\n \"state\": \"CANCELLED\",\n \"title\": \"\",\n \"type\": \"DETECT_TUNING\",\n \"updatedAt\": \"2026-08-01T00:00:00.000Z\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"a72b2a9a-6213-4f11-aaed-8891cb764f9d"}],"id":"5256a20d-5102-4033-8e6d-1ad261b004b1","_postman_id":"5256a20d-5102-4033-8e6d-1ad261b004b1","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"3d4628ea-0a44-4f35-af06-b48cf8a857fc","description":"

TaskBy

\n

Search for a Task by one of the below

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
externalIdString
idID
slugString
\n

CreateTaskInput

\n

Input fields for new task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeID
descriptionString
initialStateCreate the task already in this state, rather than the default NEW. Only PENDING_RQ is accepted; any other value is rejected. Cannot be combined with assignee, since PENDING_RQ carries no assignee.TaskState
metadataExtra fields that are specific to task types other than GENERAL. Leave null for GENERALTaskMetadataInput
priorityTaskPriority
taskTypeTaskType
titleString
\n

UpdateTaskRetainedStatusInput

\n

Update \"retained\" status on task. Setting retained to true will mean\nthe task will never be archived. Setting it to false will mean the task\nwill expire after data retention period.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
retainedBoolean
taskIdID
\n

TaskMetadataInput

\n

Extra fields that are specific to a specific type of task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
engineeringMetadataEngineeringTaskMetadataInput
\n

EngineeringTaskMetadataInput

\n

Extra fields that are required for tasks of type ENGINEERING only

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
businessCriticalLogSourceImpactBoolean
businessCriticalLogSourceImpactReasonOnly needed if businessCriticalLogSourceImpact is true, otherwise leave nullString
changeWindowDetailsOnly needed if changeWindowRequired is true, otherwise leave nullEngineeringTaskChangeWindowDetailsInput
changeWindowRequiredBoolean
contactDetailsEngineeringTaskContactDetailsInput
engineeringTaskSubTypeEngineeringTaskSubType
environmentImpactEngineeringTaskEnvironmentImpact
errorMessageDetailsOnly needed if errorMessagesObserved is true, otherwise leave nullString
errorMessagesObservedBoolean
issueEngineeringTaskIssueType
issueStartedAtEngineeringTaskIssueStart
logSourceIntegrationDetailsLogSourceIntegrationDetailsInput
logSourceNotListedBoolean
logSourcesString
neededForComplianceBoolean
neededForComplianceDetailsOnly needed if neededForCompliance is true, otherwise leave nullString
recentLogSourceChangeDetailsOnly needed if recentLogSourceChanges is true, otherwise leave nullString
recentLogSourceChangesBoolean
requiredMetadataBoolean
requiredMetadataDetailsOnly needed if requiredMetadata is true, otherwise leave nullEngineeringTaskRequiredMetadataDetailsInput
retentionReasonOnly needed if retentionRequirements is true, otherwise leave nullString
retentionRequirementsBoolean
supportTimeFrameEngineeringTaskSupportTimeFrame
troubleShootingDetailsOnly needed if troubleShootingStarted is true, otherwise leave nullString
troubleShootingStartedBoolean
\n

EngineeringTaskContactDetailsInput

\n

Contact details for following up on ENGINEERING type task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
emailString
nameString
phoneNumberString
\n

LogSourceIntegrationDetailsInput

\n

Integration details for log source

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
additionalInformationString
hostnameString
ipAddressString
serviceAccountString
\n

EngineeringTaskChangeWindowDetailsInput

\n

Extra details if changeWindowNeeded flag is true

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
reasonString
timeRangeTimeRange
\n

EngineeringTaskRequiredMetadataDetailsInput

\n

Metadata for log source integration

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
filenameString
hashString
logSourceNameString
sourceIpString
urlString
\n

TaskFilter

\n

Task Filter input type to filter out Tasks. If not set, defaults will be used.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgedFilter out tasks based on acknowledgement True: Acknowledged tasks Null: Both acknowledged and un-acknowledged tasks False: Un-Acknowledged tasksBoolean
assigneesList of assignee IDs to filterID
closedTask closed TimeRange filter (Earliest and latest TimeStamp)TimeRange
createdTask creation TimeRange filter (Earliest and latest TimeStamp)TimeRange
notAssigneesList of assignee IDs to exclude, not include, in the filterID
prioritiesList of Priority to filter.TaskPriority
searchWildcard search string to search from Task's Title/Description/TicketNumber/Summary.String
serviceNowCategoriesList of ServiceNow categories to filter againstTaskServiceNowCategory
statesList of Statuses to filter.TaskState
typesTask type based filter.TaskType
unassignedFilter out tasks based on assignment True: Tasks which are not assigned to any user False: Tasks which are assigned to userBoolean
updatedTask updated TimeRange filter (Earliest and latest TimeStamp)TimeRange
\n

TaskOrder

\n

Task OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByTaskOrderBy
\n

AssignTaskInput

\n

Input fields for updating the Task's assignee. Pass null for assigneeId to unassign the Task.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeIdID
taskIdID
\n

AcknowledgeTaskInput

\n

Input type for acknowledging a task.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionMethodThe method used to acknowledge the task.TaskActionMethod
taskIdThe unique identifier of the task.ID
\n

TaskCommentInput

\n

Input to create an TaskComment.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
commentString
taskIdID
\n

UpdateTaskStateInput

\n

Input to update the TaskState

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newStateTaskState
taskIdID
\n

TaskResponse

\n

The TaskResponse type is used to return the result of an task related operation.

\n

Fields:

\n
    \n
  • success: Indicates whether the operation was successful.
  • \n
  • task: Provides details of the task (optional, might be null if no task is associated).
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    FieldDescriptionType
    successIndicates whether the operation was successful.Boolean
    taskProvides details of the task (optional, might be null if no task is associated).Task
    \n
  • \n
\n

TaskConnection

\n

Task Connection schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesTaskEdge
pageInfoPageInfo
totalCountInt
\n

TaskEdge

\n

Task Edge schema.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeTask
\n

TaskType

\n

Type of task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
DETECT_TUNINGDETECT_TUNING is automatically created by GreyMatter. This type cannot be created via the API.
ENGINEERING
GENERAL
TEAMMATETEAMMATE is automatically created by GreyMatter. This type cannot be created via the API.
TEAMMATE_ACTIONTEAMMATE_ACTION is automatically created by GreyMatter. This type cannot be created via the API.
\n

TaskPriority

\n

Priority of task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CRITICAL
HIGH
INFORMATIONAL
LOW
MEDIUM
\n

TaskAcknowledgement

\n

Represents an acknowledgement of an task.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionMethodThe method used to acknowledge the task.TaskActionMethod
createdAtThe timestamp when the task was acknowledged (optional).DateTime
userThe user who acknowledged the task (optional).User
\n

Task

\n

Task schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
acknowledgementTaskAcknowledgement
activityTaskActivityLogConnection
assigneeUser
closeCodeTaskCloseCode
closeNoteString
closedAtDateTime
commentsTaskCommentConnection
createdAtDateTime
createdByUser
customerCustomer
descriptionString
externalIdString
idID
metadataTaskMetadata
priorityTaskPriority
retainedBoolean
serviceNowCategoryString
serviceNowSubCategoryString
slugString
stateTaskState
titleString
typeTaskType
updatedAtDateTime
updatedByUser
\n

TaskActivityLogFilter

\n

Task activity log filter input type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdActivity log creation time range (Optional)TimeRange
typesActivity log type to be filtered. (Required) Will be set to default if not explicitly passed.TaskActivityLogType
\n

TaskActivityLogType

\n

Task Activity Log Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED
UPDATED
\n

TaskActivityLogOrder

\n

Task Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByListTaskActivityLogOrderBy
\n

TaskActivityLogOrderBy

\n

Order by ENUM for Task Activity Log

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
CREATED_BY
TYPE
\n

TaskActivityLogEntry

\n

Represents the Task Activity Log Entry schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByWho performed the actionUser
customerWhich customer owns the task that was created/updated/etc.Customer
idID
taskThe task this activity log refers toTask
typeThe type of action performedTaskActivityLogType
\n

TaskServiceNowCategory

\n

List of ServiceNow categories we can filter Tasks by.\n Selecting OTHER will include all categories not specified\nspecifically in the enum.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CONTENT
CUSTOMER_REQUEST
DETECTION
ENGINEERING
IMPLEMENTATION
INQUIRY_HELP
INVESTIGATION
OTHER
PLATFORM_HEALTH
PRODUCT_ADMINISTRATION
VISIBILITY
\n

CreatedTaskActivityLogEntry

\n

Activity log entry for newly created task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByWho performed the actionUser
customerWhich customer owns the task that was created/updated/etc.Customer
idID
taskThe task this activity log refers toTask
typeThe type of action performedTaskActivityLogType
\n

UpdatedTaskActivityLogEntry

\n

Activity log entry for updated task. Unchanged fields will have null for both old and new

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
assigneeUserChanged
closeNoteStringChanged
closedAtDateTimeChanged
createdAtDateTime
createdByWho performed the actionUser
customerWhich customer owns the task that was created/updated/etc.Customer
descriptionStringChanged
idID
metadataTaskMetadataChanged
priorityTaskPriorityChanged
serviceNowCategoryStringChanged
serviceNowSubCategoryStringChanged
stateTaskStateChanged
taskThe task this activity log refers toTask
taskTypeTaskTypeChanged
titleStringChanged
typeThe type of action performedTaskActivityLogType
\n

TaskMetadataChanged

\n

Represents a change in task metadata

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueTaskMetadata
oldValueTaskMetadata
\n

TaskPriorityChanged

\n

Represents a change in task priority

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueTaskPriority
oldValueTaskPriority
\n

TaskTypeChanged

\n

Represents a change in task type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueTaskType
oldValueTaskType
\n

TaskStateChanged

\n

Represents a change in task state

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueTaskState
oldValueTaskState
\n

TaskActivityLogEdge

\n

TaskActivityLog Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeTaskActivityLogEntry
\n

TaskActivityLogConnection

\n

Task Activity Log Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesTaskActivityLogEdge
pageInfoPageInfo
\n

TaskCommentFilter

\n

Task comment filter input type.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdTime range for comment creation (optional)TimeRange
typesComment type to be filtered. (Required) Will be set to default if not explicitly passed.TaskCommentType
\n

ResolveTaskInput

\n

Represents resolve task input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
closeCodeClose code to be used for resolving this task. (Required)TaskCloseCode
closeNoteReason/Notes for resolving the task. (Required)String
taskIdTask id to resolve. (Required)ID
\n

UnresolveTaskInput

\n

Represents unresolve task input

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
taskIdTask id to unresolve. (Required)ID
\n

TaskCommentType

\n

Task Comment Types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
PUBLIC
\n

TaskCommentOrder

\n

Task Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByTaskCommentOrderBy
\n

TaskCommentOrderBy

\n

Order by ENUM for task Comments

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CREATED_AT
\n

TaskCommentConnection

\n

Task Comment Connection schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesTaskCommentEdge
pageInfoPageInfo
totalCountInt
\n

TaskCommentEdge

\n

TaskComment Edge schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeTaskComment
\n

TaskComment

\n

Represents the Task Comment schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
createdAtDateTime
createdByUser
idID
textString
typeTaskCommentType
\n

EngineeringTaskMetadata

\n

Fields that are specific to tasks of type ENGINEERING

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
businessCriticalLogSourceImpactBoolean
businessCriticalLogSourceImpactReasonString
changeWindowDetailsEngineeringTaskChangeWindowDetails
changeWindowRequiredBoolean
contactDetailsEngineeringTaskContactDetails
engineeringTaskSubTypeEngineeringTaskSubType
environmentImpactEngineeringTaskEnvironmentImpact
errorMessagesObservedBoolean
issueEngineeringTaskIssueType
issueStartedAtEngineeringTaskIssueStart
logSourceIntegrationDetailsLogSourceIntegrationDetails
logSourceNotListedBoolean
logSourcesString
neededForComplianceBoolean
neededForComplianceDetailsString
recentLogSourceChangeDetailsString
recentLogSourceChangesBoolean
requiredMetadataBoolean
requiredMetadataDetailsEngineeringTaskRequiredMetadataDetails
retentionReasonString
retentionRequirementsBoolean
supportTimeFrameEngineeringTaskSupportTimeFrame
troubleShootingDetailsString
troubleShootingStartedBoolean
\n

EngineeringTaskSubType

\n

Sub type for engineering task type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
LOG_SOURCE_MODIFICATION
LOG_SOURCE_ONBOARDING_INTEGRATION
LOG_SOURCE_TROUBLESHOOTING
OTHER
PARSING_REQUEST
\n

EngineeringTaskIssueType

\n

Sub type for log_source_troubleshooting issue

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
INCORRECT_INGESTION
LOG_VOLUME_DISCREPANCY
OTHER
SILENT_LOG_SOURCE
\n

EngineeringTaskEnvironmentImpact

\n

Percentage of log type types affected by log source issues

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
BETWEEN_25_50_PCT
LESS_THAN_25_PCT
MORE_THAN_50_PCT
SINGLE_LOG_SOURCE
\n

EngineeringTaskSupportTimeFrame

\n

Tasked support timeframe on engineering task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ASAP
SEVEN_DAYS
THIRTY_DAYS
THREE_DAYS
WHENEVER
\n

EngineeringTaskIssueStart

\n

When did issue start in the case of troubleshooting

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
LAST_24_HOURS
LAST_8_HOURS
LAST_FEW_DAYS
LAST_HOUR
ONGOING
\n

TaskState

\n

Status of task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CANCELLED
CLOSED
IN_PROGRESS
NEW
ON_HOLD
PENDING_CUSTOMER
PENDING_RQ
PENDING_VENDOR
RESOLVED
\n

TaskOrderBy

\n

Order by ENUM for Task.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CLOSED_AT
CREATED_AT
PRIORITY
STATE
TASK_TYPE
TITLE
UPDATED_AT
UUID
\n

TaskActionMethod

\n

Enum for the methods used to acknowledge a task.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACTION_TOKENAcknowledged via a notification link
APIAcknowledged via the API
MOBILE_APPAcknowledged through the mobile application.
SNOWAcknowledged through the ServiceNow (SNOW) platform.
WEB_UIAcknowledged through the GreyMatter web platform.
\n

TaskCloseCode

\n

Represents task close code

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
CANCELLED
DUPLICATE
RESOLVED
\n

EngineeringTaskContactDetails

\n

Customer Contact details for engineering task

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
emailString
nameString
phoneNumberString
\n

LogSourceIntegrationDetails

\n

Details for log source integration request

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
additionalInformationString
hostnameString
ipAddressString
serviceAccountString
\n

EngineeringTaskChangeWindowDetails

\n

Change window details if change window required

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
endDateTimeDateTime
reasonString
startDateTimeDateTime
\n

EngineeringTaskRequiredMetadataDetails

\n

Metadata details if metadata rquired for log source troubleshooting

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
filenameString
hashString
logSourceNameString
sourceIpString
urlString
\n

BulkResolveTasksInput

\n

Input for bulk resolving tasks with the same close code and notes

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
closeCodeThe close code to apply to all tasks. (Required)TaskCloseCode
closeNoteThe close note to apply to all tasks. (Required)String
taskIdsIDs of the tasks to resolve. Maximum 100 IDs per request. (Required)ID
\n

BulkTaskResponse

\n

Response for bulk task mutations. Contains the updated tasks.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successWhether the operation was successful.Boolean
tasksThe updated tasks.Task
\n
","_postman_id":"3d4628ea-0a44-4f35-af06-b48cf8a857fc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"User","item":[{"name":"Mutations","item":[{"name":"createUser","id":"35b1e15e-59b4-447a-a877-4fb9a973443e","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $input: CreateUserInput!) {\n createUser (input: $input) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"input\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"hasAccessUntil\": \"2026-08-01T00:00:00.000Z\",\n \"jobTitle\": \"\",\n \"type\": \"API\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Create a new user.

\n

Inputs: \nCreateUserInput,

\n

Return: \nUserOperationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7ac7a3c7-2cb1-4429-8957-078b60564d14","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation createUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $input: CreateUserInput!) {\n createUser (input: $input) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"input\": {\n \"email\": \"\",\n \"fullName\": \"\",\n \"hasAccessUntil\": \"2026-08-01T00:00:00.000Z\",\n \"jobTitle\": \"\",\n \"type\": \"API\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Create a new user.\n\nInputs: \nCreateUserInput, \n\nReturn: \nUserOperationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"createUser\": {\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"35b1e15e-59b4-447a-a877-4fb9a973443e"},{"name":"deleteUser","id":"b2052d7f-6ef5-4f5e-9168-c2d9f671033a","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteUser ($user: ID!) {\n deleteUser (user: $user) {\n success\n }\n}","variables":"{\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Delete an existing user.

\n

Inputs: \nID,

\n

Return: \nDeleteUserResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"57aa21cb-f4ea-4108-8f47-587a4fe17386","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteUser ($user: ID!) {\n deleteUser (user: $user) {\n success\n }\n}","variables":"{\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Delete an existing user.\n\nInputs: \nID, \n\nReturn: \nDeleteUserResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"deleteUser\": {\n \"success\": true\n }\n }\n}"}],"_postman_id":"b2052d7f-6ef5-4f5e-9168-c2d9f671033a"},{"name":"disableUser","id":"4be45929-b19b-42fd-91d4-dd8070a4311b","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation disableUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n disableUser (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Disable an existing user.

\n

Inputs: \nID,

\n

Return: \nUserOperationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"c74f41b2-c111-4071-91a7-b52d1c3ea337","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation disableUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n disableUser (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Disable an existing user.\n\nInputs: \nID, \n\nReturn: \nUserOperationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"disableUser\": {\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"4be45929-b19b-42fd-91d4-dd8070a4311b"},{"name":"enableUser","id":"bcff3e98-0d01-4bf1-af72-bc819422875a","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation enableUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n enableUser (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Enable an existing user.

\n

Inputs: \nID,

\n

Return: \nUserOperationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"7729f230-3d98-41ef-b092-f11f10bdfa6c","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation enableUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n enableUser (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Enable an existing user.\n\nInputs: \nID, \n\nReturn: \nUserOperationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"enableUser\": {\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"bcff3e98-0d01-4bf1-af72-bc819422875a"},{"name":"generatePasswordLink","id":"3c8d814f-4e09-4a8b-bbbf-7995ec3669ac","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation generatePasswordLink ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n generatePasswordLink (user: $user) {\n link\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Generate a change password link for an existing user.\nThese do nothing if the customer is SSO enabled.

\n

Inputs: \nID,

\n

Return: \nGeneratePasswordLinkResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"951de605-3af9-49db-942a-884b837c3ba0","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation generatePasswordLink ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n generatePasswordLink (user: $user) {\n link\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Generate a change password link for an existing user.\nThese do nothing if the customer is SSO enabled.\n\nInputs: \nID, \n\nReturn: \nGeneratePasswordLinkResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"generatePasswordLink\": {\n \"link\": \"\",\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"3c8d814f-4e09-4a8b-bbbf-7995ec3669ac"},{"name":"resendInvite","id":"6a728fda-8fd2-46dc-a9f4-16e48eaa6869","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation resendInvite ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n resendInvite (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Resend invitation for an existing user.\nThese do nothing if the customer is SSO enabled.

\n

Inputs: \nID,

\n

Return: \nUserOperationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"eb735b67-d2d9-48ee-89d2-c036d168555e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation resendInvite ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n resendInvite (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Resend invitation for an existing user.\nThese do nothing if the customer is SSO enabled.\n\nInputs: \nID, \n\nReturn: \nUserOperationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"resendInvite\": {\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"6a728fda-8fd2-46dc-a9f4-16e48eaa6869"},{"name":"resetMfa","id":"86e252a4-c719-4e54-8534-cbbf612ec145","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation resetMfa ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n resetMfa (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Reset MFA (Multi-Factor Authentication) for an existing user.\nThese do nothing if the customer is SSO enabled.

\n

Inputs: \nID,

\n

Return: \nUserOperationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"bab35312-ef4d-49f6-98f7-703337266e93","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation resetMfa ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n resetMfa (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Reset MFA (Multi-Factor Authentication) for an existing user.\nThese do nothing if the customer is SSO enabled.\n\nInputs: \nID, \n\nReturn: \nUserOperationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"resetMfa\": {\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"86e252a4-c719-4e54-8534-cbbf612ec145"},{"name":"sendForgotPassword","id":"0f1cf9a4-b8c7-4a34-93f4-b48b41638359","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation sendForgotPassword ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n sendForgotPassword (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Send a forgot password email for an existing user.\nThese do nothing if the customer is SSO enabled.

\n

Inputs: \nID,

\n

Return: \nUserOperationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"6ea813c7-6e8f-4dbf-9c02-bfb14f6f8f7f","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation sendForgotPassword ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $user: ID!) {\n sendForgotPassword (user: $user) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"user\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Send a forgot password email for an existing user.\nThese do nothing if the customer is SSO enabled.\n\nInputs: \nID, \n\nReturn: \nUserOperationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"sendForgotPassword\": {\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"0f1cf9a4-b8c7-4a34-93f4-b48b41638359"},{"name":"updateUser","id":"04b15682-b031-43e3-891d-ecc72d4750c8","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $input: UpdateUserInput!) {\n updateUser (input: $input) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"hasAccessUntil\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"jobTitle\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Update an existing user.

\n

Inputs: \nUpdateUserInput,

\n

Return: \nUserOperationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"e7f154e1-4f9f-4b2e-afb8-f3b244232c05","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateUser ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $input: UpdateUserInput!) {\n updateUser (input: $input) {\n success\n user {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n totalCount\n }\n serviceNowId\n }\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"input\": {\n \"accessGroups\": {\n \"add\": [\n \"\"\n ],\n \"addAll\": true,\n \"remove\": [\n \"\"\n ],\n \"removeAll\": true,\n \"replace\": [\n \"\"\n ]\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"hasAccessUntil\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"jobTitle\": \"\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Update an existing user.\n\nInputs: \nUpdateUserInput, \n\nReturn: \nUserOperationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"updateUser\": {\n \"success\": true,\n \"user\": {\n \"accessGroups\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"totalCount\": 0\n },\n \"roles\": {\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n }\n}"}],"_postman_id":"04b15682-b031-43e3-891d-ecc72d4750c8"}],"id":"8c347014-f78f-4b17-b278-a10d11a5f07e","_postman_id":"8c347014-f78f-4b17-b278-a10d11a5f07e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Queries","item":[{"name":"me","id":"aa9f458a-520e-4e65-bb3c-d320ba897516","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query me ($after: String, $filter: CustomerFilter, $first: Int, $order: CustomerOrder) {\n me {\n customers (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n serviceNowId\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Query to fetch the authenticated user's information

\n

Return: \nCurrentUser

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"d95612e0-6060-4865-9d61-0126a03c8026","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query me ($after: String, $filter: CustomerFilter, $first: Int, $order: CustomerOrder) {\n me {\n customers (after: $after, filter: $filter, first: $first, order: $order) {\n totalCount\n }\n email\n fullName\n id\n serviceNowId\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"accessGroups\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Query to fetch the authenticated user's information\n\nReturn: \nCurrentUser\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"me\": {\n \"customers\": {\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"serviceNowId\": \"\"\n }\n }\n}"}],"_postman_id":"aa9f458a-520e-4e65-bb3c-d320ba897516"},{"name":"user","id":"b0f0c193-38ba-4ccb-b47b-d1b33c114c6c","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query user ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $id: ID!) {\n user (id: $id) {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nID,

\n

Return: \nUser

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"b4d0ad08-2f46-4fea-afb2-07c9829fc710","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query user ($after: String, $filter: AccessGroupFilter, $first: Int, $order: AccessGroupOrder, $after1: String, $filter1: PodFilter, $first1: Int, $order1: PodOrder, $after2: String, $filter2: RoleFilter, $first2: Int, $order2: RoleFilter, $id: ID!) {\n user (id: $id) {\n accessGroups (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n email\n fullName\n id\n pods (after: $after1, filter: $filter1, first: $first1, order: $order1) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n roles (after: $after2, filter: $filter2, first: $first2, order: $order2) {\n edges {\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n serviceNowId\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after1\": \"T18w\",\n \"filter1\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"roles\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first1\": 10,\n \"order1\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"NAME\"\n },\n \"after2\": \"T18w\",\n \"filter2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"first2\": 10,\n \"order2\": {\n \"accessGroups\": [\n \"\"\n ],\n \"customers\": [\n \"\"\n ],\n \"ids\": [\n \"\"\n ],\n \"name\": \"\",\n \"pods\": [\n \"\"\n ],\n \"users\": [\n \"\"\n ]\n },\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nID, \n\nReturn: \nUser\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"user\": {\n \"accessGroups\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"email\": \"\",\n \"fullName\": \"\",\n \"id\": \"\",\n \"pods\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"roles\": {\n \"edges\": [\n {\n \"cursor\": \"\"\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n },\n \"serviceNowId\": \"\"\n }\n }\n}"}],"_postman_id":"b0f0c193-38ba-4ccb-b47b-d1b33c114c6c"}],"id":"12c64c09-3e26-47f3-a645-ff854b596580","_postman_id":"12c64c09-3e26-47f3-a645-ff854b596580","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"821e5782-7a1b-4ae8-9397-516c3abdf63f","description":"

BaseUser

\n

BaseUser defines the common fields shared across all user-related types.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsQuery the access groups associated with this userAccessGroupConnection
emailThe email address for this user, if there is oneString
fullNameThe full name for this userString
idThe ID for this userID
podsQuery the pods which are indirectly associated with this user via an access groupPodConnection
rolesFind the pods associated with access groups associated with the userRoleConnection
serviceNowIdThe ServiceNow ID for this userString
\n

UserConnection

\n

Represents Pageable User Connection type

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesUserEdge
pageInfoPageInfo
totalCountInt
\n

UserEdge

\n

Represents User edge to be used in Connection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeUser
\n

User

\n

Representation of a GreyMatter user account.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsQuery the access groups associated with this userAccessGroupConnection
emailUser's email address.String
fullNameUser's full name.String
idUnique identifier for the user.ID
podsQuery the pods which are indirectly associated with this user via an access groupPodConnection
rolesFind the pods associated with access groups associated with the userRoleConnection
serviceNowIdUser's ServiceNow system identifier.String
\n

CurrentUser

\n

Representation of a current authenticated greyMatter user.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsQuery the access groups associated with this userAccessGroupConnection
customersAll customers associated with the user.CustomerConnection
emailUser's email address.String
fullNameUser's full name.String
idUnique identifier for the user.ID
jobTitleUser's job title.String
podsQuery the pods which are indirectly associated with this user via an access groupPodConnection
rolesFind the pods associated with access groups associated with the userRoleConnection
serviceNowIdUser's ServiceNow system identifier.String
\n

UserOrderBy

\n

OrderBy ENUM for Users

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
NAME
\n

UserOrder

\n

Orders Users

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByUserOrderBy
\n

UserStatus

\n

Status ENUM for Users

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACTIVE
DISABLED
EXPIRED
INVITED
LOCKED
\n

UserFilter

\n

Filters Users

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsFilter by the access groups associated with the usersID
customersFilter by the customers associated with pods that are associated with access groups that are associated with the usersID
idsFilter by the ids of the usersID
nameFilter by the name of the userString
podsFilter by the pods associated with access groups associated with the usersID
rolesFilter by the roles associated with access groups associated with the usersID
statusFilter by the user active statusUserStatus
\n

UserType

\n

User type ENUM for Users

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
API
STANDARD
\n

CreateUserInput

\n

Input type for creating a new User.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
emailEmail address of the user. Ignored when User type is API.String
fullNameFull name of the user.String
hasAccessUntilWhen present, user is deleted after this datetime.DateTime
jobTitleJob title of the user. Ignored when User type is API.String
typeUser type, standard or apiUserType
\n

UpdateUserInput

\n

Input type for updating an existing User.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
accessGroupsUpdates to the access groups of the userUpdateAssociationInput
emailEmail address of the user. Ignored when User type is API.String
fullNameFull name of the user.String
hasAccessUntilWhen present, user is deleted after this datetime.DateTime
idID of the userID
jobTitleJob title of the user. Ignored when User type is API.String
\n

DeleteUserResponse

\n

Response type for deleting a User

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successIndicates if the operation was successful.Boolean
\n

UserOperationResponse

\n

Response type for operations related to a User.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successIndicates if the operation was successful.Boolean
userThe user on which the operation was performed on.User
\n

GeneratePasswordLinkResponse

\n

Response type for generating a password link for a User

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
linkThe generated password link for a user.String
successIndicates if the operation was successful.Boolean
userThe user for whom the password link was generated.User
\n
","_postman_id":"821e5782-7a1b-4ae8-9397-516c3abdf63f","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"User Activity","item":[{"name":"Queries","item":[{"name":"audits","id":"0faf2af9-cc11-4816-8b4e-5018396ff9f5","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query audits ($after: String, $filter: AuditActionFilter, $first: Int, $order: AuditActionOrder) {\n audits (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n actionType\n createdAt\n id\n objectId\n objectName\n objectType\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"objectId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"ACTION_TYPE\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Retrieves user action audits

\n

Inputs: \nString, AuditActionFilter, Int, AuditActionOrder,

\n

Return: \nAuditActionDetailsConnection

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"1e276f04-f833-49b1-adce-0f884d346f4d","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query audits ($after: String, $filter: AuditActionFilter, $first: Int, $order: AuditActionOrder) {\n audits (after: $after, filter: $filter, first: $first, order: $order) {\n edges {\n cursor\n node {\n actionType\n createdAt\n id\n objectId\n objectName\n objectType\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}","variables":"{\n \"after\": \"T18w\",\n \"filter\": {\n \"objectId\": \"\"\n },\n \"first\": 10,\n \"order\": {\n \"direction\": \"ASC\",\n \"orderBy\": \"ACTION_TYPE\"\n }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Retrieves user action audits\n\nInputs: \nString, AuditActionFilter, Int, AuditActionOrder, \n\nReturn: \nAuditActionDetailsConnection\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"audits\": {\n \"edges\": [\n {\n \"cursor\": \"\",\n \"node\": {\n \"actionType\": \"\",\n \"createdAt\": \"2026-08-01T00:00:00.000Z\",\n \"id\": \"\",\n \"objectId\": \"\",\n \"objectName\": \"\",\n \"objectType\": \"\"\n }\n }\n ],\n \"pageInfo\": {\n \"endCursor\": \"\",\n \"hasNextPage\": true,\n \"hasPreviousPage\": true,\n \"startCursor\": \"\"\n },\n \"totalCount\": 0\n }\n }\n}"}],"_postman_id":"0faf2af9-cc11-4816-8b4e-5018396ff9f5"}],"id":"a4b82ac3-75f8-4bf5-919e-b520951721c8","_postman_id":"a4b82ac3-75f8-4bf5-919e-b520951721c8","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"71df81ca-85ba-43b3-807a-bd2160d0b032","description":"

AuditActionDetails

\n

Represents Audit action details schema

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
actionTypeAction type of audit (CREATE, UPDATE, DELETE, ADD_ROLE, REMOVE_ROLE)String
assetAsset detailsAuditAsset
createdAtAudit event creation timestampDateTime
customerCustomer details for which this action is performedCustomer
idAudit action identifier.ID
objectIdAudit object identifierString
objectNameEntity nameString
objectTypeAudit object typeString
userAction performing user detailsUser
\n

AuditAsset

\n

Audit asset details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
nameAsset NameString
newValueNew asset valueString
oldValueOld asset valueString
\n

AuditActionDetailsEdge

\n

Represents Edge schema for Audit Details connection

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeAuditActionDetails
\n

AuditActionDetailsConnection

\n

Represents connection schema for Audit Details

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesAuditActionDetailsEdge
pageInfoPageInfo
totalCountInt
\n

AuditActionFilter

\n

Input for filtering audit actions

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
objectIdEntity Id for which audits needs to be filteredString
\n

AuditActionOrderBy

\n

Order by ENUM for Audit Actions.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ACTION_TYPE
ASSET
CREATED_AT
ENTITY_TYPE
\n

AuditActionOrder

\n

Audit Actions OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
directionSort
orderByAuditActionOrderBy
\n
","_postman_id":"71df81ca-85ba-43b3-807a-bd2160d0b032","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}},{"name":"Utilities","item":[{"name":"Queries","item":[{"name":"node","id":"75b4f57f-808c-4c20-aadf-79099392d391","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query node ($id: ID!) {\n node (id: $id) {\n id\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Inputs: \nID,

\n

Return: \nNode

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"6c09ce9b-6519-438e-8fbf-8021aeefd51b","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query node ($id: ID!) {\n node (id: $id) {\n id\n }\n}","variables":"{\n \"id\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Inputs: \nID, \n\nReturn: \nNode\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"node\": {\n \"__typename\": \"AccessControlPolicy\",\n \"id\": \"\"\n }\n }\n}"}],"_postman_id":"75b4f57f-808c-4c20-aadf-79099392d391"},{"name":"rateLimit","id":"c90b6d2c-21ac-4260-88e2-e830e2d7bd81","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query rateLimit {\n rateLimit {\n cost\n }\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"

Return: \nCostEstimationResponse

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}},"urlObject":{"host":["https://greymatter.myreliaquest.com/graphql"],"query":[],"variable":[]}},"response":[{"id":"b00fb129-5739-47a7-aa32-a2d8c19dc660","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query rateLimit {\n rateLimit {\n cost\n }\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Return: \nCostEstimationResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"rateLimit\": {\n \"cost\": 0\n }\n }\n}"}],"_postman_id":"c90b6d2c-21ac-4260-88e2-e830e2d7bd81"}],"id":"87c677c9-e07e-4335-9ca1-4c9208949786","_postman_id":"87c677c9-e07e-4335-9ca1-4c9208949786","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"id":"60243da4-d9f9-4b62-8f10-22b9d509443c","description":"

Sort

\n

Sort direction.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ASC
DESC
\n

Edge

\n

Represents structure of an Edge type in Connection.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
cursorString
nodeNode
\n

PageInfo

\n

PageInfo type which should be included in Connections.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
endCursorString
hasNextPageBoolean
hasPreviousPageBoolean
startCursorString
\n

Connection

\n

Represents Connection type structure.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
edgesEdge
pageInfoPageInfo
totalCountInt
\n

Response

\n

Represents a response to an operation that needs to know if it was successful or not.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
successBoolean
\n

TimeRange

\n

Input type to specify time range of earliest and latest timestamp

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
earliestDateTime
latestDateTime
\n

TemporalUnit

\n

Schema representing time temporal units

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
DAYS
HOURS
MINUTES
MONTHS
SECONDS
\n

FieldType

\n

Represents different types of fields

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
BOOLEAN
DATE
DATETIME
DOUBLE
INTEGER
IP_ADDRESS
STRING
\n

UpdateStringAssociationInput

\n

Updates associations between a type and string values

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
addOnly adds the specified associations.String
addAllAdds all available associations.Boolean
removeOnly removes the specified associations.String
removeAllRemoves all existing associations.Boolean
replaceReplaces all the associations with this setString
\n

UpdateAssociationInput

\n

Updates associations between types

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
addOnly adds the specified associations.ID
addAllAdds all available associations.Boolean
removeOnly removes the specified associations.ID
removeAllRemoves all existing associations.Boolean
replaceReplaces all the associations with this set.ID
\n

CostEstimationResponse

\n

Response type for query cost estimation.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
costEstimated cost for the query.Int
\n

AggregationType

\n

Allowed Aggregation operations for UQLI

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
ARRAY_AGG
AVERAGE
BUCKET
COUNT
DISTINCT_COUNT
HISTOGRAM
MAX
MIN
NONE
PERCENTILE
STDDEV
SUM
VARIANCE
\n

UqliField

\n

Field specification with optional aggregation

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aggregationOptional aggregation to apply to this fieldUqliFieldAggregation
fieldThe source field nameString
\n

UqliFieldAggregation

\n

Aggregation configuration for a field

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
aliasAlias for the aggregated field in the responseString
argumentsAdditional arguments for the aggregation functionString
distinctWhether to apply distinct to the aggregationBoolean
typeType of aggregation to applyAggregationType
\n

UserChanged

\n

Represents a change in value of a User field

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueUser
oldValueUser
\n

StringChanged

\n

Represents a change in value of a string field

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueString
oldValueString
\n

StringListChanged

\n

Represents a change in value of a string list field

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueString
oldValueString
\n

DateTimeChanged

\n

Represents a change in value of a DateTime field

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescriptionType
newValueDateTime
oldValueDateTime
\n
","_postman_id":"60243da4-d9f9-4b62-8f10-22b9d509443c","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]},"isInherited":true,"source":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"see GreyMatter - Global Settings - API to create a valid API Key"}]}},"variable":[{"key":"url","value":"https://greymatter.myreliaquest.com/graphql","type":"string"},{"key":"key","value":"see GreyMatter - Global Settings - API to create a valid API Key","type":"string"}]}