{"info":{"_postman_id":"25ab67c1-bb92-4953-90b0-d0ef02c682b1","name":"GreyMatter API","description":"<html><head></head><body><h2 id=\"introduction\">Introduction</h2>\n<p>The GreyMatter API provides access to select GreyMatter capabilities through a <a href=\"https://graphql.org/\">GraphQL interface</a>. All API interactions occur over a secure HTTPS connection to a single endpoint. Requests are made using the <code>POST</code> HTTPS method with <a href=\"https://www.json.org/json-en.html\">JSON-encoded bodies</a>, and the API returns <strong>JSON-encoded responses</strong>. We use standard <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status\">HTTP response codes</a> for indicating the status of requests, and authentication is managed via <strong>API keys</strong>.</p>\n<p>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 <a href=\"https://graphql.org/learn/introspection/\">GraphQL introspection</a>. As we iteratively enhance the API, introspection is the best way to stay updated on the latest features.</p>\n<h2 id=\"base-url\"><strong>Base URL</strong></h2>\n<p>Production Environment - <code>https://greymatter.myreliaquest.com/graphql</code></p>\n<h2 id=\"quickstart-guides\">QuickStart Guides</h2>\n<ul>\n<li><p><a href=\"https://greymatter.myreliaquest.com/resources/articles/greymatter-api-quick-start-example-with-servicenow\">ServiceNow Example</a></p>\n</li>\n<li><p><a href=\"https://greymatter.myreliaquest.com/resources/articles/greymatter-api-quick-start-example-with-jira\">Jira Example</a></p>\n</li>\n</ul>\n<h1 id=\"authentication\">Authentication</h1>\n<p>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 <code>X-API-KEY</code> with the value of your API key.</p>\n<p>All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.</p>\n<p><strong>Note:</strong> You cannot use your normal email/password login details.</p>\n<h2 id=\"managing-api-keys\">Managing API Keys</h2>\n<ul>\n<li><p><strong>Generating an API Key:</strong></p>\n<ol>\n<li><p>Navigate to GreyMatter &gt; Settings &gt; API Key Management.</p>\n</li>\n<li><p>Click the “New API Key” button in the top right corner.</p>\n</li>\n<li><p>Select an Expiration Date (default is 1 year) and then click the “Create Key” button.</p>\n</li>\n<li><p>The generated Key will be displayed. <strong>This is the only time the key will be visible.</strong></p>\n</li>\n<li><p>After closing the prompt, you will be redirected to the API Key Management screen, which shows the key's expiration date, creation date, last query, and last usage time.</p>\n</li>\n</ol>\n</li>\n<li><p><strong>Removing an API Key:</strong></p>\n<ol>\n<li><p>Navigate to GreyMatter &gt; Settings &gt; API Key Management.</p>\n</li>\n<li><p>Click the “Remove” button next to the API key you wish to remove.</p>\n</li>\n<li><p>Select “Confirm”.</p>\n</li>\n</ol>\n</li>\n</ul>\n<h1 id=\"requests-and-responses\"><strong>Requests and Responses</strong></h1>\n<p>The GreyMatter API uses GraphQL. All requests must use the <code>POST</code> HTTPS method.</p>\n<ul>\n<li><p><strong>Learning GraphQL:</strong> A good resource for learning how to query a GraphQL API is <a href=\"https://graphql.org/learn/queries/\">https://graphql.org/learn/queries/</a>.</p>\n</li>\n<li><p><strong>GraphQL Introspection:</strong> Introspection is available, allowing you to query the API to discover available queries, mutations, types, enums, etc.</p>\n</li>\n</ul>\n<h2 id=\"responses\"><strong>Responses</strong></h2>\n<p>All operations will respond with standard HTTPS status codes:</p>\n<ul>\n<li><p><code>2xx</code> codes indicate successful operations.</p>\n</li>\n<li><p><code>4xx</code> codes indicate a problem with the request (e.g., a required parameter was omitted).</p>\n</li>\n<li><p><code>5xx</code> codes indicate a problem on the server side.</p>\n</li>\n</ul>\n<h1 id=\"rate-limiting\"><strong>Rate Limiting</strong></h1>\n<p>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.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>For queries that return paginated results, the API follows the GraphQL Connections standard (<a href=\"https://relay.dev/graphql/connections.htm\">https://relay.dev/graphql/connections.htm</a>).</p>\n<p>Paginated queries accept two inputs:</p>\n<ul>\n<li><p><code>first</code>: (Integer) Determines the number of results to return.</p>\n</li>\n<li><p><code>after</code>: (String) A cursor value that determines where to start returning results. This is optional if you want to retrieve results from the beginning.</p>\n</li>\n</ul>\n<p>The response for a paginated query will be a <code>Connection</code> type, which includes:</p>\n<ul>\n<li><p><code>pageInfo</code>: Contains details on whether there is a previous or next page of data.</p>\n</li>\n<li><p><code>edges</code>: An array containing the actual data. Each entry in <code>edges</code> includes a <code>cursor</code> property that can be used as the <code>after</code> input to retrieve the next page of data.</p>\n</li>\n<li><p><code>totalCount</code>: The total number of items that matched the query.</p>\n</li>\n</ul>\n<h1 id=\"global-ids\">Global IDs</h1>\n<p>The GreyMatter API uses Global IDs to identify entities.</p>\n<p>Global IDs are a base64-encoded string that includes the type of entity and its unique identifier.</p>\n<p>For example, <code>Incident:ffb4f0e4-b48d-4cb6-bf85-b9e5f27d2b27 | base64</code> = <code>SW5jaWRlbnQ6ZmZiNGYwZTQtYjQ4ZC00Y2I2LWJmODUtYjllNWYyN2QyYjI3</code></p>\n<p>In general, a query that returns an entity will include an <code>id</code> field that contains the Global ID of the entity.</p>\n<p><strong>Note:</strong> If a cursor is passed in that would fit inside of a page (based on the <code>after</code> input), the results will start at the beginning of that page, not specifically where the cursor points within the page.</p>\n<h1 id=\"support\"><strong>Support</strong></h1>\n<p>If you require support for using the API, troubleshooting, or setup, please contact <code>greymattersupport@reliaquest.com</code>.</p>\n<h2 id=\"frequently-asked-questions-faq\"><strong>Frequently Asked Questions (FAQ)</strong></h2>\n<ul>\n<li><p><strong>Q: Who Can Utilize the GM API?</strong></p>\n<ul>\n<li>A: All active customers with a GreyMatter account are eligible to use the GM API.</li>\n</ul>\n</li>\n<li><p><strong>Q: How Do I Get an API Key?</strong></p>\n<ul>\n<li>A: Navigate to your GreyMatter instance &gt; Settings &gt; API Key Management &gt; New API Key.</li>\n</ul>\n</li>\n<li><p><strong>Q: How Many API Keys Can I Generate?</strong></p>\n<ul>\n<li>A: Each user can create one API key. The API key will only be visible when the key is created. If you create a new one, the old one becomes invalid.</li>\n</ul>\n</li>\n<li><p><strong>Q: Do API Keys Expire?</strong></p>\n<ul>\n<li>A: Yes, API keys do expire. You can set the expiry date when you create the key or edit it later if needed.</li>\n</ul>\n</li>\n<li><p><strong>Q: How do I renew an API key?</strong></p>\n<ul>\n<li>A: Key renewal is not supported. You must create a new key by navigating to your GreyMatter instance &gt; Settings &gt; API Key Management &gt; New API Key.</li>\n</ul>\n</li>\n<li><p><strong>Q: Will I be notified before my API key expires?</strong></p>\n<ul>\n<li>A: No, not at this time.</li>\n</ul>\n</li>\n<li><p><strong>Q: Will I be notified if someone from my organization creates/renews an API?</strong></p>\n<ul>\n<li>A: Not at this time. API keys are handled at an account level, so you will only be able to see/access the API key that you created.</li>\n</ul>\n</li>\n<li><p><strong>Q: How does ReliaQuest store API keys?</strong></p>\n<ul>\n<li>A: We store a one-way-hash of the API key.</li>\n</ul>\n</li>\n<li><p><strong>Q: What is the Base URL for the API?</strong></p>\n<ul>\n<li>A: <code>https://greymatter.myreliaquest.com/graphql</code></li>\n</ul>\n</li>\n<li><p><strong>Q: Which Queries/Mutations will be available?</strong></p>\n<ul>\n<li>A: See the attached text file (GraphQL Schema) in the knowledge base article.</li>\n</ul>\n</li>\n<li><p><strong>Q: Who can I contact if I have a support question for the GreyMatter API?</strong></p>\n<ul>\n<li>A: Please reach out to <code>greymattersupport@reliaquest.com</code>.</li>\n</ul>\n</li>\n<li><p><strong>Q: How can I aggregrate data across multiple company entities?</strong></p>\n<ul>\n<li>A: Your account is tied to a default entity. You will need to override this value with the header key <code>x-reliaquest-customer</code> and the value from customer <code>headerSlug</code> to pull data across entities.</li>\n</ul>\n</li>\n</ul>\n</body></html>","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":"004e5a","highlight":"00afab"},"publishDate":"2025-02-03T23:03:18.000Z"},"item":[{"name":"Access Groups","item":[{"name":"Mutations","item":[{"name":"createAccessGroup","id":"c125848d-9e4d-4647-9e4e-f2d2386f1baf","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"ssoGroups\": [\n      \"\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Create an access group</p>\n<p>Inputs: \nCreateAccessGroupInput, </p>\n<p>Return: \nCreateAccessGroupResponse</p>\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":"d9075395-3175-4962-acdd-6297c0dac7f0","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"ssoGroups\": [\n      \"\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"isDefault\": true,\n        \"name\": \"\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"ssoGroups\": [\n          \"\"\n        ],\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"c125848d-9e4d-4647-9e4e-f2d2386f1baf"},{"name":"createPod","id":"c5796cc1-7cc8-44bc-83f3-b08e8fc8863b","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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":"<p>Create a pod</p>\n<p>Inputs: \nCreatePodInput, </p>\n<p>Return: \nCreatePodResponse</p>\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":"e941d90f-5f5d-404b-89c8-f0decd3aa365","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"customers\": {\n          \"totalCount\": 0\n        },\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"c5796cc1-7cc8-44bc-83f3-b08e8fc8863b"},{"name":"createRole","id":"514ee469-1a6d-4620-8728-363ef3e1d76c","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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":"<p>Create a role</p>\n<p>Inputs: \nCreateRoleInput, </p>\n<p>Return: \nCreateRoleResponse</p>\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":"023f3032-648f-413d-a379-ac8d6f7d4bc4","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"permissions\": [\n          \"\"\n        ],\n        \"type\": \"\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"514ee469-1a6d-4620-8728-363ef3e1d76c"},{"name":"deleteAccessGroup","id":"64fa7ecc-19db-4974-bc9e-996e25c53e4f","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteAccessGroup ($id: ID!) {\n    deleteAccessGroup (id: $id) {\n        success\n    }\n}","variables":"{\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete an access group</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nDeleteAccessGroupResponse</p>\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":"bf94c80b-c981-4280-8a59-edf2a97775e0","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\": \"<ID HERE>\"\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":"64fa7ecc-19db-4974-bc9e-996e25c53e4f"},{"name":"deletePod","id":"8137640c-4ad9-463e-bc7a-012286756891","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deletePod ($id: ID!) {\n    deletePod (id: $id) {\n        success\n    }\n}","variables":"{\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete a pod</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nDeletePodResponse</p>\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":"81abf65a-db9e-4e32-b489-364ec33ee5ae","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\": \"<ID HERE>\"\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":"8137640c-4ad9-463e-bc7a-012286756891"},{"name":"deleteRole","id":"980bb993-08c2-4235-8183-01a79cb81b8a","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteRole ($id: ID!) {\n    deleteRole (id: $id) {\n        success\n    }\n}","variables":"{\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete a pod</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nDeleteRoleResponse</p>\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":"ca62df82-09b3-4023-8012-1406c40e0e55","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\": \"<ID HERE>\"\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":"980bb993-08c2-4235-8183-01a79cb81b8a"},{"name":"updateAccessGroup","id":"eebe8db0-f534-4ae8-89b0-7f751762620e","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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\": \"<ID HERE>\",\n    \"isDefault\": true,\n    \"name\": \"\",\n    \"pods\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"roles\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"ssoGroups\": \"\",\n    \"users\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update an access group</p>\n<p>Inputs: \nUpdateAccessGroupInput, </p>\n<p>Return: \nUpdateAccessGroupResponse</p>\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":"9e41ae59-f066-4324-aa99-ee80a65cf3f1","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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\": \"<ID HERE>\",\n    \"isDefault\": true,\n    \"name\": \"\",\n    \"pods\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"roles\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"ssoGroups\": \"\",\n    \"users\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"isDefault\": true,\n        \"name\": \"\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"ssoGroups\": [\n          \"\"\n        ],\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"eebe8db0-f534-4ae8-89b0-7f751762620e"},{"name":"updatePod","id":"e37b286c-8615-492e-8fa3-e23ccdfd5576","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"customers\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"description\": \"\",\n    \"id\": \"<ID HERE>\",\n    \"name\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update a pod</p>\n<p>Inputs: \nUpdatePodInput, </p>\n<p>Return: \nUpdatePodResponse</p>\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":"4e21701d-4bd4-472e-a344-be8523923a22","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"customers\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"description\": \"\",\n    \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"customers\": {\n          \"totalCount\": 0\n        },\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"e37b286c-8615-492e-8fa3-e23ccdfd5576"},{"name":"updateRole","id":"0c89f05e-fef2-4f6f-8978-ce5491183c2d","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"description\": \"\",\n    \"id\": \"<ID HERE>\",\n    \"name\": \"\",\n    \"permissions\": [\n      \"\"\n    ]\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update a pod</p>\n<p>Inputs: \nUpdateRoleInput, </p>\n<p>Return: \nUpdateRoleResponse</p>\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":"999039d1-8033-463f-8405-085943416f59","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\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        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"description\": \"\",\n    \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"permissions\": [\n          \"\"\n        ],\n        \"type\": \"\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"0c89f05e-fef2-4f6f-8978-ce5491183c2d"}],"id":"cca93773-c782-4a00-a7ff-b608eb98e157","_postman_id":"cca93773-c782-4a00-a7ff-b608eb98e157","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":"5c4b56a2-8d96-4e4d-9ae9-0d205a1d36d6","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"status\": [\n      \"ACTIVE\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nID, </p>\n<p>Return: \nAccessGroup</p>\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":"16248bc1-f7c2-4468-9ac9-36a52d82525a","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"status\": [\n      \"ACTIVE\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"description\": \"\",\n      \"id\": \"<ID HERE>\",\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-07-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":"5c4b56a2-8d96-4e4d-9ae9-0d205a1d36d6"},{"name":"accessGroups","id":"1c39dec6-4023-4814-8a0b-02b94fc759db","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Query the access groups</p>\n<p>Inputs: \nString, AccessGroupFilter, Int, AccessGroupFilter, AccessGroupOrder, </p>\n<p>Return: \nAccessGroupConnection</p>\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":"da48182f-e898-4890-8fe3-82fc634a53ac","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"isDefault\": true,\n            \"name\": \"\",\n            \"ssoGroups\": [\n              \"\"\n            ],\n            \"updatedAt\": \"2026-07-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":"1c39dec6-4023-4814-8a0b-02b94fc759db"},{"name":"permissions","id":"eb286df1-94f0-4424-a092-729075cb8a81","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":"<p>Query the available permissions</p>\n<p>Return: \nPermission</p>\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":"6e3c7145-a4f3-4ed2-99a9-30d757ded163","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":"eb286df1-94f0-4424-a092-729075cb8a81"},{"name":"pod","id":"8320919f-58eb-49d3-a687-0c3e1d88c2d9","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"status\": [\n      \"ACTIVE\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nID, </p>\n<p>Return: \nPod</p>\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":"f0cb18bf-dd05-4ded-9eae-956c27806e3a","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"status\": [\n      \"ACTIVE\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"id\": \"<ID HERE>\"\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-07-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\": \"<ID HERE>\",\n      \"name\": \"\",\n      \"updatedAt\": \"2026-07-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":"8320919f-58eb-49d3-a687-0c3e1d88c2d9"},{"name":"pods","id":"8ad48133-cb22-4495-94a6-bd750e872a6c","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Query the pods</p>\n<p>Inputs: \nString, PodFilter, Int, PodFilter, PodOrder, </p>\n<p>Return: \nPodConnection</p>\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":"eda848fe-b326-463c-ba16-0ed486e3adbf","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"updatedAt\": \"2026-07-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":"8ad48133-cb22-4495-94a6-bd750e872a6c"},{"name":"role","id":"42f1659f-ce80-4edf-b0bb-03c136425049","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"status\": [\n      \"ACTIVE\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nID, </p>\n<p>Return: \nRole</p>\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":"03bdddc8-3db0-4334-8ef7-f97cdf0f7a27","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"status\": [\n      \"ACTIVE\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"description\": \"\",\n      \"id\": \"<ID HERE>\",\n      \"name\": \"\",\n      \"permissions\": [\n        \"\"\n      ],\n      \"type\": \"\",\n      \"updatedAt\": \"2026-07-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":"42f1659f-ce80-4edf-b0bb-03c136425049"},{"name":"roles","id":"cd23845e-32b3-402d-809e-8e813c4863be","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Query the roles</p>\n<p>Inputs: \nString, RoleFilter, Int, RoleFilter, RoleOrder, </p>\n<p>Return: \nRoleConnection</p>\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":"6be00ee2-ce8a-45a4-88b0-41898a5ff843","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      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"permissions\": [\n              \"\"\n            ],\n            \"type\": \"\",\n            \"updatedAt\": \"2026-07-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":"cd23845e-32b3-402d-809e-8e813c4863be"}],"id":"8a1bb896-ed91-489b-9081-c67ee1c1c8c7","_postman_id":"8a1bb896-ed91-489b-9081-c67ee1c1c8c7","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":"c880319d-83c9-4b6e-970c-5ed822c222f6","description":"<h2 id=\"permission\">Permission</h2>\n<p> Represents a permission</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td>Description of the permission</td>\n<td>String</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>Display Name of the permission</td>\n<td>String</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Groups of the permission</td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the permission</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accessgrouporderby\">AccessGroupOrderBy</h2>\n<p> OrderBy ENUM for Access Groups</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accessgrouporder\">AccessGroupOrder</h2>\n<p> Orders Access Groups</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>AccessGroupOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accessgroupfilter\">AccessGroupFilter</h2>\n<p> Filters access groups</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customers</td>\n<td>Filter by the customers associated with pods that are associated with the access groups</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>Filter by the ids of the access groups</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Filter by the name of the access group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Filter by the pods associated with the access groups</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Filter by the roles associated with the access groups</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Filter by the users associated with the access groups</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"podorderby\">PodOrderBy</h2>\n<p> OrderBy ENUM for Pods</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"podorder\">PodOrder</h2>\n<p> Orders Pods</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>PodOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"podfilter\">PodFilter</h2>\n<p> Filters pods</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Filter by the access groups associated with the pods</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>customers</td>\n<td>Filter by the customers associated with pods</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>Filter by the ids of the pods</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Filter by the name of the pod</td>\n<td>String</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Filter by the roles associated with access groups that are associated with the pods</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Filter by the users associated with access groups that are associated with the pods</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"roleorderby\">RoleOrderBy</h2>\n<p> OrderBy ENUM for Roles</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"roleorder\">RoleOrder</h2>\n<p> Orders Roles</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>RoleOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"rolefilter\">RoleFilter</h2>\n<p> Filters Roles</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Filter by the access groups associated with the roles</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>customers</td>\n<td>Filter by the customers associated with pods that are associated with access groups that are associated with the roles</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>Filter by the ids of the roles</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Filter by the name of the role</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Filter by the pods associated with access groups associated with the roles</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Filter by the users associated with access groups associated with the roles</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accessgroupconnection\">AccessGroupConnection</h2>\n<p> The connection type for Access Groups</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>AccessGroupEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accessgroupedge\">AccessGroupEdge</h2>\n<p> The edge type for Access Groups</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>AccessGroup</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accessgroup\">AccessGroup</h2>\n<p> Represents access groups</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>Audit event creation timestamp</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Description of the Access Group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Id of the Access Group</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>Whether or not this is the default Access Group for new Users</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the Access Group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Query the pods associated with this access group</td>\n<td>PodConnection</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Query the roles associated with this access group</td>\n<td>RoleConnection</td>\n</tr>\n<tr>\n<td>ssoGroups</td>\n<td>Values 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 links</td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>Audit event update timestamp</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Query the users associated with this access group</td>\n<td>UserConnection</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"podconnection\">PodConnection</h2>\n<p> The connection type for Pods</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>PodEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"podedge\">PodEdge</h2>\n<p> The edge type for Pods</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Pod</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"pod\">Pod</h2>\n<p> Represents Pods</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Query the access groups associated with this pod</td>\n<td>AccessGroupConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>Audit event creation timestamp</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>customers</td>\n<td>Query the customers associated with this pod</td>\n<td>CustomerConnection</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Description of the Pod</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Id of the Pod</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the Pod</td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>Audit event update timestamp</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Query the users which are indirectly associated with this pod via access group</td>\n<td>UserConnection</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"roleconnection\">RoleConnection</h2>\n<p> The connection type for Roles</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>RoleEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"roleedge\">RoleEdge</h2>\n<p> The edge type for Roles</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Role</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"role\">Role</h2>\n<p> Represents a Role</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Access groups associated with this role</td>\n<td>AccessGroupConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>Audit event creation timestamp</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Description of the role</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID of the role</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the role</td>\n<td>String</td>\n</tr>\n<tr>\n<td>permissions</td>\n<td>Permissions associated with this role</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Type of the role, either CUSTOM or SYSTEM</td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>Audit event update timestamp</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Query the users which are indirectly associated with this role via access group</td>\n<td>UserConnection</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createaccessgroupinput\">CreateAccessGroupInput</h2>\n<p> Input for creating an access group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td>Description of the access group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>Whether or not this is the default Access Group for new Users</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the access group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Pods to be associated with this access group</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Roles to be associated with this access group</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ssoGroups</td>\n<td>Values of external SSO Groups This must match exactly with the external value</td>\n<td>String</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Users to be associated with this access group</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createaccessgroupresponse\">CreateAccessGroupResponse</h2>\n<p> Response for creating an access group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroup</td>\n<td>The access group that was created</td>\n<td>AccessGroup</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateaccessgroupinput\">UpdateAccessGroupInput</h2>\n<p> Input for updating an access group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td>The new description of the access group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID of the AccessGroup</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>Updates to the default attribute of the access group</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The new name of the access group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Updates to the pods of the access group</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Updates to the roles of the access group</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>ssoGroups</td>\n<td>Updates to the SSO Groups of the access group</td>\n<td>UpdateStringAssociationInput</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Updates to the users of the access group</td>\n<td>UpdateAssociationInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateaccessgroupresponse\">UpdateAccessGroupResponse</h2>\n<p> Response for updating an access group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroup</td>\n<td>The access group that was updated</td>\n<td>AccessGroup</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deleteaccessgroupresponse\">DeleteAccessGroupResponse</h2>\n<p> Response for deleting an access group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createpodinput\">CreatePodInput</h2>\n<p> Input for creating a pod</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td>Description of the pod</td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the pod</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createpodresponse\">CreatePodResponse</h2>\n<p> Response for creating a pod</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pod</td>\n<td>The pod that was created</td>\n<td>Pod</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatepodinput\">UpdatePodInput</h2>\n<p> Input for updating a pod</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Updates to the access groups of the pod</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>customers</td>\n<td>Updates to the customers of the pod</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>description</td>\n<td>The new description of the pod</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID of the Pod</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The new name of the pod</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatepodresponse\">UpdatePodResponse</h2>\n<p> Response for updating a pod</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pod</td>\n<td>The pod that was updated</td>\n<td>Pod</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deletepodresponse\">DeletePodResponse</h2>\n<p> Response for deleting a pod</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createroleinput\">CreateRoleInput</h2>\n<p> Input for creating a role</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td>Description of the role</td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the role</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createroleresponse\">CreateRoleResponse</h2>\n<p> Response for creating a role</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>role</td>\n<td>The pod that was created</td>\n<td>Role</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateroleinput\">UpdateRoleInput</h2>\n<p> Input for updating a role</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Updates to the access groups of the role</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>description</td>\n<td>The new description of the role</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID of the role</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The new name of the role</td>\n<td>String</td>\n</tr>\n<tr>\n<td>permissions</td>\n<td>Updates to the permissions which are part of the role</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateroleresponse\">UpdateRoleResponse</h2>\n<p> Response for updating a role</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>role</td>\n<td>The role that was updated</td>\n<td>Role</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deleteroleresponse\">DeleteRoleResponse</h2>\n<p> Response for deleting a role</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c880319d-83c9-4b6e-970c-5ed822c222f6","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":"79750f28-131a-4df7-b184-49b9480a47f8","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-07-01T00:00:00.000Z\",\n    \"user\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Create a new API Key.</p>\n<p>Inputs: \nCreateApiKeyInput, </p>\n<p>Return: \nCreateApiKeyResponse</p>\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":"0a5e65c3-a2e5-45ed-9779-fce72b4e99cd","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-07-01T00:00:00.000Z\",\n    \"user\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"expiresAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\n        \"key\": \"\",\n        \"lastQuery\": \"\",\n        \"lastUsedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"79750f28-131a-4df7-b184-49b9480a47f8"},{"name":"deleteApiKeyById","id":"46e9b02e-496d-45e0-81b5-55dddf6b1997","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\": \"<ID HERE>\",\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete a specific API Key by its ID.\nIf a user parameter is provided, it will delete the API Key associated with that user.</p>\n<p>Inputs: \nID, ID, </p>\n<p>Return: \nDeleteApiKeyResponse</p>\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":"7e94aa2c-334f-414c-a0d5-56250d270146","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\": \"<ID HERE>\",\n  \"user\": \"<ID HERE>\"\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":"46e9b02e-496d-45e0-81b5-55dddf6b1997"},{"name":"deleteApiKeys","id":"8fdd53b3-5548-40dd-8b1f-02759327780a","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteApiKeys ($user: ID) {\n    deleteApiKeys (user: $user) {\n        success\n    }\n}","variables":"{\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nDeleteApiKeyResponse</p>\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":"9b5a7664-2b66-494e-aed4-e8a1982fc02f","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\": \"<ID HERE>\"\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":"8fdd53b3-5548-40dd-8b1f-02759327780a"}],"id":"95daa98c-8005-4831-999d-4c3b4dde3e66","_postman_id":"95daa98c-8005-4831-999d-4c3b4dde3e66","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":"c5ccb219-0ea0-4f4e-acfe-2ecf838c8a28","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nApiKey</p>\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":"074cf24b-6701-499b-ac94-91ff10b432c2","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"expiresAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\n        \"key\": \"\",\n        \"lastQuery\": \"\",\n        \"lastUsedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"accessGroups\": {\n            \"totalCount\": 0\n          },\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"pods\": {\n            \"totalCount\": 0\n          },\n          \"roles\": {\n            \"totalCount\": 0\n          },\n          \"serviceNowId\": \"\"\n        }\n      }\n    ]\n  }\n}"}],"_postman_id":"c5ccb219-0ea0-4f4e-acfe-2ecf838c8a28"}],"id":"4d045625-2abf-479c-9ef6-b3ce385805a8","_postman_id":"4d045625-2abf-479c-9ef6-b3ce385805a8","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":"b55e55e5-03ea-4afd-82de-e6ca36ce23cf","description":"<h2 id=\"apikey\">ApiKey</h2>\n<p> Represents an API Key with associated metadata.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>Timestamp when the API Key was created.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>expiresAt</td>\n<td>Timestamp when the API Key expires.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Globally unique identifier for the API Key.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>key</td>\n<td>The actual API Key string.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastQuery</td>\n<td>Last query made using the API Key.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastUsedAt</td>\n<td>Timestamp when the API Key was last used.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User associated with the API Key.</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deleteapikeyresponse\">DeleteApiKeyResponse</h2>\n<p> Response type for delete mutations (deleteApiKeys and deleteApiKeyById).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Indicates if the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createapikeyresponse\">CreateApiKeyResponse</h2>\n<p> Response type for creating a new api key</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>apiKey</td>\n<td>The created api key.</td>\n<td>ApiKey</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates if the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createapikeyinput\">CreateApiKeyInput</h2>\n<p> Input type for creating a new API Key.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>expiryTime</td>\n<td>Expiry time for the new API Key.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td>If set, the key will be created for this user. Must have elevated permissions. Otherwise it creates a key for the requesting user.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b55e55e5-03ea-4afd-82de-e6ca36ce23cf","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":"13de645f-3984-47e4-8e95-a7a48190361f","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\": \"<ID HERE>\",\n    \"comment\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>This API allows user to delete an asset.</p>\n<p>Inputs: \nDeleteAssetInput, </p>\n<p>Return: \nDeleteAssetResponse</p>\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":"8cf0b86a-b5e3-41a7-94e4-52aba3c119bc","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\": \"<ID HERE>\",\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":"13de645f-3984-47e4-8e95-a7a48190361f"}],"id":"561eb7a6-3b04-431e-bd78-fa8a9289f4bd","_postman_id":"561eb7a6-3b04-431e-bd78-fa8a9289f4bd","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":"1419bc32-bb91-4333-9a34-e2d1f0e03dc4","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    \"discoverTechnologies\": [\n      \"\"\n    ],\n    \"edr\": {\n      \"name\": \"\",\n      \"visibility\": [\n        \"LOGGING\"\n      ]\n    },\n    \"eventFilter\": {\n      \"activities\": [\n        \"<ID HERE>\"\n      ],\n      \"assetName\": \"<ID HERE>\",\n      \"classes\": [\n        \"<ID HERE>\"\n      ],\n      \"eventCodes\": [\n        \"\"\n      ],\n      \"groupBy\": \"\",\n      \"storageIntegrations\": [\n        \"\"\n      ],\n      \"subActivities\": [\n        \"<ID HERE>\"\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\": \"<ID HERE>\",\n      \"product\": \"<ID HERE>\",\n      \"vendor\": \"<ID HERE>\"\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":"<p>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.</p>\n<p>Inputs: \nString, AssetFilter, Int, AssetOrder, </p>\n<p>Return: \nAssetConnection</p>\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":"f415c752-7a12-43fc-8e45-286c65c52ca0","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    \"discoverTechnologies\": [\n      \"\"\n    ],\n    \"edr\": {\n      \"name\": \"\",\n      \"visibility\": [\n        \"LOGGING\"\n      ]\n    },\n    \"eventFilter\": {\n      \"activities\": [\n        \"<ID HERE>\"\n      ],\n      \"assetName\": \"<ID HERE>\",\n      \"classes\": [\n        \"<ID HERE>\"\n      ],\n      \"eventCodes\": [\n        \"\"\n      ],\n      \"groupBy\": \"\",\n      \"storageIntegrations\": [\n        \"\"\n      ],\n      \"subActivities\": [\n        \"<ID HERE>\"\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\": \"<ID HERE>\",\n      \"product\": \"<ID HERE>\",\n      \"vendor\": \"<ID HERE>\"\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\": \"<ID HERE>\",\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":"1419bc32-bb91-4333-9a34-e2d1f0e03dc4"}],"id":"701dc1c5-a058-4336-a06b-32b8e749f354","_postman_id":"701dc1c5-a058-4336-a06b-32b8e749f354","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":"ef7cec15-2af3-4d13-8d3d-94b9038fef61","description":"<h2 id=\"asset\">Asset</h2>\n<p> Details of Asset</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cloud</td>\n<td>Asset cloud visibility.</td>\n<td>AssetTechVisibility</td>\n</tr>\n<tr>\n<td>edr</td>\n<td>Asset EDR visibility.</td>\n<td>AssetTechVisibility</td>\n</tr>\n<tr>\n<td>externalScanDetailsAvailable</td>\n<td>Indicates if external scan details are available for this asset.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>iam</td>\n<td>Asset IAM visibility.</td>\n<td>AssetTechVisibility</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Asset id.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ipAddress</td>\n<td>Asset id address</td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of an asset</td>\n<td>String</td>\n</tr>\n<tr>\n<td>operatingSystem</td>\n<td>Asset operating systems.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>publiclyAccessible</td>\n<td>Indicates if the asset is publicly accessible.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>siem</td>\n<td>Asset SIEM visibility.</td>\n<td>AssetTechVisibility</td>\n</tr>\n<tr>\n<td>techAssetIds</td>\n<td>Asset identifiers.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>technology</td>\n<td>Asset technologies.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Asset type.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>vulnerabilityScanner</td>\n<td>Asset vulnerability scanner visibility.</td>\n<td>AssetTechVisibility</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetconnection\">AssetConnection</h2>\n<p> Paginated asset response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>AssetEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetedge\">AssetEdge</h2>\n<p> Page of asset</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Asset</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assettechvisibility\">AssetTechVisibility</h2>\n<p> Tech Visibility status of asset</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Technology name.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>visibility</td>\n<td>Asset technology visibility.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetorderby\">AssetOrderBy</h2>\n<p> Values supported for order operation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICALITY</td>\n<td></td>\n</tr>\n<tr>\n<td>ENTITY_TYPE</td>\n<td></td>\n</tr>\n<tr>\n<td>IP_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>LAST_SEEN</td>\n<td></td>\n</tr>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>SOURCE</td>\n<td></td>\n</tr>\n<tr>\n<td>STATUS</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABILITIES</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetvisibility\">AssetVisibility</h2>\n<p> Asset visibility status.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LOGGING</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_DISCOVERED</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_LOGGING</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetaccessibility\">AssetAccessibility</h2>\n<p> Filter assets by their public accessibility status.\nValues:</p>\n<ul>\n<li>ALL: No filtering, returns all assets regardless of accessibility</li>\n<li>NOT_PUBLIC: Returns only assets that are not publicly accessible (private/internal assets)</li>\n<li>PUBLIC: Returns only assets that are publicly accessible via internet</li>\n<li>EXTERNAL_SCAN_DETAILS_AVAILABLE: Returns assets with external scan data available<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ALL</td>\n<td></td>\n</tr>\n<tr>\n<td>EXTERNAL_SCAN_DETAILS_AVAILABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_PUBLIC</td>\n<td></td>\n</tr>\n<tr>\n<td>PUBLIC</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div></li>\n</ul>\n<h2 id=\"assetdiscoverinsightfilter\">AssetDiscoverInsightFilter</h2>\n<p> Filter to retrieve discover insights</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attentionRequired</td>\n<td>AttentionRequired coverage of asset flag.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>domainJoined</td>\n<td>DomainJoined coverage of asset flag.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>edrCoverage</td>\n<td>EDR coverage of asset flag.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>logging</td>\n<td>Logging coverage of asset flag.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>vulnerabilityScanner</td>\n<td>Vulnerability Scanner coverage of asset flag.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"asseteventfilter\">AssetEventFilter</h2>\n<p> Event based asset filter</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activities</td>\n<td>Activity identifier.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>assetName</td>\n<td>Asset name filter.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>classes</td>\n<td>Asset class identifier.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>eventCodes</td>\n<td>Event codes  filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>groupBy</td>\n<td>Asset grouping filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>storageIntegrations</td>\n<td>Storage Integrations of asset filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>subActivities</td>\n<td>Sub-Activity identifier.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetfilter\">AssetFilter</h2>\n<p> Primary filter to fetch assets</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assetAccessibility</td>\n<td>Assets by accessibility status</td>\n<td>AssetAccessibility</td>\n</tr>\n<tr>\n<td>assetTypes</td>\n<td>Asset types to retrieve.</td>\n<td>Int</td>\n</tr>\n<tr>\n<td>cloud</td>\n<td>Cloud visibility filter.</td>\n<td>AssetTechVisibilityFilter</td>\n</tr>\n<tr>\n<td>discoverTechnologies</td>\n<td>Type of discover technologies filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>edr</td>\n<td>EDR asset types filter.</td>\n<td>AssetTechVisibilityFilter</td>\n</tr>\n<tr>\n<td>eventFilter</td>\n<td>Assets by events filter.</td>\n<td>AssetEventFilter</td>\n</tr>\n<tr>\n<td>iam</td>\n<td>IAM asset types filter.</td>\n<td>AssetTechVisibilityFilter</td>\n</tr>\n<tr>\n<td>insights</td>\n<td>Assets by insights filter.</td>\n<td>AssetDiscoverInsightFilter</td>\n</tr>\n<tr>\n<td>operatingSystems</td>\n<td>Operating systems  filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>publicVisibility [DEPRECATED]</td>\n<td>[DEPRECATED: Use assetAccessibility field instead.] DEPRECATED: Use assetAccessibility instead. Filter by public visibility.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>searchText</td>\n<td>Search text for queriyng assets.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>siem</td>\n<td>SIEM asset types filter.</td>\n<td>AssetTechVisibilityFilter</td>\n</tr>\n<tr>\n<td>storageIdentifiers</td>\n<td>Assets by storageIdentifiers filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Asset tags  filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>technologies</td>\n<td>Assets by technologies filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>vendorProductFeatures</td>\n<td>Assets by Vendor product feature filter.</td>\n<td>AssetVendorProductFeaturesFilter</td>\n</tr>\n<tr>\n<td>vulnerabilities</td>\n<td>Assets vulnerabilities filter.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>vulnerabilityScanner</td>\n<td>Vulnerability Scanner asset types filter.</td>\n<td>AssetTechVisibilityFilter</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetorder\">AssetOrder</h2>\n<p> Field to retrieve asset based sort order and filed name</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td>Asset sort direction.</td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td>Order to retrieve assets.</td>\n<td>AssetOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assettechvisibilityfilter\">AssetTechVisibilityFilter</h2>\n<p> Filter to fetch assets based on tech visibility</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>name of technology.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>visibility</td>\n<td>Asset visibility on technology.</td>\n<td>AssetVisibility</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assetvendorproductfeaturesfilter\">AssetVendorProductFeaturesFilter</h2>\n<p> Vendor product and featurs</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>feature</td>\n<td>Feature identifier.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>product</td>\n<td>Product identifier.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>vendor</td>\n<td>Vendor identifier.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deleteassetinput\">DeleteAssetInput</h2>\n<p> Input object for deleting asset from asset inventory.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assetId</td>\n<td>Base 64 encoded unique Asset name.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>Comment for removal</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deleteassetresponse\">DeleteAssetResponse</h2>\n<p> Response of delete asset api having operation status and message.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>Message of operation.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Operations status.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ef7cec15-2af3-4d13-8d3d-94b9038fef61","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":"ba1ad4af-30fd-4674-bbfb-5860ad5efe80","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\": \"<ID HERE>\",\n    \"comment\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Add a comment to a case</p>\n<p>Inputs: \nCaseCommentInput, </p>\n<p>Return: \nCaseResponse</p>\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":"53e8abef-ad32-4470-b527-396194d7fec4","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\": \"<ID HERE>\",\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\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"ba1ad4af-30fd-4674-bbfb-5860ad5efe80"},{"name":"addChildrenToCase","id":"0ba08478-e256-4715-9ba5-a642c5c2506f","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\": \"<ID HERE>\",\n    \"children\": {\n      \"childId\": \"<ID HERE>\",\n      \"childType\": \"DISCOVER_TASK\"\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Add a child to a case</p>\n<p>Inputs: \nAddChildrenToCaseInput, </p>\n<p>Return: \nCaseResponse</p>\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":"a86a80e5-8c1c-48ae-9fb2-c5aec2289862","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\": \"<ID HERE>\",\n    \"children\": {\n      \"childId\": \"<ID HERE>\",\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\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"0ba08478-e256-4715-9ba5-a642c5c2506f"},{"name":"cancelCase","id":"699ef52c-53d4-4de4-875a-7e612bf9df32","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\": \"<ID HERE>\",\n    \"closeCode\": \"\",\n    \"reason\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Cancel a case</p>\n<p>Inputs: \nCancelCaseInput, </p>\n<p>Return: \nCaseResponse</p>\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":"866c5408-7143-4a52-8d90-7fb28c5af410","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"state\": \"CANCELLED\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"699ef52c-53d4-4de4-875a-7e612bf9df32"},{"name":"closeCase","id":"cac08a20-10e4-4dc2-89b5-d5f61bbc484b","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\": \"<ID HERE>\",\n    \"closeCode\": \"\",\n    \"reason\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Close a case</p>\n<p>Inputs: \nCloseCaseInput, </p>\n<p>Return: \nCaseResponse</p>\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":"e2bc60e3-3165-4e5b-9186-0c88d9a049f1","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"state\": \"CANCELLED\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"cac08a20-10e4-4dc2-89b5-d5f61bbc484b"},{"name":"createCase","id":"aea64f9a-c8ce-4a97-ba9c-bd6d6463b35b","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      \"<ID HERE>\"\n    ],\n    \"children\": {\n      \"childId\": \"<ID HERE>\",\n      \"childType\": \"DISCOVER_TASK\"\n    },\n    \"description\": \"\",\n    \"dueAt\": \"2026-07-01T00:00:00.000Z\",\n    \"owner\": \"<ID HERE>\",\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":"<p>Create a new case.</p>\n<p>Inputs: \nCreateCaseInput, </p>\n<p>Return: \nCaseResponse</p>\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":"df5f29c4-d356-47e3-bc57-93283660ca85","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      \"<ID HERE>\"\n    ],\n    \"children\": {\n      \"childId\": \"<ID HERE>\",\n      \"childType\": \"DISCOVER_TASK\"\n    },\n    \"description\": \"\",\n    \"dueAt\": \"2026-07-01T00:00:00.000Z\",\n    \"owner\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"severity\": \"CRITICAL\",\n        \"state\": \"CANCELLED\",\n        \"title\": \"\",\n        \"type\": \"DISCOVER_EXPOSURE\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"aea64f9a-c8ce-4a97-ba9c-bd6d6463b35b"},{"name":"removeChildFromCase","id":"f3d2840a-1de5-475e-9427-b20065dc154f","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\": \"<ID HERE>\",\n    \"child\": {\n      \"childId\": \"<ID HERE>\",\n      \"childType\": \"DISCOVER_TASK\"\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Remove a child from a case</p>\n<p>Inputs: \nRemoveChildFromCaseInput, </p>\n<p>Return: \nCaseResponse</p>\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":"65a0bc51-c4cf-4f2d-bc54-04f9e5ecf4a3","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\": \"<ID HERE>\",\n    \"child\": {\n      \"childId\": \"<ID HERE>\",\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\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"f3d2840a-1de5-475e-9427-b20065dc154f"},{"name":"updateCase","id":"10384879-fd00-49cd-9679-9a5754c060d3","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\": \"<ID HERE>\",\n    \"description\": \"\",\n    \"expirationDate\": \"2026-07-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":"<p>Update a case</p>\n<p>Inputs: \nUpdateCaseInput, </p>\n<p>Return: \nCaseResponse</p>\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":"c4be9394-4035-4692-9a90-0dc9991b867f","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\": \"<ID HERE>\",\n    \"description\": \"\",\n    \"expirationDate\": \"2026-07-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\": \"<ID HERE>\",\n        \"severity\": \"CRITICAL\",\n        \"state\": \"CANCELLED\",\n        \"title\": \"\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"10384879-fd00-49cd-9679-9a5754c060d3"},{"name":"updateCaseDueDate","id":"d7b23d27-d896-48e2-9da3-f2047c99e31b","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\": \"<ID HERE>\",\n    \"dueAt\": \"2026-07-01T00:00:00.000Z\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update case due date</p>\n<p>Inputs: \nUpdateCaseDueDateInput, </p>\n<p>Return: \nCaseResponse</p>\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":"40b86ffc-af51-4cf2-a881-3fba7a1045aa","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\": \"<ID HERE>\",\n    \"dueAt\": \"2026-07-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-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"d7b23d27-d896-48e2-9da3-f2047c99e31b"},{"name":"updateCaseOwner","id":"b0d1a0de-1dfb-40bc-a244-ca717e639773","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\": \"<ID HERE>\",\n    \"owner\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update case owner</p>\n<p>Inputs: \nUpdateCaseOwnerInput, </p>\n<p>Return: \nCaseResponse</p>\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":"94e9fd63-5a33-4106-8d84-7555c51776f1","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\": \"<ID HERE>\",\n    \"owner\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"owner\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"b0d1a0de-1dfb-40bc-a244-ca717e639773"}],"id":"899a44d0-68f5-4d65-b977-b61aa9912451","_postman_id":"899a44d0-68f5-4d65-b977-b61aa9912451","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":"b3409194-67ae-4da3-a21f-688d595e1d85","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, $after7: String, $first7: Int, $after8: String, $first8: Int, $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            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                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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after4\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first4\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after5\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after6\": \"T18w\",\n  \"first6\": 10,\n  \"after7\": \"T18w\",\n  \"first7\": 10,\n  \"after8\": \"T18w\",\n  \"first8\": 10,\n  \"after9\": \"T18w\",\n  \"first9\": 10,\n  \"after10\": \"T18w\",\n  \"filter6\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first10\": 10,\n  \"order6\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after11\": \"T18w\",\n  \"filter7\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first11\": 10,\n  \"order7\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after12\": \"T18w\",\n  \"filter8\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first12\": 10,\n  \"order8\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after13\": \"T18w\",\n  \"filter9\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first13\": 10,\n  \"order9\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after14\": \"T18w\",\n  \"filter10\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first14\": 10,\n  \"order10\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after15\": \"T18w\",\n  \"filter11\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first15\": 10,\n  \"order11\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"by\": {\n    \"id\": \"<ID HERE>\",\n    \"slug\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch Case by id XOR slug</p>\n<p>Inputs: \nCaseBy, </p>\n<p>Return: \nCase</p>\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":"4f6a022d-95dd-4695-84c9-cec445a4c501","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, $after7: String, $first7: Int, $after8: String, $first8: Int, $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            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                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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after4\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first4\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after5\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after6\": \"T18w\",\n  \"first6\": 10,\n  \"after7\": \"T18w\",\n  \"first7\": 10,\n  \"after8\": \"T18w\",\n  \"first8\": 10,\n  \"after9\": \"T18w\",\n  \"first9\": 10,\n  \"after10\": \"T18w\",\n  \"filter6\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first10\": 10,\n  \"order6\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after11\": \"T18w\",\n  \"filter7\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first11\": 10,\n  \"order7\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after12\": \"T18w\",\n  \"filter8\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first12\": 10,\n  \"order8\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after13\": \"T18w\",\n  \"filter9\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first13\": 10,\n  \"order9\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after14\": \"T18w\",\n  \"filter10\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first14\": 10,\n  \"order10\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after15\": \"T18w\",\n  \"filter11\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first15\": 10,\n  \"order11\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"by\": {\n    \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n              \"externalId\": \"\",\n              \"id\": \"<ID HERE>\",\n              \"severity\": \"CRITICAL\",\n              \"state\": \"CLOSED\",\n              \"summary\": \"\",\n              \"title\": \"\",\n              \"type\": \"DISCOVER_TASK\",\n              \"updatedAt\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"comments\": {\n        \"edges\": [\n          {\n            \"cursor\": \"\",\n            \"node\": {\n              \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"text\": \"\",\n              \"updatedAt\": \"2026-07-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-07-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\": \"<ID HERE>\",\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        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\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          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\",\n          \"users\": {\n            \"totalCount\": 0\n          }\n        },\n        \"description\": \"\",\n        \"exposure\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"mitigations\": \"\",\n        \"mitreTacticTechniques\": [\n          {\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"techniques\": [\n              {\n                \"id\": \"<ID HERE>\",\n                \"name\": \"\"\n              }\n            ]\n          }\n        ],\n        \"type\": \"CLOUD_MISCONFIGURATION\"\n      },\n      \"dueAt\": \"2026-07-01T00:00:00.000Z\",\n      \"expirationDate\": \"2026-07-01T00:00:00.000Z\",\n      \"id\": \"<ID HERE>\",\n      \"lastSummarizedAt\": \"2026-07-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\": \"<ID HERE>\",\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-07-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\": \"<ID HERE>\",\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":"b3409194-67ae-4da3-a21f-688d595e1d85"},{"name":"cases","id":"ca9bc509-7dec-4cdf-9863-8c22d7682d57","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"due\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"owners\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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":"<p>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.</p>\n<p>Inputs: \nString, CaseFilter, Int, CaseOrder, </p>\n<p>Return: \nCaseConnection</p>\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":"90b5d520-af00-4cbc-881c-10536735f922","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"due\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"owners\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n            \"comments\": {\n              \"totalCount\": 0\n            },\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"createdBy\": {\n              \"email\": \"\",\n              \"fullName\": \"\",\n              \"id\": \"<ID HERE>\",\n              \"serviceNowId\": \"\"\n            },\n            \"customer\": {\n              \"active\": true,\n              \"headerSlug\": \"\",\n              \"id\": \"<ID HERE>\",\n              \"name\": \"\",\n              \"residency\": \"\",\n              \"slug\": \"\"\n            },\n            \"description\": \"\",\n            \"discoverExposure\": {\n              \"aiSummary\": \"\",\n              \"description\": \"\",\n              \"exposure\": \"\",\n              \"id\": \"<ID HERE>\",\n              \"mitigations\": \"\",\n              \"type\": \"CLOUD_MISCONFIGURATION\"\n            },\n            \"dueAt\": \"2026-07-01T00:00:00.000Z\",\n            \"expirationDate\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"lastSummarizedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"owner\": {\n              \"email\": \"\",\n              \"fullName\": \"\",\n              \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n            \"updatedBy\": {\n              \"email\": \"\",\n              \"fullName\": \"\",\n              \"id\": \"<ID HERE>\",\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":"ca9bc509-7dec-4cdf-9863-8c22d7682d57"}],"id":"6ad5f6e4-a7f4-4904-89c6-bccc7cec68ec","_postman_id":"6ad5f6e4-a7f4-4904-89c6-bccc7cec68ec","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":"195b5327-3182-4f53-b84f-cd02ddca2f36","description":"<h2 id=\"caseby\">CaseBy</h2>\n<p> Search for a Case by one and only one of the below</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The unique identifier of the Case</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>slug</td>\n<td>The human readable identifier of the Case</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casefilter\">CaseFilter</h2>\n<p> Case Filter input type to filter out Cases.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>closed</td>\n<td>Case closed TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>created</td>\n<td>Case creation TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>due</td>\n<td>Case due TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>owners</td>\n<td>List of owner IDs to filter</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Search string to search from Case's Title/Description/Slug/Summary.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>severities</td>\n<td>List of Severities to filter.</td>\n<td>CaseSeverity</td>\n</tr>\n<tr>\n<td>states</td>\n<td>List of States to filter.</td>\n<td>CaseState</td>\n</tr>\n<tr>\n<td>subTypes</td>\n<td>List of Sub-types to filter.</td>\n<td>CaseSubType</td>\n</tr>\n<tr>\n<td>types</td>\n<td>List of Types to filter.</td>\n<td>CaseType</td>\n</tr>\n<tr>\n<td>unowned</td>\n<td>Filter out cases based on assignment  True: Cases which are not assigned to any user False: Cases which are assigned to user</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>Case updated TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseorder\">CaseOrder</h2>\n<p> Case OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>CaseOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseorderby\">CaseOrderBy</h2>\n<p> Order by ENUM for Case</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOSED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>DUE_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>SEVERITY</td>\n<td></td>\n</tr>\n<tr>\n<td>STATE</td>\n<td></td>\n</tr>\n<tr>\n<td>TITLE</td>\n<td></td>\n</tr>\n<tr>\n<td>TYPE</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseseverity\">CaseSeverity</h2>\n<p> Severity of Case</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>INFORMATIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casestate\">CaseState</h2>\n<p> State of Case</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CANCELLED</td>\n<td></td>\n</tr>\n<tr>\n<td>CLOSED</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>NEW</td>\n<td></td>\n</tr>\n<tr>\n<td>ON_HOLD</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casetype\">CaseType</h2>\n<p> Type of Case</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DISCOVER_EXPOSURE</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HUNT</td>\n<td>Case created for a threat hunt.</td>\n</tr>\n<tr>\n<td>TEAMMATE</td>\n<td>TEAMMATE is automatically created by GreyMatter. This type cannot be created via the API.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casesubtype\">CaseSubType</h2>\n<p> Sub-type of the case</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOUD_MISCONFIGURATION</td>\n<td></td>\n</tr>\n<tr>\n<td>COVERAGE_GAP</td>\n<td></td>\n</tr>\n<tr>\n<td>MISCONFIGURATION</td>\n<td></td>\n</tr>\n<tr>\n<td>THREAT_ADVISORY</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABILITY</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"case\">Case</h2>\n<p> Case schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>Activity Log connection. This connection is pageable, sortable, and filterable</td>\n<td>CaseActivityLogConnection</td>\n</tr>\n<tr>\n<td>aiSummary</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Children connection. This connection represents all of the child tasks that are linked to this case. This connection is pageable, sortable, and filterable</td>\n<td>CaseChildConnection</td>\n</tr>\n<tr>\n<td>childrenOverview</td>\n<td>A breakdown overview of the children tasks in a case. This gives a quick summary of the total children and their state breakdown.</td>\n<td>CaseChildrenOverview</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>closedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>comments</td>\n<td>Comment connection. This connection is pageable, sortable, and filterable</td>\n<td>CaseCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>discoverExposure</td>\n<td></td>\n<td>DiscoverExposure</td>\n</tr>\n<tr>\n<td>dueAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>lastSummarizedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>owner</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>reasonForClosure</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>CaseSeverity</td>\n</tr>\n<tr>\n<td>slug</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>CaseState</td>\n</tr>\n<tr>\n<td>subType</td>\n<td>Case sub-type (Ex. VULNERABILITY, MISCONFIGURATION). Value can empty in case of no subtype</td>\n<td>CaseSubType</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>CaseType</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseresponse\">CaseResponse</h2>\n<p> The CaseResponse type is used to return the result of a case related operation.</p>\n<p>Fields:</p>\n<ul>\n<li>success: Indicates whether the operation was successful.</li>\n<li>case: Provides the resulting updated case (optional, might be null if no case is associated).<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>case</td>\n<td>Resulting updated case (optional)</td>\n<td>Case</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div></li>\n</ul>\n<h2 id=\"caseedge\">CaseEdge</h2>\n<p> Case Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Case</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseconnection\">CaseConnection</h2>\n<p> Case Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CaseEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildrenoverview\">CaseChildrenOverview</h2>\n<p> Overview of a cases child tasks</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>totalChildren</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>totalClosed</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>totalInProgress</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>totalNew</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>totalOpen</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>totalsByCloseCode</td>\n<td></td>\n<td>CaseChildrenCountByCloseCode</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildrencountbyclosecode\">CaseChildrenCountByCloseCode</h2>\n<p> Case children count by close code</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>total</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechild\">CaseChild</h2>\n<p> Case Child schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>externalId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>CaseChildSeverity</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>CaseChildState</td>\n</tr>\n<tr>\n<td>summary</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>CaseChildType</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildedge\">CaseChildEdge</h2>\n<p> Case Child Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>CaseChild</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildconnection\">CaseChildConnection</h2>\n<p> Case Child Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CaseChildEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildfilter\">CaseChildFilter</h2>\n<p> Case Filter input type to filter out Cases. If not set, defaults will be used.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignees</td>\n<td>List of assignee IDs to filter</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>created</td>\n<td>Case Child creation TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Search string to search from Case Child's Title/Summary/External ID.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>severities</td>\n<td>List of Case Child Severities to filter.</td>\n<td>CaseChildSeverity</td>\n</tr>\n<tr>\n<td>states</td>\n<td>List of Case Child States to filter.</td>\n<td>CaseChildState</td>\n</tr>\n<tr>\n<td>types</td>\n<td>List of Types to filter.</td>\n<td>CaseChildType</td>\n</tr>\n<tr>\n<td>unassigned</td>\n<td>Filter out case children based on assignment  True: Cases Children which are not assigned to any user False: Cases Children which are assigned to user</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>Case Child updated TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildorder\">CaseChildOrder</h2>\n<p> Case Child OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>CaseChildOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildorderby\">CaseChildOrderBy</h2>\n<p> Order by ENUM for Case Child</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOSE_CODE</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>SEVERITY</td>\n<td></td>\n</tr>\n<tr>\n<td>STATE</td>\n<td></td>\n</tr>\n<tr>\n<td>TYPE</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildseverity\">CaseChildSeverity</h2>\n<p> Case Child Severity ENUM</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>INFORMATIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildstate\">CaseChildState</h2>\n<p> Case Child State ENUM</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOSED</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>NEW</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildtype\">CaseChildType</h2>\n<p> Case Child Type ENUM</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DISCOVER_TASK</td>\n<td></td>\n</tr>\n<tr>\n<td>DRP_ALERT</td>\n<td></td>\n</tr>\n<tr>\n<td>ENGINEERING_INCIDENT</td>\n<td></td>\n</tr>\n<tr>\n<td>INCIDENT</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_INCIDENT</td>\n<td></td>\n</tr>\n<tr>\n<td>TASK</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseactivitylogfilter\">CaseActivityLogFilter</h2>\n<p> Case Activity Log Filter input</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Activity log creation time range (Optional)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseactivitylogorder\">CaseActivityLogOrder</h2>\n<p> Case Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderByList</td>\n<td></td>\n<td>CaseActivityLogOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseactivitylogorderby\">CaseActivityLogOrderBy</h2>\n<p> Order By ENUM for Case Activity Log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>FIELD</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseactivitylogentry\">CaseActivityLogEntry</h2>\n<p> Case Activity Log Entry schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aiSummary</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>caseChild</td>\n<td></td>\n<td>CaseChildChanged</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>closedAt</td>\n<td></td>\n<td>DateTimeChanged</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>dueAt</td>\n<td></td>\n<td>DateTimeChanged</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td></td>\n<td>DateTimeChanged</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>owner</td>\n<td></td>\n<td>UserChanged</td>\n</tr>\n<tr>\n<td>reasonForClosure</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>CaseSeverityChanged</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>CaseStateChanged</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseactivitylogedge\">CaseActivityLogEdge</h2>\n<p> Case Activity Log Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>CaseActivityLogEntry</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseactivitylogconnection\">CaseActivityLogConnection</h2>\n<p> Case Activity Log Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CaseActivityLogEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casestatechanged\">CaseStateChanged</h2>\n<p> Case State Change for activity log shema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>CaseState</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>CaseState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"caseseveritychanged\">CaseSeverityChanged</h2>\n<p> Case Severity Change for activity log shema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>CaseSeverity</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>CaseSeverity</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildchanged\">CaseChildChanged</h2>\n<p> Case Child Change for activity log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>CaseChild</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>CaseChild</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casecommentfilter\">CaseCommentFilter</h2>\n<p> Case Comment Filter input type to filter out Cases' comments</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Time range for comment creation (optional)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casecommentorder\">CaseCommentOrder</h2>\n<p> Case Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>CaseCommentOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casecommentorderby\">CaseCommentOrderBy</h2>\n<p> Order by ENUM for Case Comments</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casecomment\">CaseComment</h2>\n<p> Case Comment schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casecommentedge\">CaseCommentEdge</h2>\n<p> Case Comment Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>CaseComment</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casecommentconnection\">CaseCommentConnection</h2>\n<p> Case Comment Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CaseCommentEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createcaseinput\">CreateCaseInput</h2>\n<p> Input fields for new case</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aiSummary</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>attachmentIds</td>\n<td>IDs of attachments to link to the case upon creation</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Children to link to the case upon creation</td>\n<td>CaseChildAssociationInput</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>dueAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>owner</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>CaseSeverity</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>CaseState</td>\n</tr>\n<tr>\n<td>subType</td>\n<td></td>\n<td>CaseSubType</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>CaseType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatecaseinput\">UpdateCaseInput</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aiSummary</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>CaseSeverity</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>CaseState</td>\n</tr>\n<tr>\n<td>subType</td>\n<td></td>\n<td>CaseSubType</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatecaseownerinput\">UpdateCaseOwnerInput</h2>\n<p> Input fields for updating the Case's owner. Pass null for owner to set the case to have no owner.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>owner</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatecaseduedateinput\">UpdateCaseDueDateInput</h2>\n<p> Input fields for updating the Case's due date. Pass null for due at to set the case to have no due date.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>dueAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"closecaseinput\">CloseCaseInput</h2>\n<p> Input fields for closing a case.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>reason</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"cancelcaseinput\">CancelCaseInput</h2>\n<p> Input fields for cancelling a case.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>reason</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casecommentinput\">CaseCommentInput</h2>\n<p> Input fields for adding a case comment.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"addchildrentocaseinput\">AddChildrenToCaseInput</h2>\n<p> Input fields for adding a child to a case.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>children</td>\n<td></td>\n<td>CaseChildAssociationInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"removechildfromcaseinput\">RemoveChildFromCaseInput</h2>\n<p> Input fields for removing a child from a case.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>child</td>\n<td></td>\n<td>CaseChildAssociationInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"casechildassociationinput\">CaseChildAssociationInput</h2>\n<p> Input fields for associating a child to a case.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>childId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>childType</td>\n<td></td>\n<td>CaseChildType</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"195b5327-3182-4f53-b84f-cd02ddca2f36","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":"2aa960a9-a1f1-43b8-89f5-876415b4cae8","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      \"<ID HERE>\"\n    ]\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Approves one or more pending detection change requests.</p>\n<p>Inputs: \nApproveDetectionChangeRequestsInput, </p>\n<p>Return: \nDetectionChangeRequestActionResponse</p>\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":"a5da060d-4620-4f8a-9ee7-2ef4fa9d874a","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      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"requestType\": \"NEW_RULE\",\n            \"sourceType\": \"\",\n            \"status\": \"APPROVED\"\n          },\n          \"reason\": \"\"\n        }\n      ],\n      \"succeeded\": [\n        {\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"customerDetection\": {\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"deployedLogic\": \"\",\n            \"detectionSource\": \"\",\n            \"displaySlug\": 0,\n            \"enabled\": true,\n            \"id\": \"<ID HERE>\",\n            \"sourceType\": \"\",\n            \"versionNumber\": 0\n          },\n          \"id\": \"<ID HERE>\",\n          \"requestType\": \"NEW_RULE\",\n          \"rule\": {\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"logSourceTypes\": [\n              \"\"\n            ],\n            \"mitreTacticNames\": [\n              \"\"\n            ],\n            \"name\": \"\",\n            \"severity\": \"CRITICAL\",\n            \"slug\": \"\",\n            \"state\": \"DEPLOYED\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"sourceType\": \"\",\n          \"status\": \"APPROVED\"\n        }\n      ],\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"2aa960a9-a1f1-43b8-89f5-876415b4cae8"},{"name":"rejectDetectionChangeRequests","id":"a4898cb3-296c-43ac-8171-649a0fc8a462","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      \"<ID HERE>\"\n    ],\n    \"tuningSubtype\": \"ALLOWLIST\",\n    \"tuningTicketRequired\": true,\n    \"tuningType\": \"HIGH_VOLUME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Rejects one or more pending detection change requests, optionally recording the tuning classification for the change.</p>\n<p>Inputs: \nRejectDetectionChangeRequestsInput, </p>\n<p>Return: \nDetectionChangeRequestActionResponse</p>\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":"39b41875-faf9-4a1b-9288-00b93fd92223","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      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"requestType\": \"NEW_RULE\",\n            \"sourceType\": \"\",\n            \"status\": \"APPROVED\"\n          },\n          \"reason\": \"\"\n        }\n      ],\n      \"succeeded\": [\n        {\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"customerDetection\": {\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"deployedLogic\": \"\",\n            \"detectionSource\": \"\",\n            \"displaySlug\": 0,\n            \"enabled\": true,\n            \"id\": \"<ID HERE>\",\n            \"sourceType\": \"\",\n            \"versionNumber\": 0\n          },\n          \"id\": \"<ID HERE>\",\n          \"requestType\": \"NEW_RULE\",\n          \"rule\": {\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"logSourceTypes\": [\n              \"\"\n            ],\n            \"mitreTacticNames\": [\n              \"\"\n            ],\n            \"name\": \"\",\n            \"severity\": \"CRITICAL\",\n            \"slug\": \"\",\n            \"state\": \"DEPLOYED\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"sourceType\": \"\",\n          \"status\": \"APPROVED\"\n        }\n      ],\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"a4898cb3-296c-43ac-8171-649a0fc8a462"}],"id":"4e5a8bb4-c38c-431c-914b-fc89ab61513c","_postman_id":"4e5a8bb4-c38c-431c-914b-fc89ab61513c","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":"4d4ac544-2062-4acc-b49c-849dc510a5d1","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      \"<ID HERE>\"\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":"<p>Retrieves a paginated list of detection change requests, with optional filtering and ordering.</p>\n<p>Inputs: \nString, DetectionChangeRequestFilter, Int, DetectionChangeRequestOrder, </p>\n<p>Return: \nDetectionChangeRequestConnection</p>\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":"3f7168ce-f78e-4194-b151-e640c86d848b","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      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\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":"4d4ac544-2062-4acc-b49c-849dc510a5d1"}],"id":"132359f3-6eb3-4e41-993b-8f4445b9fdab","_postman_id":"132359f3-6eb3-4e41-993b-8f4445b9fdab","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":"51be5847-34fe-4a7f-b9ba-a5e99382d53b","description":"<h2 id=\"detectionchangerequest\">DetectionChangeRequest</h2>\n<p> A request to change a customer detection — to create, enable, disable, or tune it — awaiting or having completed customer review.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>When the change request was created.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td>The customer detection this change request applies to.</td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique identifier of the change request.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>requestType</td>\n<td>The kind of change being requested.</td>\n<td>DetectFeedRequestType</td>\n</tr>\n<tr>\n<td>rule</td>\n<td>The detection rule this change request concerns.</td>\n<td>DetectionRule</td>\n</tr>\n<tr>\n<td>sourceType</td>\n<td>The source that originated this change request.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Current approval status of the change request.</td>\n<td>DetectionChangeRequestStatus</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequestconnection\">DetectionChangeRequestConnection</h2>\n<p> A paginated list of detection change requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>DetectionChangeRequestEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequestedge\">DetectionChangeRequestEdge</h2>\n<p> An edge in a DetectionChangeRequestConnection.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>DetectionChangeRequest</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequestactionresponse\">DetectionChangeRequestActionResponse</h2>\n<p> The result of approving or rejecting one or more detection change requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>failed</td>\n<td>The change requests that could not be actioned, each with a reason.</td>\n<td>DetectionChangeRequestActionError</td>\n</tr>\n<tr>\n<td>succeeded</td>\n<td>The change requests that were successfully actioned.</td>\n<td>DetectionChangeRequest</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequestactionerror\">DetectionChangeRequestActionError</h2>\n<p> A detection change request that could not be approved or rejected, paired with the reason for failure.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>changeRequest</td>\n<td>The change request that failed to be actioned.</td>\n<td>DetectionChangeRequest</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>Human-readable reason the action failed.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequeststatus\">DetectionChangeRequestStatus</h2>\n<p> Approval status of a detection change request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>APPROVED</td>\n<td></td>\n</tr>\n<tr>\n<td>PENDING_CUSTOMER</td>\n<td></td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tuningtype\">TuningType</h2>\n<p> Classification of why a detection is being tuned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HIGH_VOLUME</td>\n<td></td>\n</tr>\n<tr>\n<td>NON_MALICIOUS</td>\n<td></td>\n</tr>\n<tr>\n<td>OPTIMIZATION</td>\n<td></td>\n</tr>\n<tr>\n<td>RULE_CONFIGURATION</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tuningsubtype\">TuningSubtype</h2>\n<p> Specific tuning action applied to a detection.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ALLOWLIST</td>\n<td></td>\n</tr>\n<tr>\n<td>AUTOMATED_THRESHOLD_HIT</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPLEX_EXCLUSION</td>\n<td></td>\n</tr>\n<tr>\n<td>DISABLE_RULE</td>\n<td></td>\n</tr>\n<tr>\n<td>FAULTY_LOGIC</td>\n<td></td>\n</tr>\n<tr>\n<td>FAULTY_SETTINGS</td>\n<td></td>\n</tr>\n<tr>\n<td>FIELD_UPDATE</td>\n<td></td>\n</tr>\n<tr>\n<td>PERFORMANCE_IMPACT</td>\n<td></td>\n</tr>\n<tr>\n<td>REFERENCE_LIST_UPDATE</td>\n<td></td>\n</tr>\n<tr>\n<td>RULE_NOT_APPLICABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>TURN_INTO_REPORT</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATE_VERSION</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequestfilter\">DetectionChangeRequestFilter</h2>\n<p> Filter criteria for listing detection change requests. All fields are optional.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>detectionRuleIds</td>\n<td>Restrict to change requests for the given detection rules. IDs must be DetectionRule node IDs.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>requestTypes</td>\n<td>Restrict to change requests of the given types.</td>\n<td>DetectFeedRequestType</td>\n</tr>\n<tr>\n<td>sourceTypes</td>\n<td>Restrict to change requests originating from the given sources.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>statuses</td>\n<td>Restrict to change requests in the given approval statuses.</td>\n<td>DetectionChangeRequestStatus</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequestorder\">DetectionChangeRequestOrder</h2>\n<p> Ordering for detection change request lists. Defaults: orderBy = CREATED_AT, direction = DESC.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>DetectionChangeRequestOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionchangerequestorderby\">DetectionChangeRequestOrderBy</h2>\n<p> Sortable fields for detection change requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"approvedetectionchangerequestsinput\">ApproveDetectionChangeRequestsInput</h2>\n<p> Input for approving detection change requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>Optional comment recorded with the approval.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>Identifiers of the change requests to approve. Between 1 and 100 ids.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"rejectdetectionchangerequestsinput\">RejectDetectionChangeRequestsInput</h2>\n<p> Input for rejecting detection change requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>Reason for the rejection. Required and must not be blank.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>Identifiers of the change requests to reject. Between 1 and 100 ids.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>tuningSubtype</td>\n<td>The specific tuning action. Required when tuningTicketRequired is true; ignored otherwise.</td>\n<td>TuningSubtype</td>\n</tr>\n<tr>\n<td>tuningTicketRequired</td>\n<td>Whether a tuning ticket is required for this rejection.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>tuningType</td>\n<td>The tuning classification. Required when tuningTicketRequired is true; ignored otherwise.</td>\n<td>TuningType</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"51be5847-34fe-4a7f-b9ba-a5e99382d53b","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":"bac7ea51-61e0-45f9-becc-654d30355a44","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customer ($after: String, $first: Int, $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        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  \"after1\": \"T18w\",\n  \"first1\": 10\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch current customer details</p>\n<p>Return: \nCustomer</p>\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":"2e302a69-067b-4f68-94e8-ba4dc948120e","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customer ($after: String, $first: Int, $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        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  \"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\": \"<ID HERE>\",\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      \"headerSlug\": \"\",\n      \"id\": \"<ID HERE>\",\n      \"name\": \"\",\n      \"residency\": \"\",\n      \"slug\": \"\",\n      \"users\": {\n        \"edges\": [\n          {\n            \"cursor\": \"\",\n            \"node\": {\n              \"email\": \"\",\n              \"fullName\": \"\",\n              \"id\": \"<ID HERE>\",\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":"bac7ea51-61e0-45f9-becc-654d30355a44"},{"name":"customers","id":"7be1e4db-b655-4839-af50-eccaa9259641","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch All Customers.</p>\n<p>Inputs: \nString, CustomerFilter, Int, CustomerFilter, CustomerOrder, </p>\n<p>Return: \nCustomerConnection</p>\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":"c2879b30-dd3f-4121-aaa4-e183697f3b2a","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"notFilter\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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\": \"<ID HERE>\",\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":"7be1e4db-b655-4839-af50-eccaa9259641"}],"id":"d9dc530f-6730-4645-b20a-a8b54f71f43c","_postman_id":"d9dc530f-6730-4645-b20a-a8b54f71f43c","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":"0e0e35a2-0e4b-46a0-acd4-f3fe71325b83","description":"<h2 id=\"customer\">Customer</h2>\n<p> Customer schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessControlPolicies</td>\n<td>Access Control Policies for this customer</td>\n<td>AccessControlPolicyConnection</td>\n</tr>\n<tr>\n<td>active</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>headerSlug</td>\n<td>Slug value added to the x-reliaquest-customer or x-reliaquest-customers header to target a customer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>residency</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>slug</td>\n<td>Slug value added to the GreyMatter url to target a customer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Users in this customer</td>\n<td>UserConnection</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerconnection\">CustomerConnection</h2>\n<p> CustomerConnection schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CustomerEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customeredge\">CustomerEdge</h2>\n<p> CustomerEdge schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Customer</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerorderby\">CustomerOrderBy</h2>\n<p> OrderBy ENUM for Customers</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerorder\">CustomerOrder</h2>\n<p> Customer OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = NAME, direction = ASC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>CustomerOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerfilter\">CustomerFilter</h2>\n<p> Filter for customers</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Filter by the accessGroups associated with the customers</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>Filter by the ids of the customers</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Filter by the name of the customers</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Filter by the pods associated with the customers</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Filter by the roles associated with the customers</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Filter by the users associated with the customers</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0e0e35a2-0e4b-46a0-acd4-f3fe71325b83","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":"5689c3bc-b512-4b2c-92ec-7ae852fa6cb2","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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nDataBy, </p>\n<p>Return: \nDataSourceResponse</p>\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":"47108cc2-81af-424a-9363-7f59eba25fbe","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\": \"<ID HERE>\"\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":"5689c3bc-b512-4b2c-92ec-7ae852fa6cb2"},{"name":"timeBuckets","id":"99b679fc-aa6d-4103-83ee-9bb7e5caebc8","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\": \"<ID HERE>\"\n    },\n    \"endTime\": \"2026-07-01T00:00:00.000Z\",\n    \"query\": \"\",\n    \"startTime\": \"2026-07-01T00:00:00.000Z\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nTimeBucketsFilter, </p>\n<p>Return: \nTimeBucketResponse</p>\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":"568e72d7-431a-43dc-9d4c-09ae64ce8708","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\": \"<ID HERE>\"\n    },\n    \"endTime\": \"2026-07-01T00:00:00.000Z\",\n    \"query\": \"\",\n    \"startTime\": \"2026-07-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-07-01T00:00:00.000Z\",\n          \"startTime\": \"2026-07-01T00:00:00.000Z\"\n        }\n      ],\n      \"unit\": \"DAYS\"\n    }\n  }\n}"}],"_postman_id":"99b679fc-aa6d-4103-83ee-9bb7e5caebc8"}],"id":"4ad4b85b-feb9-4a9a-95f1-5f5f70e48925","_postman_id":"4ad4b85b-feb9-4a9a-95f1-5f5f70e48925","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":"fe9c5484-7ce6-42fb-bed7-c040c389a36a","description":"<h2 id=\"timebucketsfilter\">TimeBucketsFilter</h2>\n<p> Represents Time bucket filter schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>by</td>\n<td>Entity id for which time buckets needs to be calculated</td>\n<td>DataBy</td>\n</tr>\n<tr>\n<td>endTime</td>\n<td>End time for bucket preparation</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>query</td>\n<td>Complex filter on fields</td>\n<td>UqliFilter</td>\n</tr>\n<tr>\n<td>startTime</td>\n<td>Start time for bucket preparation</td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"timebucketresponse\">TimeBucketResponse</h2>\n<p> Represents schema for Time Buckets response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>buckets</td>\n<td></td>\n<td>TimeBucketValue</td>\n</tr>\n<tr>\n<td>unit</td>\n<td>Bucket breakdown time unit</td>\n<td>TemporalUnit</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"timebucketvalue\">TimeBucketValue</h2>\n<p> Represents schema for TimeBucket value</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>count</td>\n<td>Events in bucket timeframe</td>\n<td>Int</td>\n</tr>\n<tr>\n<td>endTime</td>\n<td>Bucket end time</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>startTime</td>\n<td>Bucket start time</td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"databy\">DataBy</h2>\n<p> Input type to get Data by incidentId. (Other types can be added later when supported)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>incidentId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"datasourcefield\">DataSourceField</h2>\n<p> Field in Datasource schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>FieldType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"datasourceschema\">DataSourceSchema</h2>\n<p> Represents Datasource schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fields</td>\n<td></td>\n<td>DataSourceField</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"datasourceresponse\">DataSourceResponse</h2>\n<p> Represent schema for Datasource response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>schema</td>\n<td></td>\n<td>DataSourceSchema</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fe9c5484-7ce6-42fb-bed7-c040c389a36a","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":"732740d6-c82b-4724-8f4e-a582f5a1bc91","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\": \"<ID HERE>\",\n    \"text\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Creates a comment under a given activity log entry.</p>\n<p>Inputs: \nCreateActivityLogEntryCommentInput, </p>\n<p>Return: \nCreateActivityLogEntryCommentResponse</p>\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":"f8c8efff-7527-4459-a99b-820ecbae2f5f","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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n          \"id\": \"<ID HERE>\",\n          \"text\": \"\"\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"id\": \"<ID HERE>\",\n        \"text\": \"\",\n        \"type\": \"PUBLIC\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"732740d6-c82b-4724-8f4e-a582f5a1bc91"}],"id":"dfa96ec6-ef32-4a31-aaba-a7e128f99d69","_postman_id":"dfa96ec6-ef32-4a31-aaba-a7e128f99d69","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":"70122aa3-60a4-435c-bd5e-8580038ed514","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\": \"<ID HERE>\",\n    \"customerDetectionId\": \"<ID HERE>\",\n    \"draftCustomerDetectionId\": \"<ID HERE>\",\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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nID, </p>\n<p>Return: \nCustomerDetection</p>\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":"1e925c6c-9363-4b92-9605-691257b9edd0","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\": \"<ID HERE>\",\n    \"customerDetectionId\": \"<ID HERE>\",\n    \"draftCustomerDetectionId\": \"<ID HERE>\",\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\": \"<ID HERE>\"\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\": \"<ID HERE>\"\n      },\n      \"displaySlug\": 0,\n      \"draftVersion\": {\n        \"id\": \"<ID HERE>\"\n      },\n      \"globalDetection\": {\n        \"connector\": {\n          \"documentationUrl\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"type\": \"ANTIVIRUS\"\n        },\n        \"detectionRule\": {\n          \"description\": \"\",\n          \"id\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n              \"name\": \"\"\n            }\n          ],\n          \"name\": \"\",\n          \"severity\": \"CRITICAL\",\n          \"slug\": \"\",\n          \"state\": \"DEPLOYED\",\n          \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"detectionSource\": \"\",\n        \"displaySlug\": 0,\n        \"id\": \"<ID HERE>\",\n        \"logic\": \"\",\n        \"macros\": \"\",\n        \"sourceType\": \"\",\n        \"suppressionExpression\": \"\",\n        \"timeRange\": \"\",\n        \"versionNumber\": 0\n      },\n      \"id\": \"<ID HERE>\",\n      \"versionNumber\": 0\n    }\n  }\n}"}],"_postman_id":"70122aa3-60a4-435c-bd5e-8580038ed514"},{"name":"customerDetectionActivityLogEntries","id":"7aa57226-1c24-4282-912c-90c534a5d468","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\": \"<ID HERE>\",\n    \"customerDetectionId\": \"<ID HERE>\",\n    \"draftCustomerDetectionId\": \"<ID HERE>\",\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":"<p>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.</p>\n<p>Inputs: \nString, CustomerDetectionActivityLogFilter, Int, CustomerDetectionActivityLogOrder, </p>\n<p>Return: \nCustomerDetectionActivityLogEntryConnection</p>\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":"f585ab80-1789-495b-961d-abd7a45b18e4","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\": \"<ID HERE>\",\n    \"customerDetectionId\": \"<ID HERE>\",\n    \"draftCustomerDetectionId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\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":"7aa57226-1c24-4282-912c-90c534a5d468"},{"name":"customerDetectionActivityLogEntry","id":"3eec47e1-df54-4c26-91e2-337dd829cd94","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\": \"<ID HERE>\"\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"CREATED_AT\"\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch activity log entry by its ID</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nCustomerDetectionActivityLogEntry</p>\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":"157a32af-7419-4308-9d3f-7e21e16e4e6f","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\": \"<ID HERE>\"\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"CREATED_AT\"\n  },\n  \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"createdBy\": {\n        \"id\": \"<ID HERE>\"\n      },\n      \"customer\": {\n        \"id\": \"<ID HERE>\"\n      },\n      \"customerDetection\": {\n        \"id\": \"<ID HERE>\"\n      },\n      \"draftCustomerDetection\": {\n        \"id\": \"<ID HERE>\"\n      },\n      \"id\": \"<ID HERE>\",\n      \"text\": \"\"\n    }\n  }\n}"}],"_postman_id":"3eec47e1-df54-4c26-91e2-337dd829cd94"},{"name":"customerDetections","id":"2653c460-7905-42bb-92bf-4cf4a8fa1711","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"detectionRuleIds\": [\n      \"<ID HERE>\"\n    ],\n    \"displaySlugs\": [\n      0\n    ],\n    \"enabled\": true,\n    \"ineligible\": true,\n    \"integrationIds\": [\n      \"<ID HERE>\"\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":"<p>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.</p>\n<p>Inputs: \nString, CustomerDetectionFilter, Int, CustomerDetectionOrder, </p>\n<p>Return: \nCustomerDetectionConnection</p>\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":"3139b639-bfd0-427c-a307-d8e0c4f846e3","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"detectionRuleIds\": [\n      \"<ID HERE>\"\n    ],\n    \"displaySlugs\": [\n      0\n    ],\n    \"enabled\": true,\n    \"ineligible\": true,\n    \"integrationIds\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"deployedLogic\": \"\",\n            \"detectionSource\": \"\",\n            \"displaySlug\": 0,\n            \"enabled\": true,\n            \"id\": \"<ID HERE>\",\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":"2653c460-7905-42bb-92bf-4cf4a8fa1711"},{"name":"detectionRules","id":"445f1674-2555-48ae-bc28-51cdf3c199a8","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\": \"<ID HERE>\",\n      \"reliaQuest\": true\n    },\n    \"deployedLocations\": {\n      \"connectorId\": \"<ID HERE>\",\n      \"digitalRiskProtection\": true,\n      \"greymatter\": true\n    },\n    \"endDate\": \"2026-07-01T00:00:00.000Z\",\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"killchainPhases\": [\n      \"\"\n    ],\n    \"mitreTacticIds\": [\n      \"<ID HERE>\"\n    ],\n    \"mitreTacticNames\": [\n      \"\"\n    ],\n    \"mitreTechniqueIds\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n    \"status\": \"DEPLOYED\",\n    \"statuses\": [\n      \"DEPLOYED\"\n    ],\n    \"technologies\": {\n      \"connectorId\": \"<ID HERE>\",\n      \"digitalLandscape\": true\n    }\n  },\n  \"first\": 10\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Retrieves a list of detection rules, with options for filtering, ordering, and pagination.</p>\n<p>Inputs: \nString, DetectionRuleOrder, DetectionRuleFilter, Int, </p>\n<p>Return: \nDetectionRuleConnection</p>\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":"2ed711d3-93ad-4a6b-89bf-d23f4f2b5bb3","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\": \"<ID HERE>\",\n      \"reliaQuest\": true\n    },\n    \"deployedLocations\": {\n      \"connectorId\": \"<ID HERE>\",\n      \"digitalRiskProtection\": true,\n      \"greymatter\": true\n    },\n    \"endDate\": \"2026-07-01T00:00:00.000Z\",\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"killchainPhases\": [\n      \"\"\n    ],\n    \"mitreTacticIds\": [\n      \"<ID HERE>\"\n    ],\n    \"mitreTacticNames\": [\n      \"\"\n    ],\n    \"mitreTechniqueIds\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n    \"status\": \"DEPLOYED\",\n    \"statuses\": [\n      \"DEPLOYED\"\n    ],\n    \"technologies\": {\n      \"connectorId\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n            \"logSourceTypes\": [\n              \"\"\n            ],\n            \"mitreTacticNames\": [\n              \"\"\n            ],\n            \"name\": \"\",\n            \"severity\": \"CRITICAL\",\n            \"slug\": \"\",\n            \"state\": \"DEPLOYED\",\n            \"updatedAt\": \"2026-07-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":"445f1674-2555-48ae-bc28-51cdf3c199a8"},{"name":"draftCustomerDetection","id":"2a0d6586-503e-44f1-831e-fa7817e541c9","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\": \"<ID HERE>\",\n    \"customerDetectionId\": \"<ID HERE>\",\n    \"draftCustomerDetectionId\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n    \"publishedVersionId\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nDraftCustomerDetectionBy, </p>\n<p>Return: \nDraftCustomerDetection</p>\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":"4e91ecfb-b675-4096-9f02-e8a995676210","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\": \"<ID HERE>\",\n    \"customerDetectionId\": \"<ID HERE>\",\n    \"draftCustomerDetectionId\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n    \"publishedVersionId\": \"<ID HERE>\"\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\": \"<ID HERE>\"\n      },\n      \"displaySlug\": 0,\n      \"globalDetection\": {\n        \"connector\": {\n          \"documentationUrl\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"type\": \"ANTIVIRUS\"\n        },\n        \"detectionRule\": {\n          \"description\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"logSourceTypes\": [\n            \"\"\n          ],\n          \"mitreTacticNames\": [\n            \"\"\n          ],\n          \"name\": \"\",\n          \"severity\": \"CRITICAL\",\n          \"slug\": \"\",\n          \"state\": \"DEPLOYED\",\n          \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"detectionSource\": \"\",\n        \"displaySlug\": 0,\n        \"id\": \"<ID HERE>\",\n        \"logic\": \"\",\n        \"macros\": \"\",\n        \"sourceType\": \"\",\n        \"suppressionExpression\": \"\",\n        \"timeRange\": \"\",\n        \"versionNumber\": 0\n      },\n      \"id\": \"<ID HERE>\",\n      \"publishedVersion\": {\n        \"id\": \"<ID HERE>\"\n      }\n    }\n  }\n}"}],"_postman_id":"2a0d6586-503e-44f1-831e-fa7817e541c9"}],"id":"5c7ecb75-7c3d-4c9a-a09c-fefb1020b7ee","_postman_id":"5c7ecb75-7c3d-4c9a-a09c-fefb1020b7ee","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":"51024f9d-6ad6-4728-bcc2-7e2ee9095798","description":"<h2 id=\"detectionruleconnection\">DetectionRuleConnection</h2>\n<p> Represents a paginated list of detection rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>DetectionRuleEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionruleedge\">DetectionRuleEdge</h2>\n<p> An edge in a connection, representing a single detection rule.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>DetectionRule</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionrule\">DetectionRule</h2>\n<p> Represent a detection rule.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>logSourceTypes</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>logic</td>\n<td></td>\n<td>DetectionRuleLogic</td>\n</tr>\n<tr>\n<td>mitreTacticNames [DEPRECATED]</td>\n<td>[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.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>mitreTacticTechniques</td>\n<td></td>\n<td>MitreTacticTechniques</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>Severity</td>\n</tr>\n<tr>\n<td>slug</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Current deployment state of the rule.</td>\n<td>DetectionRuleStatus</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"mitretactictechniques\">MitreTacticTechniques</h2>\n<p> Represent a MITRE tactic techniques associated.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>techniques</td>\n<td></td>\n<td>MitreTechnique</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"mitretechnique\">MitreTechnique</h2>\n<p> Represent a MITRE technique.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionrulelogic\">DetectionRuleLogic</h2>\n<p> Logic details for a detection rule, including severity and version.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>logic</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>Severity</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionrulefilter\">DetectionRuleFilter</h2>\n<p> Filters for querying detection rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>authors</td>\n<td></td>\n<td>DetectionRuleAuthorFilter</td>\n</tr>\n<tr>\n<td>deployedLocations</td>\n<td></td>\n<td>DetectionRuleDeployedFilter</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>ids</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>killchainPhases</td>\n<td>Filter by kill chain phases.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>mitreTacticIds</td>\n<td>Filter by MITRE tactic global IDs.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>mitreTacticNames</td>\n<td>Filter by MITRE tactic names.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>mitreTechniqueIds</td>\n<td>Filter by MITRE technique global IDs.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>mitreTechniqueNames</td>\n<td>Filter by MITRE technique names.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>names</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskScenarioTags</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>search</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>severities</td>\n<td></td>\n<td>Severity</td>\n</tr>\n<tr>\n<td>sourceTypes</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>DetectionRuleStatus</td>\n</tr>\n<tr>\n<td>statuses</td>\n<td>Filter by multiple deployment statuses.</td>\n<td>DetectionRuleStatus</td>\n</tr>\n<tr>\n<td>technologies</td>\n<td></td>\n<td>DetectionRuleTechnologyFilter</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionruleauthorfilter\">DetectionRuleAuthorFilter</h2>\n<p> Filter by authoring source for detection rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectorId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>reliaQuest</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionruletechnologyfilter\">DetectionRuleTechnologyFilter</h2>\n<p> Filter by technology type for detection rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectorId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>digitalLandscape</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionruledeployedfilter\">DetectionRuleDeployedFilter</h2>\n<p> Filter by deployment location for detection rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectorId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>digitalRiskProtection</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>greymatter</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionrulelogicby\">DetectionRuleLogicBy</h2>\n<p> Specifies how to retrieve logic for a detection rule.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deployed</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>latest</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionruleorderby\">DetectionRuleOrderBy</h2>\n<p> Criteria for ordering detection rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td></td>\n</tr>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>SEVERITY</td>\n<td></td>\n</tr>\n<tr>\n<td>SLUG</td>\n<td></td>\n</tr>\n<tr>\n<td>STATE</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionruleorder\">DetectionRuleOrder</h2>\n<p> Specifies ordering for detection rule queries.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>DetectionRuleOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionrulestatus\">DetectionRuleStatus</h2>\n<p> Status indicating whether a detection rule is deployed.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DEPLOYED</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_DEPLOYED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"severity\">Severity</h2>\n<p> Severity levels for detection rules. Defaults to LOW if null.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionfilter\">CustomerDetectionFilter</h2>\n<p> Filters for fetching customer detections</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>detectionRuleIds</td>\n<td>ID of DetectionRule associated with the detection</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>displaySlugs</td>\n<td>Numeric \"slug\" which is displayed in UI for detection</td>\n<td>Long</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td>True corresponds to \"Deployed\" status and False corresponds to \"Not deployed\"</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>ineligible</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>integrationIds</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>sourceTypes</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionorder\">CustomerDetectionOrder</h2>\n<p> CustomerDetectionOrder OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>CustomerDetectionOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionorderby\">CustomerDetectionOrderBy</h2>\n<p> Sortable fields for customer detections</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>DISPLAY_SLUG</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createactivitylogentrycommentinput\">CreateActivityLogEntryCommentInput</h2>\n<p> Input type used when creating an activity log comment.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogEntryId</td>\n<td>ID reference to a specific activity log entry where the comment should be added.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td>The text to be added as a user comment.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createactivitylogentrycommentresponse\">CreateActivityLogEntryCommentResponse</h2>\n<p> Response type used when creating an activity log comment.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>Provides the underlying created activity log comment.</td>\n<td>CustomerDetectionActivityLogEntryComment</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"draftcustomerdetectionby\">DraftCustomerDetectionBy</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>displaySlug</td>\n<td>Shared human readable ID of draft and published (if not new draft) detection</td>\n<td>Long</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID reference to a specific draft for a customer detection</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>publishedVersionId</td>\n<td>ID of existing published version of customer detection</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogfilter\">CustomerDetectionActivityLogFilter</h2>\n<p> Customer detection activity log Filter input type to filter out activity log entries.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType [DEPRECATED]</td>\n<td>[DEPRECATED: Use activityLogTypes instead. Since 2025-03-13.] Filter by the type of activity log entry</td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>activityLogTypes</td>\n<td>Filter by multiple types of activity log entry</td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>bulkJobId</td>\n<td>Filter by Detection Bulk Job ID</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>customerDetectionId</td>\n<td>Filter by Customer Detection ID (long lived ID that's consistent between versions).</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>draftCustomerDetectionId</td>\n<td>Filter by Draft customer detection ID</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isBulk</td>\n<td>Used 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 precedence</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>parentCustomerId [DEPRECATED]</td>\n<td>[DEPRECATED: No longer used - parent detection is auto-discovered.] No longer needed as the parent detection is auto-discovered.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionconnection\">CustomerDetectionConnection</h2>\n<p> CustomerDetection connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CustomerDetectionEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"draftcustomerdetectionconnection\">DraftCustomerDetectionConnection</h2>\n<p> Draft Customer Detection connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>DraftCustomerDetectionEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionedge\">CustomerDetectionEdge</h2>\n<p> CustomerDetection edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"draftcustomerdetectionedge\">DraftCustomerDetectionEdge</h2>\n<p> DraftCustomerDetection edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetection\">CustomerDetection</h2>\n<p> Represents a detection rule deployed to customer technology</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogEntries</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>deployedLogic</td>\n<td>Final 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.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>detectionSource</td>\n<td>Null for GreyMatter Detect detections, which are not tied to a single detection source.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>displaySlug</td>\n<td>Human readable ID for Customer detection that is shared by draft and published versions)</td>\n<td>Long</td>\n</tr>\n<tr>\n<td>draftVersion</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>globalDetection</td>\n<td></td>\n<td>GlobalDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID of this customer detection</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>sourceType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>versionNumber</td>\n<td></td>\n<td>Long</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"globaldetection\">GlobalDetection</h2>\n<p> Represents a global template for rules which can be deployed to multiple customers</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connector</td>\n<td></td>\n<td>Connector</td>\n</tr>\n<tr>\n<td>detectionRule</td>\n<td></td>\n<td>DetectionRule</td>\n</tr>\n<tr>\n<td>detectionSource</td>\n<td>Null for GreyMatter Detect templates, which are not tied to a single detection source.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>displaySlug</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>logic</td>\n<td>Null for GreyMatter Detect templates, whose logic is defined as a structured query rather than raw logic text.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>macros</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>suppressionExpression</td>\n<td>Null for GreyMatter Detect templates.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>timeRange</td>\n<td>Null for GreyMatter Detect templates.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>versionNumber</td>\n<td></td>\n<td>Long</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"draftcustomerdetection\">DraftCustomerDetection</h2>\n<p> Customer detection that is in draft state</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogEntries</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryConnection</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>detectionSource</td>\n<td>Null for GreyMatter Detect detections, which are not tied to a single detection source.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>displaySlug</td>\n<td>Human readable ID for Customer detection that is shared by draft and published versions)</td>\n<td>Long</td>\n</tr>\n<tr>\n<td>globalDetection</td>\n<td></td>\n<td>GlobalDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Global ID of draft detection</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>publishedVersion</td>\n<td>Existing published version of the customer detection if this is an update to an existing version</td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>sourceType</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentryconnection\">CustomerDetectionActivityLogEntryConnection</h2>\n<p> CustomerDetectionActivityLogEntry connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentryedge\">CustomerDetectionActivityLogEntryEdge</h2>\n<p> CustomerDetectionActivityLogEntry edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntry</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentry\">CustomerDetectionActivityLogEntry</h2>\n<p> Base interface for various types of customer detection activity log entry</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td>Optional, customer detection this activity log entry is associated with. Empty if detection is in draft state</td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td>Optional, customer detection draft this activity log entry is associated with. Empty if detection is in published state</td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td>Top level comment on the activity</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogorder\">CustomerDetectionActivityLogOrder</h2>\n<p> CustomerDetectionActivityLogOrder OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>CustomerDetectionActivityLogOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogorderby\">CustomerDetectionActivityLogOrderBy</h2>\n<p> Order by ENUM for customer detection activity log entries</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentrycommentfilter\">CustomerDetectionActivityLogEntryCommentFilter</h2>\n<p> Filter class for comments on activity log entries</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>types</td>\n<td>Comment type to be filtered. (Required) Will be set to default if not explicitly passed.</td>\n<td>CustomerDetectionActivityLogEntryCommentType</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogtype\">CustomerDetectionActivityLogType</h2>\n<p> Represents types of customer detection activity log entries</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BULK_NEW_RULES_DEPLOYED</td>\n<td>Multiple new rules have been deployed in bulk.</td>\n</tr>\n<tr>\n<td>NEW_RULE_DEPLOYED</td>\n<td>A new rule has been deployed.</td>\n</tr>\n<tr>\n<td>NEW_RULE_REQUEST</td>\n<td>A new rule has been requested.</td>\n</tr>\n<tr>\n<td>REQUEST_APPROVED</td>\n<td>The request has been approved.</td>\n</tr>\n<tr>\n<td>REQUEST_REJECTED</td>\n<td>The request has been rejected.</td>\n</tr>\n<tr>\n<td>RULES_MIGRATED_DETECT_PUSH</td>\n<td>One or more rules migrated to customer technology.</td>\n</tr>\n<tr>\n<td>RULES_MIGRATED_DETECT_QUERY</td>\n<td>One or more rules migrated to GreyMatter API query.</td>\n</tr>\n<tr>\n<td>RULE_DISABLED</td>\n<td>A rule has been disabled.</td>\n</tr>\n<tr>\n<td>RULE_DISABLE_REQUEST</td>\n<td>A rule has been requested to be disabled.</td>\n</tr>\n<tr>\n<td>RULE_ENABLED</td>\n<td>A rule has been enabled.</td>\n</tr>\n<tr>\n<td>RULE_ENABLE_REQUEST</td>\n<td>A rule has been requested to be enabled.</td>\n</tr>\n<tr>\n<td>TUNING_UPDATED</td>\n<td>A tuning update has been applied.</td>\n</tr>\n<tr>\n<td>TUNING_UPDATE_REQUEST</td>\n<td>A tuning update has been requested.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"newcustomerdetectiondeployedactivitylogentry\">NewCustomerDetectionDeployedActivityLogEntry</h2>\n<p> Represents an activity log for a newly deployed customer detection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>bulkJobOpt</td>\n<td></td>\n<td>DetectionBulkJob</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>isIneligible</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>newDeployedLogic</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>testAlertsVolume</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>testSearchWindow</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>testingDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>testingStatus</td>\n<td></td>\n<td>DetectionTestingValidationStatus</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"bulknewcustomerdetectiondeployedactivitylogentry\">BulkNewCustomerDetectionDeployedActivityLogEntry</h2>\n<p> Represents an activity log for a customer detection deployed via bulk deployment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogEntries</td>\n<td>Return nested activity log entries that were part of the bulk deployment job</td>\n<td>CustomerDetectionActivityLogEntryConnection</td>\n</tr>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>bulkJob</td>\n<td></td>\n<td>DetectionBulkJob</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"newcustomerdetectionrequestactivitylogentry\">NewCustomerDetectionRequestActivityLogEntry</h2>\n<p> Represents an activity log for a customer detection deployed via bulk deployment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>bulkJobOpt</td>\n<td></td>\n<td>DetectionBulkJob</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>newDeployedLogic</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>testAlertsVolume</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>testSearchWindow</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>testingDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>testingStatus</td>\n<td></td>\n<td>DetectionTestingValidationStatus</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionrequestrejectedactivitylogentry\">CustomerDetectionRequestRejectedActivityLogEntry</h2>\n<p> Represents an activity log for a customer detection update request that was rejected</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>bulkJobOpt</td>\n<td></td>\n<td>DetectionBulkJob</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>requestType</td>\n<td></td>\n<td>DetectFeedRequestType</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tuningTicket</td>\n<td></td>\n<td>Incident</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectiontestingvalidationstatus\">DetectionTestingValidationStatus</h2>\n<p> Results status of detection automated rules testing job</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CUSTOM</td>\n<td></td>\n</tr>\n<tr>\n<td>ERROR</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>NO_RESULT</td>\n<td></td>\n</tr>\n<tr>\n<td>SUCCESS</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionrequestapprovedactivitylogentry\">CustomerDetectionRequestApprovedActivityLogEntry</h2>\n<p> Represents an activity log for a customer detection update request that was approved</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>bulkJobOpt</td>\n<td></td>\n<td>DetectionBulkJob</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>requestType</td>\n<td></td>\n<td>DetectFeedRequestType</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionenabledactivitylogentry\">CustomerDetectionEnabledActivityLogEntry</h2>\n<p> Represents an activity log for a disabled customer detection that was re-enabled</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectiondisabledactivitylogentry\">CustomerDetectionDisabledActivityLogEntry</h2>\n<p> Represents an activity log for a customer detection that was disabled</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionenablerequestactivitylogentry\">CustomerDetectionEnableRequestActivityLogEntry</h2>\n<p> Represents an activity log for a request to enable customer detection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectiondisablerequestactivitylogentry\">CustomerDetectionDisableRequestActivityLogEntry</h2>\n<p> Represents an activity log for a request to disable customer detection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectiontuningupdatedactivitylogentry\">CustomerDetectionTuningUpdatedActivityLogEntry</h2>\n<p> Represents an activity log for a request to disable customer detection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>newDeployedLogic</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>newTestAlertsVolume</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>newTestSearchWindow</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>newTestingDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>newTestingStatus</td>\n<td></td>\n<td>DetectionTestingValidationStatus</td>\n</tr>\n<tr>\n<td>oldDeployedLogic</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>oldTestAlertsVolume</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>oldTestSearchWindow</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>oldTestingDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>oldTestingStatus</td>\n<td></td>\n<td>DetectionTestingValidationStatus</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectiontuningupdatedrequestactivitylogentry\">CustomerDetectionTuningUpdatedRequestActivityLogEntry</h2>\n<p> Represents an activity log for a request to disable customer detection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isEmergency</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>newDeployedLogic</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>newTestAlertsVolume</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>newTestSearchWindow</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>newTestingDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>newTestingStatus</td>\n<td></td>\n<td>DetectionTestingValidationStatus</td>\n</tr>\n<tr>\n<td>oldDeployedLogic</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>oldTestAlertsVolume</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>oldTestSearchWindow</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>oldTestingDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>oldTestingStatus</td>\n<td></td>\n<td>DetectionTestingValidationStatus</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectfeedrequesttype\">DetectFeedRequestType</h2>\n<p> Types of Detect Feed Request</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NEW_RULE</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>RULE_DISABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>RULE_ENABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>TUNING_UPDATE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentrycommentorder\">CustomerDetectionActivityLogEntryCommentOrder</h2>\n<p> CustomerDetectionActivityLogOrder OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentrycommentorderby\">CustomerDetectionActivityLogEntryCommentOrderBy</h2>\n<p> Order by ENUM for customer detection activity log entries</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentrycommentconnection\">CustomerDetectionActivityLogEntryCommentConnection</h2>\n<p> CustomerDetectionActivityLogEntryComment connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentrycommentedge\">CustomerDetectionActivityLogEntryCommentEdge</h2>\n<p> CustomerDetectionActivityLogEntryComment edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryComment</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentrycomment\">CustomerDetectionActivityLogEntryComment</h2>\n<p> A comment that can be added to an activity log entry</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogEntry</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntry</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionactivitylogentrycommenttype\">CustomerDetectionActivityLogEntryCommentType</h2>\n<p> Customer Detection Activity Log Comment Types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PUBLIC</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectiontestingresults\">CustomerDetectionTestingResults</h2>\n<p> Results from automated rules testing for a customer detection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"draftdetectiontestingresults\">DraftDetectionTestingResults</h2>\n<p> Aggregated Results from automated rules testing</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionbulkjob\">DetectionBulkJob</h2>\n<p> Bulk job for a customer detection deployed via bulk deploy</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>DetectionBulkJobStatus</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionbulkjobstatus\">DetectionBulkJobStatus</h2>\n<p> Status of a bulk detections deployment job</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CANCELLED</td>\n<td></td>\n</tr>\n<tr>\n<td>CANCELLED_AND_DELETED</td>\n<td></td>\n</tr>\n<tr>\n<td>CANCELLED_AND_DISABLED</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPLETED_NEEDS_ATTENTION</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPLETED_SUCCESSFULLY</td>\n<td></td>\n</tr>\n<tr>\n<td>FAILED</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerdetectionsmigrateddetectpushactivitylogentry\">CustomerDetectionsMigratedDetectPushActivityLogEntry</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityLogType</td>\n<td></td>\n<td>CustomerDetectionActivityLogType</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>CustomerDetectionActivityLogEntryCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>detectionMigrationJobs</td>\n<td></td>\n<td>DetectionMigrationJob</td>\n</tr>\n<tr>\n<td>draftCustomerDetection</td>\n<td></td>\n<td>DraftCustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionmigrationjob\">DetectionMigrationJob</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>customerDetection</td>\n<td></td>\n<td>CustomerDetection</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>jobStatus</td>\n<td></td>\n<td>DetectionMigrationJobStatus</td>\n</tr>\n<tr>\n<td>reason</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detectionmigrationjobstatus\">DetectionMigrationJobStatus</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CANCELED</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPLETED</td>\n<td></td>\n</tr>\n<tr>\n<td>FAILED</td>\n<td></td>\n</tr>\n<tr>\n<td>RUNNING</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"51024f9d-6ad6-4728-bcc2-7e2ee9095798","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":"17f63757-0a1c-41a8-93d6-438affb1147d","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\": \"<ID HERE>\",\n    \"discoverTaskId\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Assign a Discover Task</p>\n<p>Inputs: \nAssignDiscoverTaskInput, </p>\n<p>Return: \nDiscoverTaskResponse</p>\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":"d47e4f91-2f41-4c7f-acfa-400646df6379","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\": \"<ID HERE>\",\n    \"discoverTaskId\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"id\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"17f63757-0a1c-41a8-93d6-438affb1147d"},{"name":"closeDiscoverTask","id":"61bc49b9-dd8b-4e50-a6b3-1a8c1a687d30","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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Close Discover Task</p>\n<p>Inputs: \nCloseDiscoverTaskInput, </p>\n<p>Return: \nDiscoverTaskResponse</p>\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":"5f6f24a3-eb42-45a9-aa0f-d0a907bb2729","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\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"state\": \"CLOSED\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"61bc49b9-dd8b-4e50-a6b3-1a8c1a687d30"},{"name":"updateDiscoverTaskState","id":"dc8452f3-b9cd-4dcf-b04d-592256687a44","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\": \"<ID HERE>\",\n    \"state\": \"CLOSED\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update Discover Task's state</p>\n<p>Inputs: \nUpdateDiscoverTaskStateInput, </p>\n<p>Return: \nDiscoverTaskResponse</p>\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":"e6cfeec1-dc92-4464-a3f2-f4afd19832c4","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"state\": \"CLOSED\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"dc8452f3-b9cd-4dcf-b04d-592256687a44"}],"id":"0c6287b4-7207-4991-b109-eb3dce4bfbe6","_postman_id":"0c6287b4-7207-4991-b109-eb3dce4bfbe6","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":"91fe7a8f-f37b-4117-ab27-129fb5172e65","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, $after6: String, $first6: Int, $after7: String, $first7: Int, $after8: String, $first8: Int, $after9: String, $filter5: IntegrationActivityLogFilter, $first9: Int, $order5: IntegrationActivityLogOrder, $after10: String, $first10: Int, $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            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                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                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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after4\": \"T18w\",\n  \"filter4\": {\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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  \"after6\": \"T18w\",\n  \"first6\": 10,\n  \"after7\": \"T18w\",\n  \"first7\": 10,\n  \"after8\": \"T18w\",\n  \"first8\": 10,\n  \"after9\": \"T18w\",\n  \"filter5\": {\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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  \"after11\": \"T18w\",\n  \"first11\": 10,\n  \"by\": {\n    \"id\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch Discover Case by id</p>\n<p>Inputs: \nDiscoverTaskBy, </p>\n<p>Return: \nDiscoverTask</p>\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":"444d2a7f-bad4-48cb-9ef3-39ab2a3ddd79","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, $after6: String, $first6: Int, $after7: String, $first7: Int, $after8: String, $first8: Int, $after9: String, $filter5: IntegrationActivityLogFilter, $first9: Int, $order5: IntegrationActivityLogOrder, $after10: String, $first10: Int, $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            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                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                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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after4\": \"T18w\",\n  \"filter4\": {\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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  \"after6\": \"T18w\",\n  \"first6\": 10,\n  \"after7\": \"T18w\",\n  \"first7\": 10,\n  \"after8\": \"T18w\",\n  \"first8\": 10,\n  \"after9\": \"T18w\",\n  \"filter5\": {\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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  \"after11\": \"T18w\",\n  \"first11\": 10,\n  \"by\": {\n    \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\"\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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"text\": \"\",\n              \"updatedAt\": \"2026-07-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-07-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        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\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          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\",\n          \"users\": {\n            \"totalCount\": 0\n          }\n        },\n        \"description\": \"\",\n        \"exposure\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"mitigations\": \"\",\n        \"mitreTacticTechniques\": [\n          {\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"techniques\": [\n              {\n                \"id\": \"<ID HERE>\",\n                \"name\": \"\"\n              }\n            ]\n          }\n        ],\n        \"type\": \"CLOUD_MISCONFIGURATION\"\n      },\n      \"id\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"type\": \"ANTIVIRUS\"\n          },\n          \"enabled\": true,\n          \"id\": \"<ID HERE>\",\n          \"lastConnectionTest\": \"2026-07-01T00:00:00.000Z\",\n          \"lastUsed\": \"2026-07-01T00:00:00.000Z\",\n          \"name\": \"\",\n          \"sharedBy\": {\n            \"accessControlPolicies\": {\n              \"totalCount\": 0\n            },\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\"\n    }\n  }\n}"}],"_postman_id":"91fe7a8f-f37b-4117-ab27-129fb5172e65"},{"name":"discoverTasks","id":"1aa2cf57-8850-4a8c-b428-505ffd7e8428","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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":"<p>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.</p>\n<p>Inputs: \nString, DiscoverTaskFilter, Int, DiscoverTaskOrder, </p>\n<p>Return: \nDiscoverTaskConnection</p>\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":"a1bbf6ec-57be-46bd-8345-d072859d2fb2","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\",\n              \"serviceNowId\": \"\"\n            },\n            \"closeCode\": \"ACCEPTED_RISK\",\n            \"comments\": {\n              \"totalCount\": 0\n            },\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"customer\": {\n              \"active\": true,\n              \"headerSlug\": \"\",\n              \"id\": \"<ID HERE>\",\n              \"name\": \"\",\n              \"residency\": \"\",\n              \"slug\": \"\"\n            },\n            \"exposure\": {\n              \"aiSummary\": \"\",\n              \"description\": \"\",\n              \"exposure\": \"\",\n              \"id\": \"<ID HERE>\",\n              \"mitigations\": \"\",\n              \"type\": \"CLOUD_MISCONFIGURATION\"\n            },\n            \"id\": \"<ID HERE>\",\n            \"integrations\": [\n              {\n                \"connectionStatus\": \"CONNECTED\",\n                \"enabled\": true,\n                \"id\": \"<ID HERE>\",\n                \"lastConnectionTest\": \"2026-07-01T00:00:00.000Z\",\n                \"lastUsed\": \"2026-07-01T00:00:00.000Z\",\n                \"name\": \"\"\n              }\n            ],\n            \"severity\": \"CRITICAL\",\n            \"state\": \"CLOSED\",\n            \"title\": \"\",\n            \"updatedAt\": \"2026-07-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":"1aa2cf57-8850-4a8c-b428-505ffd7e8428"}],"id":"b3c288b1-b3fe-45ea-a93a-8a528dc899b9","_postman_id":"b3c288b1-b3fe-45ea-a93a-8a528dc899b9","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":"3a16592e-95e4-44a5-a5b7-ab38351c044c","description":"<h2 id=\"discovertaskby\">DiscoverTaskBy</h2>\n<p> Retreive a Discover Task by one and only one of the below</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The unique identifier of the Discover Task</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskfilter\">DiscoverTaskFilter</h2>\n<p> Discover Task Filter input type to filter out Discover Tasks</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>search</td>\n<td>Search string to search from Discover Task's Title/Summary</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskorder\">DiscoverTaskOrder</h2>\n<p> Discover Task OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>DiscoverTaskOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskorderby\">DiscoverTaskOrderBy</h2>\n<p> Order by ENUM for Discover Task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>SEVERITY</td>\n<td></td>\n</tr>\n<tr>\n<td>STATE</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskseverity\">DiscoverTaskSeverity</h2>\n<p> Discover Task Severity</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>INFORMATIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskstate\">DiscoverTaskState</h2>\n<p> Discover Task State</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOSED</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>NEW</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskclosecode\">DiscoverTaskCloseCode</h2>\n<p> Discover Task Close Code</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCEPTED_RISK</td>\n<td></td>\n</tr>\n<tr>\n<td>MITIGATED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertask\">DiscoverTask</h2>\n<p> Discover Task schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>Activity Log connection. This connection is pageable, sortable, and filterable</td>\n<td>DiscoverTaskActivityLogConnection</td>\n</tr>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>DiscoverTaskCloseCode</td>\n</tr>\n<tr>\n<td>comments</td>\n<td>Comment connection. This connection is pageable, sortable, and filterable</td>\n<td>DiscoverTaskCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>exposure</td>\n<td></td>\n<td>DiscoverExposure</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>integrations</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>DiscoverTaskSeverity</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>DiscoverTaskState</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskresponse\">DiscoverTaskResponse</h2>\n<p> The DiscoverTaskResponse type is used to return the result of a Discover Task related operation.</p>\n<p>Fields:</p>\n<ul>\n<li>success: Indicates whether the operation was successful.</li>\n<li>case: Provides the resulting updated Discover Task (optional, might be null if no case is associated).<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>discoverTask</td>\n<td>Resulting updated Discover Task (optional)</td>\n<td>DiscoverTask</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div></li>\n</ul>\n<h2 id=\"discovertaskedge\">DiscoverTaskEdge</h2>\n<p> Discover Task Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>DiscoverTask</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskconnection\">DiscoverTaskConnection</h2>\n<p> Discover Task Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>DiscoverTaskEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discoverexposure\">DiscoverExposure</h2>\n<p> Discover Exposure schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aiSummary</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>exposure</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>mitigations</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>mitreTacticTechniques</td>\n<td></td>\n<td>MitreTacticTechniques</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>DiscoverExposureType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discoverexposuretype\">DiscoverExposureType</h2>\n<p> Discover Exposure Type ENUM</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOUD_MISCONFIGURATION</td>\n<td></td>\n</tr>\n<tr>\n<td>COVERAGE_GAP</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABILITY</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskactivityfilter\">DiscoverTaskActivityFilter</h2>\n<p> Discover Task Activity Log Filter input</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Activity log creation time range (Optional)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskactivityorder\">DiscoverTaskActivityOrder</h2>\n<p> Discover Task Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderByList = [CREATED_AT], direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderByList</td>\n<td></td>\n<td>DiscoverTaskActivityOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskactivityorderby\">DiscoverTaskActivityOrderBy</h2>\n<p> Order By ENUM for Discover Task Activity Log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>FIELD</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskactivitylogentry\">DiscoverTaskActivityLogEntry</h2>\n<p> Discover Task Activity Log Entry schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>UserChanged</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>DiscoverTaskCloseCodeChanged</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>DiscoverTaskSeverityChanged</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>DiscoverTaskStateChanged</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskactivitylogedge\">DiscoverTaskActivityLogEdge</h2>\n<p> Discover Task Activity Log Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>DiscoverTaskActivityLogEntry</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskactivitylogconnection\">DiscoverTaskActivityLogConnection</h2>\n<p> Discover Task Activity Log Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>DiscoverTaskActivityLogEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskstatechanged\">DiscoverTaskStateChanged</h2>\n<p> Discover Task State Change for activity log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>DiscoverTaskState</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>DiscoverTaskState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskseveritychanged\">DiscoverTaskSeverityChanged</h2>\n<p> Discover Task Severity Change for activity log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>DiscoverTaskSeverity</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>DiscoverTaskSeverity</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskclosecodechanged\">DiscoverTaskCloseCodeChanged</h2>\n<p> Discover Task Close Code Change for activity log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>DiscoverTaskCloseCode</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>DiscoverTaskCloseCode</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskcommentfilter\">DiscoverTaskCommentFilter</h2>\n<p> Discover Task Comment Filter input type to filter out Discover Tasks' comments</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Time range for comment creation (optional)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskcommentorder\">DiscoverTaskCommentOrder</h2>\n<p> Discover Task Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>DiscoverTaskCommentOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskcommentorderby\">DiscoverTaskCommentOrderBy</h2>\n<p> Order by ENUM for Discover Task Comments</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskcomment\">DiscoverTaskComment</h2>\n<p> Discover Task Comment schmea</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskcommentedge\">DiscoverTaskCommentEdge</h2>\n<p> Discover Task Comment Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>DiscoverTaskComment</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discovertaskcommentconnection\">DiscoverTaskCommentConnection</h2>\n<p> Discover Task Comment Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>DiscoverTaskCommentEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assigndiscovertaskinput\">AssignDiscoverTaskInput</h2>\n<p> Input fields for updating the Discover Task's assignee. Pass null for assignee to set the Discover Task to have no assignee.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>discoverTaskId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatediscovertaskstateinput\">UpdateDiscoverTaskStateInput</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>discoverTaskId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>DiscoverTaskState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"closediscovertaskinput\">CloseDiscoverTaskInput</h2>\n<p> Input fields for closing a Discover Task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>DiscoverTaskCloseCode</td>\n</tr>\n<tr>\n<td>discoverTaskId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3a16592e-95e4-44a5-a5b7-ab38351c044c","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":"c0d09ca0-a0d4-4f3a-ac64-e8ce086b53f6","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customerId\": \"<ID HERE>\",\n    \"description\": \"\",\n    \"name\": \"\",\n    \"resource\": \"\",\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Create an Access Control Policy.</p>\n<p>Inputs: \nCreateAccessControlPolicyInput, </p>\n<p>Return: \nAccessControlPolicyResponse</p>\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":"9a309f29-3e7f-4bed-803a-8c704d53f515","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customerId\": \"<ID HERE>\",\n    \"description\": \"\",\n    \"name\": \"\",\n    \"resource\": \"\",\n    \"users\": [\n      \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"displayName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"resource\": \"\",\n        \"resourceType\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"c0d09ca0-a0d4-4f3a-ac64-e8ce086b53f6"},{"name":"deleteAccessControlPolicy","id":"05f8c100-9812-4bc2-bedc-8e2603d95168","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete an Access Control Policy.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nAccessControlPolicyResponse</p>\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":"bdb4b30b-02fc-4e88-9844-479710071a33","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"displayName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"resource\": \"\",\n        \"resourceType\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"05f8c100-9812-4bc2-bedc-8e2603d95168"},{"name":"updateAccessControlPolicies","id":"dca5923b-39bb-4e4b-bf90-a375670648fd","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessControlPolicyIds\": [\n      \"<ID HERE>\"\n    ],\n    \"accessGroups\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"users\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update multiple Access Control Policies.</p>\n<p>Inputs: \nUpdateAccessControlPoliciesInput, </p>\n<p>Return: \nAccessControlPoliciesResponse</p>\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":"322085a9-ea3d-4637-b853-66f08fde900e","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessControlPolicyIds\": [\n      \"<ID HERE>\"\n    ],\n    \"accessGroups\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"users\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\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\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"description\": \"\",\n          \"displayName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"resource\": \"\",\n          \"resourceType\": \"\",\n          \"users\": {\n            \"totalCount\": 0\n          }\n        }\n      ],\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"dca5923b-39bb-4e4b-bf90-a375670648fd"},{"name":"updateAccessControlPolicy","id":"b27eeef4-070f-492c-960e-a9ab083ded9b","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessGroups\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"description\": \"\",\n    \"id\": \"<ID HERE>\",\n    \"name\": \"\",\n    \"users\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update an Access Control Policy from provided input parameters.</p>\n<p>Inputs: \nUpdateAccessControlPolicyInput, </p>\n<p>Return: \nAccessControlPolicyResponse</p>\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":"34d730ae-2da5-4764-b545-ba9524bf7d8e","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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessGroups\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"description\": \"\",\n    \"id\": \"<ID HERE>\",\n    \"name\": \"\",\n    \"users\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"displayName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"resource\": \"\",\n        \"resourceType\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"b27eeef4-070f-492c-960e-a9ab083ded9b"}],"id":"9298188c-549e-4374-ac7c-88f9a666e930","_postman_id":"9298188c-549e-4374-ac7c-88f9a666e930","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":"8fca0933-704e-4b21-a626-5dde5b0d930c","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\": \"<ID HERE>\",\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":"<p>Fetch a customer's Access Control Policies with optional filtering and order applied.</p>\n<p>Inputs: \nString, ID, Int, AccessControlPolicyFilter, AccessControlPolicyOrder, </p>\n<p>Return: \nAccessControlPolicyConnection</p>\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":"43a5ff2d-0f24-4ef0-b8cc-13a4e467efb3","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\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":"8fca0933-704e-4b21-a626-5dde5b0d930c"},{"name":"accessControlPolicy","id":"531e33fa-cf9e-4cbe-a4ef-d33ddb17b0cf","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlPolicy ($after: String, $first: Int, $notFilter: AccessControlPolicyFieldFilter, $order: AccessGroupOrder, $after1: String, $first1: Int, $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            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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"after2\": \"T18w\",\n  \"first2\": 10,\n  \"after3\": \"T18w\",\n  \"first3\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Retrieve an Access Control Policy.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nAccessControlPolicy</p>\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":"a710bb1b-3438-473f-9a33-64cdd85f180a","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, $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            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      \"<ID HERE>\"\n    ]\n  },\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"after2\": \"T18w\",\n  \"first2\": 10,\n  \"after3\": \"T18w\",\n  \"first3\": 10,\n  \"notFilter1\": {\n    \"ids\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\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        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"residency\": \"\",\n        \"slug\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"description\": \"\",\n      \"displayName\": \"\",\n      \"id\": \"<ID HERE>\",\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":"531e33fa-cf9e-4cbe-a4ef-d33ddb17b0cf"},{"name":"accessControlResources","id":"30480092-226c-4140-b09c-dcd8b08fe66e","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accessControlResources {\n    accessControlResources\n}","variables":"{}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>List of Access Control Resources that can bind to an Access Control Policy.</p>\n<p>Return: \nString</p>\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":"31255967-4b3b-4780-a0e9-58d80b51d07e","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":"30480092-226c-4140-b09c-dcd8b08fe66e"}],"id":"186913b1-61fb-46a1-998c-23ca6a6243bf","_postman_id":"186913b1-61fb-46a1-998c-23ca6a6243bf","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":"656eb721-c7a3-479e-a8fe-85ce13c9ce75","description":"<h2 id=\"accesscontrolpolicy\">AccessControlPolicy</h2>\n<p> Schema for an Access Control Policy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Paginated Access Groups bound to the Access Control Policy.</td>\n<td>AccessGroupConnection</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Customer details to which the Access Control Policy is bound.</td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Optionally provided, description of the Access Control Policy's intent.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>Deterministic naming scheme for Access Control Policy based on its resource type</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID of the Access Control Policy.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the Access Control Policy.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>resource</td>\n<td>Access Control Resource to which the Access Control Policy is bound.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>resourceType</td>\n<td>Type designation for bound Access Control Resource.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Paginated users with direct enablement by the Access Control Policy.</td>\n<td>UserConnection</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpolicyedge\">AccessControlPolicyEdge</h2>\n<p> Access Control Policy and its relevant marker (cursor) within a paginated result.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>AccessControlPolicy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpolicyconnection\">AccessControlPolicyConnection</h2>\n<p> Paginated result details for one or more Access Control Policies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>AccessControlPolicyEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpolicyresponse\">AccessControlPolicyResponse</h2>\n<p> Response wrapper for an Access Control Policy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policy</td>\n<td></td>\n<td>AccessControlPolicy</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpoliciesresponse\">AccessControlPoliciesResponse</h2>\n<p> Response wrapper for a list of Access Control Policies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policies</td>\n<td></td>\n<td>AccessControlPolicy</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createaccesscontrolpolicyinput\">CreateAccessControlPolicyInput</h2>\n<p> Input to create an Access Control Policy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>List of Access Group IDs to associate with an Access Control Policy.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>customerId [DEPRECATED]</td>\n<td>[DEPRECATED: No longer supported. Date 2025-06-05.] Customer identifier to which the Access Control Policy is bound.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Optionally provided, description of the Access Control Policy's intent.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the Access Control Policy.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>resource</td>\n<td>Access Control Resource to which the Access Control Policy is bound.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>users</td>\n<td>List of Access Control Policy User IDs.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateaccesscontrolpolicyinput\">UpdateAccessControlPolicyInput</h2>\n<p> Input to update an Access Control Policy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Access Group IDs to be modified.</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Optionally provided, description of the Access Control Policy's intent.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID for the target Access Control Policy.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the Access Control Policy.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>users</td>\n<td>User IDs to be modified.</td>\n<td>UpdateAssociationInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateaccesscontrolpoliciesinput\">UpdateAccessControlPoliciesInput</h2>\n<p> Input to update a bulk set of Access Control Policies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessControlPolicyIds</td>\n<td>Access Control Policy IDs to be modified.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>accessGroups</td>\n<td>Access Group IDs to be modified.</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>users</td>\n<td>User IDs to be modified.</td>\n<td>UpdateAssociationInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpolicyorder\">AccessControlPolicyOrder</h2>\n<p> Order options for Access Control Policies</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>AccessControlPolicyOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpolicyfilter\">AccessControlPolicyFilter</h2>\n<p> Filter options for Access Control Policies</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Wildcard search on name of Access Control Policies</td>\n<td>String</td>\n</tr>\n<tr>\n<td>resources</td>\n<td>List of Access Control Policy Resource(s)</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpolicyfieldfilter\">AccessControlPolicyFieldFilter</h2>\n<p> Filter options for Access Control Policy field ids</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ids</td>\n<td>Filter by field ids</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"accesscontrolpolicyorderby\">AccessControlPolicyOrderBy</h2>\n<p> Access Control Policy applicable order fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>RESOURCE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"656eb721-c7a3-479e-a8fe-85ce13c9ce75","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":"5a512922-c2e5-486a-b6a7-e55592615a48","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\": \"<ID HERE>\",\n      \"shortCode\": \"\"\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Add a comment to a DRP Alert.</p>\n<p>Inputs: \nDrpAlertCommentInput, </p>\n<p>Return: \nAddDrpAlertCommentResponse</p>\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":"cf7b47fa-7aad-43bf-9470-e2af2ded0579","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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-01T00:00:00.000Z\",\n          \"sourceUris\": [\n            \"\"\n          ],\n          \"subTitle\": \"\",\n          \"thumbnailUri\": \"\",\n          \"title\": \"\",\n          \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        },\n        \"comment\": \"\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\n        \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"5a512922-c2e5-486a-b6a7-e55592615a48"},{"name":"assignDRPAlert","id":"9fd0d6a8-8830-4431-84e4-c2c087837f39","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\": \"<ID HERE>\",\n    \"comment\": \"\",\n    \"shortCode\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Assign the specified DRP Alert to the provided assignee.</p>\n<p>Inputs: \nDRPAlertAssignmentInput, </p>\n<p>Return: \nDRPAlertAssignmentResponse</p>\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":"3b68d0ac-6d77-49a7-8e22-68a6d17e0065","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\": \"<ID HERE>\",\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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"9fd0d6a8-8830-4431-84e4-c2c087837f39"},{"name":"assignDRPAlerts","id":"79cc83c5-78ad-47b6-865f-0e1d97f48da1","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\": \"<ID HERE>\",\n    \"comment\": \"\",\n    \"filter\": {\n      \"active\": true,\n      \"alertExternalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"watched\": true\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Assign all DRP Alerts for the provided filter to the provided assignee.</p>\n<p>Inputs: \nDRPAlertBulkAssignmentInput, </p>\n<p>Return: \nDRPAlertAssignmentResponse</p>\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":"57976bc2-6aa5-46e2-ade7-a7f86d127ec7","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\": \"<ID HERE>\",\n    \"comment\": \"\",\n    \"filter\": {\n      \"active\": true,\n      \"alertExternalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"79cc83c5-78ad-47b6-865f-0e1d97f48da1"},{"name":"bulkAddDrpAlertComment","id":"834e95a2-651f-46db-a5b2-2a53d75a76af","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          \"<ID HERE>\"\n        ],\n        \"alertFingerprints\": [\n          \"\"\n        ],\n        \"assetLabelIds\": [\n          \"<ID HERE>\"\n        ],\n        \"assetSerialIds\": [\n          \"<ID HERE>\"\n        ],\n        \"assetTypes\": [\n          \"ACCESS_KEY\"\n        ],\n        \"assignees\": {\n          \"assignees\": [\n            \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n          \"latest\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"deleted\": true,\n        \"domain\": \"\",\n        \"externalIds\": [\n          \"<ID HERE>\"\n        ],\n        \"flagged\": true,\n        \"hosts\": [\n          \"\"\n        ],\n        \"idGreaterThan\": 0,\n        \"migrated\": true,\n        \"raised\": \"\",\n        \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n          \"latest\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"watched\": true\n      }\n    },\n    \"comment\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Add a comment to DRP Alerts.</p>\n<p>Inputs: \nDrpAlertBulkCommentInput, </p>\n<p>Return: \nDrpAlertBulkResponse</p>\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":"d701dc59-abfd-487d-b8ec-8f513a75cacb","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          \"<ID HERE>\"\n        ],\n        \"alertFingerprints\": [\n          \"\"\n        ],\n        \"assetLabelIds\": [\n          \"<ID HERE>\"\n        ],\n        \"assetSerialIds\": [\n          \"<ID HERE>\"\n        ],\n        \"assetTypes\": [\n          \"ACCESS_KEY\"\n        ],\n        \"assignees\": {\n          \"assignees\": [\n            \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n          \"latest\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"deleted\": true,\n        \"domain\": \"\",\n        \"externalIds\": [\n          \"<ID HERE>\"\n        ],\n        \"flagged\": true,\n        \"hosts\": [\n          \"\"\n        ],\n        \"idGreaterThan\": 0,\n        \"migrated\": true,\n        \"raised\": \"\",\n        \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n          \"latest\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ],\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"834e95a2-651f-46db-a5b2-2a53d75a76af"},{"name":"bulkCloseDrpAlerts","id":"0a04795b-a8c3-4187-b05b-11a4bd73bddd","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      \"<ID HERE>\"\n    ]\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Bulk close (set to RESOLVED state) multiple DRP alerts. Wraps the bulk-state endpoint with the resolved state baked in.</p>\n<p>Inputs: \nBulkCloseDrpAlertsInput, </p>\n<p>Return: \nDrpAlertBulkUpdateStateResponse</p>\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":"28e4d042-cd56-4b4a-bd67-228a9335b5ef","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      \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"shortCode\": \"\"\n        }\n      ],\n      \"success\": true,\n      \"updated\": [\n        {\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\"\n          },\n          \"id\": \"<ID HERE>\",\n          \"shortCode\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"0a04795b-a8c3-4187-b05b-11a4bd73bddd"},{"name":"bulkUpdateDrpAlertState","id":"f5986c2e-04d9-4d1e-b7f9-a98512f8a8d5","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"watched\": true\n    },\n    \"state\": \"IN_PROGRESS\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update the state of the several DRP alerts corresponding to the given external IDs</p>\n<p>Inputs: \nBulkUpdateDrpAlertStateInput, </p>\n<p>Return: \nDrpAlertBulkUpdateStateResponse</p>\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":"d6c652e5-6ea5-45c6-828d-9b2e0c96c691","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"f5986c2e-04d9-4d1e-b7f9-a98512f8a8d5"},{"name":"deleteDrpAlertComment","id":"8c6cf159-fb82-4e7c-8a5c-a8cd2b2abe8d","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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete a comment from a DRP Alert.</p>\n<p>Inputs: \nDrpAlertDeleteCommentInput, </p>\n<p>Return: \nDrpAlertCommentResponse</p>\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":"601a0c87-999b-48cd-9e04-5b470cc0b930","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\": \"<ID HERE>\"\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":"8c6cf159-fb82-4e7c-8a5c-a8cd2b2abe8d"},{"name":"unWatchDRPAlert","id":"14579b03-f622-4a58-bbe3-1fa98c746cb5","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":"<p>Unwatch DRP Alert for the provided short code.</p>\n<p>Inputs: \nString, </p>\n<p>Return: \nDRPAlertWatchResponse</p>\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":"11db000c-77e0-49bf-8c37-49d2dc2b350b","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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"14579b03-f622-4a58-bbe3-1fa98c746cb5"},{"name":"unWatchDRPAlerts","id":"ed9ab4f7-032b-4142-b0d6-fb3304ecb5c4","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"watched\": true\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Unwatch all DRP Alerts with the provided filter.</p>\n<p>Inputs: \nDRPAlertBulkUnwatchInput, </p>\n<p>Return: \nDRPAlertWatchResponse</p>\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":"f1c53114-8633-4087-8df1-b1b089d7994d","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"ed9ab4f7-032b-4142-b0d6-fb3304ecb5c4"},{"name":"unassignDRPAlert","id":"971e7d18-4431-4cd8-b045-8f8e40044ab3","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":"<p>Unassign the specified DRP Alert.</p>\n<p>Inputs: \nDRPAlertUnassignmentInput, </p>\n<p>Return: \nDRPAlertAssignmentResponse</p>\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":"c9090d97-6189-480c-b8a8-fcecc07a39c7","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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"971e7d18-4431-4cd8-b045-8f8e40044ab3"},{"name":"unassignDRPAlerts","id":"eeeaa9fe-c822-47cd-90ea-c4797d1aca28","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"watched\": true\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Unassign all DRP Alerts for the provided filter.</p>\n<p>Inputs: \nDRPAlertBulkUnassignmentInput, </p>\n<p>Return: \nDRPAlertAssignmentResponse</p>\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":"b2b56548-7a8f-444c-a9aa-f226c9148c81","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"eeeaa9fe-c822-47cd-90ea-c4797d1aca28"},{"name":"updateDrpAlertComment","id":"ddc210ac-cee9-4d4e-9b47-be8bb3ceccfc","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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Edit a comment on a DRP Alert.</p>\n<p>Inputs: \nDrpAlertUpdateCommentInput, </p>\n<p>Return: \nDrpAlertCommentResponse</p>\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":"002dd418-ea0b-4a32-a818-331315e1ed67","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\": \"<ID HERE>\"\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":"ddc210ac-cee9-4d4e-9b47-be8bb3ceccfc"},{"name":"updateDrpAlertState","id":"756e1cf5-1ffc-4975-b4e6-311fd0ae8e0e","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\": \"<ID HERE>\",\n    \"state\": \"IN_PROGRESS\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update the state of the corresponding DRP Alert of given external ID</p>\n<p>Inputs: \nUpdateDrpAlertStateInput, </p>\n<p>Return: \nDRPAlertResponse</p>\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":"80576ec2-ba11-4cca-89c3-25be014694e7","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\": \"<ID HERE>\",\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-07-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-07-01T00:00:00.000Z\",\n            \"deleted\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"modified\": \"2026-07-01T00:00:00.000Z\",\n            \"pending\": true,\n            \"serialId\": \"<ID HERE>\",\n            \"status\": \"\",\n            \"type\": \"\"\n          }\n        ],\n        \"classification\": \"\",\n        \"closedSource\": true,\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"currentAssignment\": {\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n          \"version\": 0\n        },\n        \"currentFlag\": {\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"currentState\": {\n          \"state\": \"IN_PROGRESS\",\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n          \"version\": 0\n        },\n        \"currentWatcher\": {\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"domain\": \"\",\n        \"hosts\": [\n          \"\"\n        ],\n        \"id\": \"<ID HERE>\",\n        \"migrated\": true,\n        \"originator\": {\n          \"originatorType\": \"ALERT\"\n        },\n        \"rejectedByRuleIds\": [\n          \"\"\n        ],\n        \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n        \"uri\": \"\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"756e1cf5-1ffc-4975-b4e6-311fd0ae8e0e"},{"name":"watchDRPAlert","id":"f9ccd8fe-7a66-4f05-a29b-a54bfe54f525","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"shortCode\": \"\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Watch DRP Alert for the provided short code with the provided watcher.</p>\n<p>Inputs: \nString, </p>\n<p>Return: \nDRPAlertWatchDetailResponse</p>\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":"a5e6768f-6d31-4ad7-9f62-14dd3b50d06f","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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-07-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-07-01T00:00:00.000Z\",\n            \"deleted\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"modified\": \"2026-07-01T00:00:00.000Z\",\n            \"pending\": true,\n            \"serialId\": \"<ID HERE>\",\n            \"status\": \"\",\n            \"type\": \"\"\n          }\n        ],\n        \"classification\": \"\",\n        \"closedSource\": true,\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"currentAssignment\": {\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n          \"version\": 0\n        },\n        \"currentFlag\": {\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"currentState\": {\n          \"state\": \"IN_PROGRESS\",\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n          \"version\": 0\n        },\n        \"currentWatcher\": {\n          \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"domain\": \"\",\n        \"hosts\": [\n          \"\"\n        ],\n        \"id\": \"<ID HERE>\",\n        \"migrated\": true,\n        \"originator\": {\n          \"originatorType\": \"ALERT\"\n        },\n        \"rejectedByRuleIds\": [\n          \"\"\n        ],\n        \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n        \"uri\": \"\"\n      },\n      \"id\": \"\",\n      \"success\": true,\n      \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n      \"user\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"f9ccd8fe-7a66-4f05-a29b-a54bfe54f525"},{"name":"watchDRPAlerts","id":"9c54fa58-afca-4abf-8dba-e89060437755","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"watched\": true\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Watch all DRP Alerts for the provided filter with the provided watcher.</p>\n<p>Inputs: \nDRPAlertBulkWatchInput, </p>\n<p>Return: \nDRPAlertWatchResponse</p>\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":"55b886c8-ed39-4ab8-b659-b35f117f3bd6","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        \"<ID HERE>\"\n      ],\n      \"alertFingerprints\": [\n        \"\"\n      ],\n      \"assetLabelIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetSerialIds\": [\n        \"<ID HERE>\"\n      ],\n      \"assetTypes\": [\n        \"ACCESS_KEY\"\n      ],\n      \"assignees\": {\n        \"assignees\": [\n          \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"deleted\": true,\n      \"domain\": \"\",\n      \"externalIds\": [\n        \"<ID HERE>\"\n      ],\n      \"flagged\": true,\n      \"hosts\": [\n        \"\"\n      ],\n      \"idGreaterThan\": 0,\n      \"migrated\": true,\n      \"raised\": \"\",\n      \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"latest\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n              \"deleted\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"modified\": \"2026-07-01T00:00:00.000Z\",\n              \"pending\": true,\n              \"serialId\": \"<ID HERE>\",\n              \"status\": \"\",\n              \"type\": \"\"\n            }\n          ],\n          \"classification\": \"\",\n          \"closedSource\": true,\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"currentAssignment\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentFlag\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"currentState\": {\n            \"state\": \"IN_PROGRESS\",\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n            \"version\": 0\n          },\n          \"currentWatcher\": {\n            \"timestamp\": \"2026-07-01T00:00:00.000Z\"\n          },\n          \"customer\": {\n            \"active\": true,\n            \"headerSlug\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"domain\": \"\",\n          \"hosts\": [\n            \"\"\n          ],\n          \"id\": \"<ID HERE>\",\n          \"migrated\": true,\n          \"originator\": {\n            \"originatorType\": \"ALERT\"\n          },\n          \"rejectedByRuleIds\": [\n            \"\"\n          ],\n          \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n          \"uri\": \"\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"9c54fa58-afca-4abf-8dba-e89060437755"}],"id":"d682dc9c-e00d-4db0-939a-4f7573456280","_postman_id":"d682dc9c-e00d-4db0-939a-4f7573456280","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":"99b5130a-1138-4d74-bb00-896939eda27a","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query drpAlert ($after: String, $first: Int, $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            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  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"by\": {\n    \"id\": \"<ID HERE>\",\n    \"shortCode\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p> Fetch DRP Alert by id or short code. </p>\n<p>Inputs: \nDRPAlertBy, </p>\n<p>Return: \nDRPAlert</p>\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":"83c97fae-9ece-4cdc-a9b6-0d23d692f2e8","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query drpAlert ($after: String, $first: Int, $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            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  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"by\": {\n    \"id\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n            \"serviceNowId\": \"\"\n          },\n          \"clientId\": \"\",\n          \"created\": \"2026-07-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-07-01T00:00:00.000Z\",\n          \"createdBy\": {\n            \"email\": \"\",\n            \"fullName\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"serviceNowId\": \"\"\n          },\n          \"criticality\": {\n            \"current\": 0,\n            \"maximum\": 0\n          },\n          \"deleted\": \"2026-07-01T00:00:00.000Z\",\n          \"id\": \"<ID HERE>\",\n          \"labels\": [\n            {\n              \"value\": \"\"\n            }\n          ],\n          \"modified\": \"2026-07-01T00:00:00.000Z\",\n          \"modifiedBy\": {\n            \"email\": \"\",\n            \"fullName\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"serviceNowId\": \"\"\n          },\n          \"pending\": true,\n          \"sensitivity\": {\n            \"current\": 0,\n            \"maximum\": 0\n          },\n          \"serialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"currentAssignment\": {\n        \"comment\": {\n          \"comment\": \"\",\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"id\": \"<ID HERE>\",\n          \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n          \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"version\": 0\n      },\n      \"currentFlag\": {\n        \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"currentState\": {\n        \"comment\": {\n          \"comment\": \"\",\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"id\": \"<ID HERE>\",\n          \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n          \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"state\": \"IN_PROGRESS\",\n        \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"version\": 0\n      },\n      \"currentWatcher\": {\n        \"timestamp\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"customer\": {\n        \"accessControlPolicies\": {\n          \"totalCount\": 0\n        },\n        \"active\": true,\n        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"residency\": \"\",\n        \"slug\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"domain\": \"\",\n      \"hosts\": [\n        \"\"\n      ],\n      \"id\": \"<ID HERE>\",\n      \"migrated\": true,\n      \"originator\": {\n        \"alert\": {\n          \"alertType\": \"\",\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n          \"deletedAssets\": 0,\n          \"raisedAt\": \"2026-07-01T00:00:00.000Z\",\n          \"riskFunctionId\": \"\",\n          \"shortCode\": \"\",\n          \"supersededBy\": \"\"\n        },\n        \"incident\": {\n          \"alerted\": \"2026-07-01T00:00:00.000Z\",\n          \"closedSource\": true,\n          \"description\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"impactDescription\": \"\",\n          \"internal\": true,\n          \"modified\": \"2026-07-01T00:00:00.000Z\",\n          \"occurred\": \"2026-07-01T00:00:00.000Z\",\n          \"published\": \"2026-07-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-07-01T00:00:00.000Z\",\n          \"version\": 0\n        },\n        \"originatorType\": \"ALERT\"\n      },\n      \"rejectedByRuleIds\": [\n        \"\"\n      ],\n      \"removedAt\": \"2026-07-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-07-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-07-01T00:00:00.000Z\",\n      \"uri\": \"\"\n    }\n  }\n}"}],"_postman_id":"99b5130a-1138-4d74-bb00-896939eda27a"},{"name":"drpAlerts","id":"ec63cb55-87ba-4636-a106-95895f344cf1","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      \"<ID HERE>\"\n    ],\n    \"alertFingerprints\": [\n      \"\"\n    ],\n    \"assetLabelIds\": [\n      \"<ID HERE>\"\n    ],\n    \"assetSerialIds\": [\n      \"<ID HERE>\"\n    ],\n    \"assetTypes\": [\n      \"ACCESS_KEY\"\n    ],\n    \"assignees\": {\n      \"assignees\": [\n        \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"deleted\": true,\n    \"domain\": \"\",\n    \"externalIds\": [\n      \"<ID HERE>\"\n    ],\n    \"flagged\": true,\n    \"hosts\": [\n      \"\"\n    ],\n    \"idGreaterThan\": 0,\n    \"migrated\": true,\n    \"raised\": \"\",\n    \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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":"<p>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.</p>\n<p>Inputs: \nString, DrpReportTriageItemViewFilterInput, Int, DRPAlertOrder, </p>\n<p>Return: \nDRPAlertConnection</p>\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":"c33ecc80-b272-4660-a01d-b1fdd44cd207","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      \"<ID HERE>\"\n    ],\n    \"alertFingerprints\": [\n      \"\"\n    ],\n    \"assetLabelIds\": [\n      \"<ID HERE>\"\n    ],\n    \"assetSerialIds\": [\n      \"<ID HERE>\"\n    ],\n    \"assetTypes\": [\n      \"ACCESS_KEY\"\n    ],\n    \"assignees\": {\n      \"assignees\": [\n        \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"deleted\": true,\n    \"domain\": \"\",\n    \"externalIds\": [\n      \"<ID HERE>\"\n    ],\n    \"flagged\": true,\n    \"hosts\": [\n      \"\"\n    ],\n    \"idGreaterThan\": 0,\n    \"migrated\": true,\n    \"raised\": \"\",\n    \"rejectedByRuleSerialId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n            \"domain\": \"\",\n            \"hosts\": [\n              \"\"\n            ],\n            \"id\": \"<ID HERE>\",\n            \"migrated\": true,\n            \"rejectedByRuleIds\": [\n              \"\"\n            ],\n            \"removedAt\": \"2026-07-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-07-01T00:00:00.000Z\",\n            \"sourceUris\": [\n              \"\"\n            ],\n            \"subTitle\": \"\",\n            \"thumbnailUri\": \"\",\n            \"title\": \"\",\n            \"updatedAt\": \"2026-07-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":"ec63cb55-87ba-4636-a106-95895f344cf1"}],"id":"f67ec791-f3cb-4e84-abe9-7595951eef6d","_postman_id":"f67ec791-f3cb-4e84-abe9-7595951eef6d","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":"3793b0e6-6b43-4a89-88ee-09bc54b2599c","description":"<h2 id=\"adddrpalertcommentresponse\">AddDrpAlertCommentResponse</h2>\n<p>  DrpAlertCommentResponse schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>Actioned comment.</td>\n<td>DRPAlertComment</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"approvalstate\">ApprovalState</h2>\n<p>  Possible approval states for an asset. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCEPTED</td>\n<td></td>\n</tr>\n<tr>\n<td>CLARIFICATION</td>\n<td></td>\n</tr>\n<tr>\n<td>PENDING</td>\n<td></td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td></td>\n</tr>\n<tr>\n<td>UNRECOGNIZED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"bulkclosedrpalertsinput\">BulkCloseDrpAlertsInput</h2>\n<p>  DRP Bulk Close Alerts Input </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>Optional comment to apply to all alert closures.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>drpAlertIds</td>\n<td>IDs of the DRP alerts to close. Maximum 100 IDs per request. (Required)</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"bulkupdatedrpalertstateinput\">BulkUpdateDrpAlertStateInput</h2>\n<p>  DRP Bulk Update Alert State Input </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>filter</td>\n<td></td>\n<td>DrpReportTriageItemViewFilterInput</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>DRPAlertState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"chatfiletype\">ChatFileType</h2>\n<p>  The type of a chat media file </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IMAGE</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN_DEFAULT_OPEN_API</td>\n<td></td>\n</tr>\n<tr>\n<td>VIDEO</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpaccesscontrol\">DRPAccessControl</h2>\n<p>  DRP Access Control </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessibilityExtractable</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>annotationModifiable</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>assembleDocument</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>contentExtractable</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>degradedPrintable</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>formEnabled</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>modifiable</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>printable</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpactivitylogitem\">DRPActivityLogItem</h2>\n<p>  DRP Activity Log Item. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>actionKey</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>actor</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>clientId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>payload</td>\n<td></td>\n<td>DRPActivityLogItemPayload</td>\n</tr>\n<tr>\n<td>permissions</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>scope</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalert\">DRPAlert</h2>\n<p> DRP Alert schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>active</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>activityLogItems</td>\n<td></td>\n<td>DRPActivityLogItem</td>\n</tr>\n<tr>\n<td>alertFingerprint</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>assetMatches</td>\n<td></td>\n<td>DRPAsset</td>\n</tr>\n<tr>\n<td>classification</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>closedSource</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>currentAssignment</td>\n<td></td>\n<td>DRPAlertAssignment</td>\n</tr>\n<tr>\n<td>currentFlag</td>\n<td></td>\n<td>DRPAlertFlag</td>\n</tr>\n<tr>\n<td>currentState</td>\n<td></td>\n<td>DRPAlertStateData</td>\n</tr>\n<tr>\n<td>currentWatcher</td>\n<td></td>\n<td>DRPAlertWatcher</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>domain</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hosts</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>migrated</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>originator</td>\n<td></td>\n<td>DRPOriginator</td>\n</tr>\n<tr>\n<td>rejectedByRuleIds</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>removedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>riskFactorKeys</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>DRPAlertSeverity</td>\n</tr>\n<tr>\n<td>shortCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceGroup</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceRef</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceUpdated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>sourceUris</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>subTitle</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>takedown</td>\n<td></td>\n<td>Takedown</td>\n</tr>\n<tr>\n<td>thumbnailUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>uri</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertassignment\">DRPAlertAssignment</h2>\n<p>  DRP Alert Assignment schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td></td>\n<td>DRPAlertComment</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertassignmentinput\">DRPAlertAssignmentInput</h2>\n<p> Input type for assigning DRP Alerts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td>The id of the user whose assignment is being updated</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>The comment added to the assignment</td>\n<td>String</td>\n</tr>\n<tr>\n<td>shortCode</td>\n<td>Short Code for the DRP Alert short code to be assigned</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertassignmentresponse\">DRPAlertAssignmentResponse</h2>\n<p> The DRPAlertAssignmentResponse type is used to return the result of a drp alert-related operation.</p>\n<p>Fields:</p>\n<ul>\n<li>success: Indicates whether the operation was successful.</li>\n<li>unsuccessfulDrpAlerts: Provides details of the DRP alerts modified <div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>unsuccessfulDrpAlerts</td>\n<td>Provides details of the DRP alerts that were modified unsuccessfully.</td>\n<td>DRPAlert</td>\n</tr>\n</tbody>\n</table>\n</div></li>\n</ul>\n<h2 id=\"drpalertbulkassignmentinput\">DRPAlertBulkAssignmentInput</h2>\n<p> Input type for assigning DRP Alerts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td>The id of the user whose assignment is being updated</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>The comment added to the assignment</td>\n<td>String</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Filter to specify which DRP Alerts are a part of the assignment</td>\n<td>DrpReportTriageItemViewFilterInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertbulkcommentby\">DrpAlertBulkCommentBy</h2>\n<p>  DrpAlertBulkCommentInputBy schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter</td>\n<td></td>\n<td>DrpReportTriageItemViewFilterInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertbulkcommentinput\">DrpAlertBulkCommentInput</h2>\n<p>  DrpAlertBulkCommentInput schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bulkCommentBy</td>\n<td></td>\n<td>DrpAlertBulkCommentBy</td>\n</tr>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertbulkresponse\">DrpAlertBulkResponse</h2>\n<p>  DrpAlertBulkResponse schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>actioned</td>\n<td>Count of successfully actioned items.</td>\n<td>Int</td>\n</tr>\n<tr>\n<td>ignored</td>\n<td>Ignored items.</td>\n<td>DRPAlert</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertbulkunassignmentinput\">DRPAlertBulkUnassignmentInput</h2>\n<p> Input type for unassigning DRP Alerts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>The comment added to the unassignment</td>\n<td>String</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Filter to specify which DRP Alerts are a part of the unassignment</td>\n<td>DrpReportTriageItemViewFilterInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertbulkunwatchinput\">DRPAlertBulkUnwatchInput</h2>\n<p> Input type for unwatching DRP Alerts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>The comment added to the unwatch</td>\n<td>String</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Filter to specify which DRP Alerts are a part of the unwatch</td>\n<td>DrpReportTriageItemViewFilterInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertbulkupdatestateresponse\">DrpAlertBulkUpdateStateResponse</h2>\n<p>  DRP Bulk Update Alert Response </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>failed</td>\n<td></td>\n<td>DRPAlert</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DRPAlert</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertbulkwatchinput\">DRPAlertBulkWatchInput</h2>\n<p> Input type for watching DRP Alerts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter</td>\n<td>Filter to specify which DRP Alerts are a part of the watch</td>\n<td>DrpReportTriageItemViewFilterInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertby\">DRPAlertBy</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>shortCode</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertcomment\">DRPAlertComment</h2>\n<p>  DRP Alert Comment schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert</td>\n<td></td>\n<td>DRPAlert</td>\n</tr>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>removedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertcommentinput\">DrpAlertCommentInput</h2>\n<p>  DrpAlertCommentInput schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>drpAlertBy</td>\n<td></td>\n<td>DRPAlertBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertcommentresponse\">DrpAlertCommentResponse</h2>\n<p>  DrpAlertResponse schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertconnection\">DRPAlertConnection</h2>\n<p>  DRP Alert Connection schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>DRPAlertEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertdeletecommentinput\">DrpAlertDeleteCommentInput</h2>\n<p>  DrpAlertDeleteCommentInput schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>drpAlertComment</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertedge\">DRPAlertEdge</h2>\n<p>  DRP Alert Edge schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>DRPAlert</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertflag\">DRPAlertFlag</h2>\n<p>  DRP Alert Flag schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>timestamp</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertorder\">DRPAlertOrder</h2>\n<p> DRP Alert OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>DRPAlertOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertorderby\">DRPAlertOrderBy</h2>\n<p>  Order by ENUM for DRP Alerts. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>STATE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertresponse\">DRPAlertResponse</h2>\n<p>  DRP Alert Response </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>drpAlert</td>\n<td></td>\n<td>DRPAlert</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertseverity\">DRPAlertSeverity</h2>\n<p>  Severity ENUM for DRP Alert. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>INFORMATIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertstate\">DRPAlertState</h2>\n<p>  DRP Alert State ENUM. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>NEW</td>\n<td></td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td></td>\n</tr>\n<tr>\n<td>RESOLVED</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertstatedata\">DRPAlertStateData</h2>\n<p>  DRP Alert State Data schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td></td>\n<td>DRPAlertComment</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>DRPAlertState</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertunassignmentinput\">DRPAlertUnassignmentInput</h2>\n<p> Input type for unassigning DRP Alerts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>The comment added to the unassignment</td>\n<td>String</td>\n</tr>\n<tr>\n<td>shortCode</td>\n<td>Short Code for the DRP Alert short code to be unassigned</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertupdatecommentinput\">DrpAlertUpdateCommentInput</h2>\n<p>  DrpAlertEditCommentInput schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>drpAlertComment</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertwatchdetailresponse\">DRPAlertWatchDetailResponse</h2>\n<p> The DRPAlertWatchDetailResponse type is used to return the result of a drp alert-related operation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert</td>\n<td>The DRP Alert that was watched.</td>\n<td>DRPAlert</td>\n</tr>\n<tr>\n<td>id</td>\n<td>The DRP Alert watch.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>When the DRP Alert was watched.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td>Who watched the DRP Alert.</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertwatcher\">DRPAlertWatcher</h2>\n<p>  DRP Alert Watcher schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>timestamp</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpalertwatchresponse\">DRPAlertWatchResponse</h2>\n<p> The DRPAlertWatchResponse type is used to return the result of a drp alert-related operation.</p>\n<p>Fields:</p>\n<ul>\n<li>success: Indicates whether the operation was successful.</li>\n<li>unsuccessfulDrpAlerts: Provides details of the DRP alerts modified <div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>unsuccessfulDrpAlerts</td>\n<td>Provides details of the DRP alerts that were modified unsuccessfully.</td>\n<td>DRPAlert</td>\n</tr>\n</tbody>\n</table>\n</div></li>\n</ul>\n<h2 id=\"drpasset\">DRPAsset</h2>\n<p>  DRP Asset schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>approvalState</td>\n<td></td>\n<td>ApprovalState</td>\n</tr>\n<tr>\n<td>archivedState</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>clientId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>cost</td>\n<td></td>\n<td>DrpReportCustomTriageTableWidgetDataRiskAttribute</td>\n</tr>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>criticality</td>\n<td></td>\n<td>DrpReportCustomTriageTableWidgetDataRiskAttribute</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>labels</td>\n<td></td>\n<td>DrpReportCustomTriageTableWidgetDataLabels</td>\n</tr>\n<tr>\n<td>modified</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>pending</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>sensitivity</td>\n<td></td>\n<td>DrpReportCustomTriageTableWidgetDataRiskAttribute</td>\n</tr>\n<tr>\n<td>serialId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>value</td>\n<td></td>\n<td>DRPAssetValue</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpassetcolor\">DRPAssetColor</h2>\n<p>  RGB color representation. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>blue</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>green</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>red</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpassetnetrange\">DRPAssetNetRange</h2>\n<p>  IP/network range details. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>isIPv4</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>lower</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>lowerAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>maskBits</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>upper</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>upperAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpassets3resource\">DRPAssetS3Resource</h2>\n<p>  S3 resource metadata for an asset. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fileName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>s3Uri</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpassetvalue\">DRPAssetValue</h2>\n<p>  Nested value details for a DRPAsset. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>appName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>appUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>associatedPii</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>b2bServices</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>b2cServices</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>clientServices</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>codeIdentifier</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>colorPalette</td>\n<td></td>\n<td>DRPAssetColor</td>\n</tr>\n<tr>\n<td>criticalAsset</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>developerName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>displayValue</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>domain</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>employeeServices</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>format</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hashAlgorithm</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hashtag</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostingPii</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>internalOnly</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>key</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>keyword</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>logoUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>logos</td>\n<td></td>\n<td>DRPAssetS3Resource</td>\n</tr>\n<tr>\n<td>marking</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>number</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>packageName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>platform</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>primaryTrading</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>profile</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>range</td>\n<td></td>\n<td>DRPAssetNetRange</td>\n</tr>\n<tr>\n<td>recruitmentUse</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>revenueGeneration</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>sector</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sensitiveInformationAccess</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>sensitiveInternal</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>sharedPublic</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>sharedTrusted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>testEnvironmentAccess</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>testingEnvironment</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>thirdPartyAccess</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>thirdPartyInfrastructure</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>uri</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpassetweightedriskscore\">DRPAssetWeightedRiskScore</h2>\n<p>  DRP Asset Weighted Risk Score </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cost</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>criticality</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>sensitivity</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>weightedScore</td>\n<td></td>\n<td>Float</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpassociatedurl\">DRPAssociatedUrl</h2>\n<p>  DRP Associated Url </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reported</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcommitdetails\">DRPCommitDetails</h2>\n<p>  DRP Commit Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>author</td>\n<td></td>\n<td>DRPCommitUser</td>\n</tr>\n<tr>\n<td>commitDateTime</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>committer</td>\n<td></td>\n<td>DRPCommitUser</td>\n</tr>\n<tr>\n<td>message</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>repository</td>\n<td></td>\n<td>DRPRepository</td>\n</tr>\n<tr>\n<td>sha</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>totalFiles</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcommituser\">DRPCommitUser</h2>\n<p>  DRP Commit User </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>userDetails</td>\n<td></td>\n<td>DRPCommitUserDetails</td>\n</tr>\n<tr>\n<td>username</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcommituserdetails\">DRPCommitUserDetails</h2>\n<p>  DRP Commit User Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>avatarUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>bio</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>company</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>created</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>followers</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>following</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostingProviderUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>location</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>privateRepos</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcontentdetails\">DRPContentDetails</h2>\n<p>  DRP Content Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>category</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>contentStatus</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>mimeType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>originalLocation</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>protectedContent</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>revisionNumber</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>subject</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>trapped</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcontenthashes\">DRPContentHashes</h2>\n<p>  DRP Content Hashes </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>md5</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sha1</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sha256</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcredential\">DRPCredential</h2>\n<p>  DRP Credential </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>closedSource</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>darkWeb</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>detectionSourceSummary</td>\n<td></td>\n<td>DRPDetectionSourceSummary</td>\n</tr>\n<tr>\n<td>email</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>firstDetection</td>\n<td></td>\n<td>DRPDetectionDetails</td>\n</tr>\n<tr>\n<td>latestDetection</td>\n<td></td>\n<td>DRPDetectionDetails</td>\n</tr>\n<tr>\n<td>latestMalwareDetection</td>\n<td></td>\n<td>DRPDetectionDetails</td>\n</tr>\n<tr>\n<td>password</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>passwordType</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcredentialexposuredata\">DRPCredentialExposureData</h2>\n<p>  DRP Credential Exposure Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>credential</td>\n<td></td>\n<td>DRPCredential</td>\n</tr>\n<tr>\n<td>credentialValidation</td>\n<td></td>\n<td>DRPCredentialValidation</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpcredentialvalidation\">DRPCredentialValidation</h2>\n<p>  DRP Credential Validation </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>azureResponse</td>\n<td></td>\n<td>DRPValidationResponse</td>\n</tr>\n<tr>\n<td>emailFileResponse</td>\n<td></td>\n<td>DRPValidationResponse</td>\n</tr>\n<tr>\n<td>emailFormatState</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>oktaResponse</td>\n<td></td>\n<td>DRPValidationResponse</td>\n</tr>\n<tr>\n<td>passwordFormatState</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpdetectiondetails\">DRPDetectionDetails</h2>\n<p>  DRP Detection Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>clientIncidentId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>collected</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>created</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fromMalwareStealerLog</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>headerText</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>inProgress</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>malwareStealerHeader</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>rowText</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceHost</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>totalUniqueDomains</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>totalUniqueEmails</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpdetectionsourcesummary\">DRPDetectionSourceSummary</h2>\n<p>  DRP Detection Source Summary </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>count</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpdnsresourcerecord\">DRPDnsResourceRecord</h2>\n<p>  DRP Dns Resource Record </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dnsRecordType</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>rdata</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpdomaincontent\">DRPDomainContent</h2>\n<p>  DRP Domain Content </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>collected</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>errored</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>htmlContentUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>present</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>screenshotUri</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummary\">DRPEntitySummary</h2>\n<p>  DRP Entity Summary </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>affectedDomains</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>associatedDomainNames</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>certificate</td>\n<td></td>\n<td>DRPEntitySummaryX509CertificateRecord</td>\n</tr>\n<tr>\n<td>certificateInspection</td>\n<td></td>\n<td>DRPEntitySummaryCertificateInspection</td>\n</tr>\n<tr>\n<td>contentRemoved</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>contentReplaced</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>conversationFragment</td>\n<td></td>\n<td>DRPEntitySummaryConversationFragment</td>\n</tr>\n<tr>\n<td>conversationFragmentMessages</td>\n<td></td>\n<td>DRPEntitySummaryChatMessage</td>\n</tr>\n<tr>\n<td>details</td>\n<td></td>\n<td>DRPEntitySummaryIpAddressDetails</td>\n</tr>\n<tr>\n<td>dnsZone</td>\n<td></td>\n<td>DRPEntitySummaryDnsZone</td>\n</tr>\n<tr>\n<td>domain</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>knownIssues</td>\n<td></td>\n<td>DRPEntitySummarySecureSocketsKnownIssueSpec</td>\n</tr>\n<tr>\n<td>marketplaceListing</td>\n<td></td>\n<td>DRPEntitySummaryMarketplaceListing</td>\n</tr>\n<tr>\n<td>originalDomains</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ports</td>\n<td></td>\n<td>DRPEntitySummaryIpPortInspection</td>\n</tr>\n<tr>\n<td>postSnapshot</td>\n<td></td>\n<td>DRPEntitySummaryForumPostSnapshot</td>\n</tr>\n<tr>\n<td>primary</td>\n<td></td>\n<td>DRPEntitySummaryMobileAppPrimary</td>\n</tr>\n<tr>\n<td>primaryMessage</td>\n<td></td>\n<td>DRPEntitySummaryChatMessage</td>\n</tr>\n<tr>\n<td>redirectsTo</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>screenshot</td>\n<td></td>\n<td>DrpReportLargeImageRef</td>\n</tr>\n<tr>\n<td>screenshotId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>screenshotThumbnailId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>secureSocketInspection</td>\n<td></td>\n<td>DRPEntitySummarySecureSocketInspection</td>\n</tr>\n<tr>\n<td>secureSocketInspections</td>\n<td></td>\n<td>DRPEntitySummarySecureSocketInspectionPrimaryPage</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceDate</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>summaryText</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tweet</td>\n<td></td>\n<td>DRPEntitySummaryAbstractTweet</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>vulnerability</td>\n<td></td>\n<td>DRPEntitySummaryDetectedVulnerability</td>\n</tr>\n<tr>\n<td>whitelistedPorts</td>\n<td></td>\n<td>DRPIpPortTransport</td>\n</tr>\n<tr>\n<td>whoisDomain</td>\n<td></td>\n<td>DRPWhoIs</td>\n</tr>\n<tr>\n<td>whoisNetworks</td>\n<td></td>\n<td>DRPEntitySummaryWhoisNetwork</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummaryabstracttweet\">DRPEntitySummaryAbstractTweet</h2>\n<p>  DRP Entity Summary Abstract Tweet </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>authorId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>authorName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>hashtags</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>likeCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>retweetCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tweetId</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarycertificateinspection\">DRPEntitySummaryCertificateInspection</h2>\n<p>  DRP Entity Summary Certificate Inspection </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>certificateId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fingerprint</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>issuer</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>keyAlgorithm</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>signatureAlgorithm</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>subject</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>valid</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>validFrom</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>validTo</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatchanneldetails\">DRPEntitySummaryChatChannelDetails</h2>\n<p>  Details about the chat channel </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>channelAlias</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>democracy</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>megaGroup</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>restricted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>verified</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatlocation\">DRPEntitySummaryChatLocation</h2>\n<p>  Geographic or map location attached to a chat message </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>latitude</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>map</td>\n<td></td>\n<td>DrpReportLargeImageRef</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatmediafile\">DRPEntitySummaryChatMediaFile</h2>\n<p>  A media file sent in a chat message </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caption</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>contentLength</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>file</td>\n<td></td>\n<td>DRPEntitySummaryChatMediaFileResourceRef</td>\n</tr>\n<tr>\n<td>fileName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fileSubType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fileType</td>\n<td></td>\n<td>ChatFileType</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>image</td>\n<td></td>\n<td>DrpReportImageRef</td>\n</tr>\n<tr>\n<td>oversized</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>thumbnail</td>\n<td></td>\n<td>DrpReportImageRef</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatmediafileresourceref\">DRPEntitySummaryChatMediaFileResourceRef</h2>\n<p>  Reference to a chat media resource </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>link</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatmessage\">DRPEntitySummaryChatMessage</h2>\n<p>  DRP Entity Summary Chat Message </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>channel</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>channelDetails</td>\n<td></td>\n<td>DRPEntitySummaryChatChannelDetails</td>\n</tr>\n<tr>\n<td>content</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>post</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>protocol</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>searchId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sent</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sentLocations</td>\n<td></td>\n<td>DRPEntitySummaryChatLocation</td>\n</tr>\n<tr>\n<td>sentMediaFiles</td>\n<td></td>\n<td>DRPEntitySummaryChatMediaFile</td>\n</tr>\n<tr>\n<td>server</td>\n<td></td>\n<td>DRPEntitySummaryChatServer</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>DRPEntitySummaryChatMessageUser</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatmessageuser\">DRPEntitySummaryChatMessageUser</h2>\n<p>  User information for a chat message sender </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>avatar</td>\n<td></td>\n<td>DRPEntitySummaryChatMessageUserAvatar</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>uri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>username</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatmessageuseravatar\">DRPEntitySummaryChatMessageUserAvatar</h2>\n<p>  Avatar details for a chat message user </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>link</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarychatserver\">DRPEntitySummaryChatServer</h2>\n<p>  Server details where the chat message originated </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>host</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummaryconversationfragment\">DRPEntitySummaryConversationFragment</h2>\n<p>  DRP Entity Summary Conversation Fragment </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>channel</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>focusMessageIndex</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>messages</td>\n<td></td>\n<td>DRPEntitySummaryMessage</td>\n</tr>\n<tr>\n<td>server</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarydetectedvulnerability\">DRPEntitySummaryDetectedVulnerability</h2>\n<p>  DRP Entity Summary Detected Vulnerability </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cveId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>cvssScore</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>references</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>vulnerabilityId</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarydnszone\">DRPEntitySummaryDnsZone</h2>\n<p>  DRP Entity Summary DNS Zone </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lastRefreshed</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>nameServers</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>recordCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>zoneName</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummaryforumpostsnapshot\">DRPEntitySummaryForumPostSnapshot</h2>\n<p>  DRP Entity Summary Forum Post Snapshot </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>authorId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>authorName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>content</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>postId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>postedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>tags</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>threadId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>threadTitle</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummaryipaddressdetails\">DRPEntitySummaryIpAddressDetails</h2>\n<p>  DRP Entity Summary IP Address Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>asn</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>city</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>country</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ipAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>isp</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>organization</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>region</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummaryipportinspection\">DRPEntitySummaryIpPortInspection</h2>\n<p>  DRP Entity Summary IP Port Inspection </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>banner</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ipAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>port</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>protocol</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>scannedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>service</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymarketplacelisting\">DRPEntitySummaryMarketplaceListing</h2>\n<p>  DRP Entity Summary Marketplace Listing </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>categories</td>\n<td></td>\n<td>DRPEntitySummaryMarketplaceListingCategory</td>\n</tr>\n<tr>\n<td>htmlDescription</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>images</td>\n<td></td>\n<td>DrpReportLargeImageRef</td>\n</tr>\n<tr>\n<td>labels</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>screenshot</td>\n<td></td>\n<td>DrpReportLargeImageRef</td>\n</tr>\n<tr>\n<td>seller</td>\n<td></td>\n<td>DRPEntitySummaryMarketplaceSeller</td>\n</tr>\n<tr>\n<td>soldSince</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>textDescription</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>unitPrices</td>\n<td></td>\n<td>DRPEntitySummaryMarketplaceListingUnitPrice</td>\n</tr>\n<tr>\n<td>uri</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymarketplacelistingcategory\">DRPEntitySummaryMarketplaceListingCategory</h2>\n<p>  DRP Entity Summary Marketplace Listing Category </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>label</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>parent</td>\n<td></td>\n<td>DRPEntitySummaryMarketplaceListingSimpleCategory</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymarketplacelistingsimplecategory\">DRPEntitySummaryMarketplaceListingSimpleCategory</h2>\n<p>  DRP Entity Summary Marketplace Listing Simple Category </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>label</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymarketplacelistingunitprice\">DRPEntitySummaryMarketplaceListingUnitPrice</h2>\n<p>  DRP Entity Summary Marketplace Listing Unit Price </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>amount</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>currency</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymarketplaceseller\">DRPEntitySummaryMarketplaceSeller</h2>\n<p>  DRP Entity Summary Marketplace Seller </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>avatar</td>\n<td></td>\n<td>DrpReportLargeImageRef</td>\n</tr>\n<tr>\n<td>badges</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>contactMethods</td>\n<td></td>\n<td>DRPEntitySummaryMarketplaceSellerContactMethod</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>joinDate</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastOnline</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>publicPgpKey</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>uri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>username</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymarketplacesellercontactmethod\">DRPEntitySummaryMarketplaceSellerContactMethod</h2>\n<p>  DRP Entity Summary Marketplace Seller Contact Method </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>seller</td>\n<td></td>\n<td>DRPEntitySummaryMarketplaceSeller</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>MarketplaceSellerContactMethodProtocol</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymessage\">DRPEntitySummaryMessage</h2>\n<p>  DRP Entity Summary Message </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>content</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>nickname</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sent</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>username</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarymobileappprimary\">DRPEntitySummaryMobileAppPrimary</h2>\n<p>  DRP Entity Summary Mobile App Primary </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>appId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>developer</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>packageName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>storeUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>versionCode</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>versionName</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarysecuresocketinspection\">DRPEntitySummarySecureSocketInspection</h2>\n<p>  DRP Entity Summary Secure Socket Inspection </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>certificateChain</td>\n<td></td>\n<td>DRPEntitySummaryX509CertificateRecord</td>\n</tr>\n<tr>\n<td>handshakeSuccessful</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>host</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>knownIssues</td>\n<td></td>\n<td>DRPEntitySummarySecureSocketsKnownIssueSpec</td>\n</tr>\n<tr>\n<td>port</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>protocol</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>supportedCipherSuites</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarysecuresocketinspectionprimarypage\">DRPEntitySummarySecureSocketInspectionPrimaryPage</h2>\n<p>  DRP Entity Summary Secure Socket Inspection Primary Page </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>content</td>\n<td></td>\n<td>SecureSocketInspectionPrimary</td>\n</tr>\n<tr>\n<td>currentPage</td>\n<td></td>\n<td>SearchLightPagination</td>\n</tr>\n<tr>\n<td>total</td>\n<td></td>\n<td>Long</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarysecuresocketsknownissuespec\">DRPEntitySummarySecureSocketsKnownIssueSpec</h2>\n<p>  DRP Entity Summary Secure Sockets Known Issue Spec </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>affectedProtocols</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>issueId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>recommendation</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummarywhoisnetwork\">DRPEntitySummaryWhoisNetwork</h2>\n<p>  The inner WhoisNetwork object </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>abuseEmail</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>autonomousSystemNumber</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>captured</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>range</td>\n<td></td>\n<td>DRPAssetNetRange</td>\n</tr>\n<tr>\n<td>registry</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpentitysummaryx509certificaterecord\">DRPEntitySummaryX509CertificateRecord</h2>\n<p>  DRP Entity Summary X509 Certificate Record </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fingerprint</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>issuerDistinguishedName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>notAfter</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>notBefore</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>publicKeyAlgorithm</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>serialNumber</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>signatureAlgorithm</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>subjectDistinguishedName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexposedaccesskeydata\">DRPExposedAccessKeyData</h2>\n<p>  DRP Exposed Access Key Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessKeyType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>authors</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>firstExposed</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>key</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>latestSource</td>\n<td></td>\n<td>DRPExposedAccessKeySource</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>secret</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceSummaries</td>\n<td></td>\n<td>DRPExposedAccessKeySourceSummary</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexposedaccesskeysource\">DRPExposedAccessKeySource</h2>\n<p>  DRP Exposed Access Key Source </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>authorDetails</td>\n<td></td>\n<td>DRPCommitUser</td>\n</tr>\n<tr>\n<td>contentUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>filename</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>groupUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>latestSourceDetails</td>\n<td></td>\n<td>DRPExternalSourceSpecificDetails</td>\n</tr>\n<tr>\n<td>matches</td>\n<td></td>\n<td>DRPTextMatch</td>\n</tr>\n<tr>\n<td>sourceType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexposedaccesskeysourcesummary\">DRPExposedAccessKeySourceSummary</h2>\n<p>  DRP Exposed Access Key Source Summary </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>count</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>sourceHost</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexposedcommercialdocumentdata\">DRPExposedCommercialDocumentData</h2>\n<p>  DRP Exposed Commercial Document Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td></td>\n<td>DRPFileDetails</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>DRPSourceDetails</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexposedport\">DRPExposedPort</h2>\n<p>  DRP Exposed Port </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>banner</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>detectedClosed</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>ipPortInspectionReview</td>\n<td></td>\n<td>DRPIpPortInspectionReview</td>\n</tr>\n<tr>\n<td>portNumber</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>scannedOn</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>transport</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexposedportdata\">DRPExposedPortData</h2>\n<p>  DRP Exposed Port Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exposedPorts</td>\n<td></td>\n<td>DRPExposedPort</td>\n</tr>\n<tr>\n<td>ipAddressDetails</td>\n<td></td>\n<td>DRPIPAddressDetails</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexposedtechnicaldocumentdata\">DRPExposedTechnicalDocumentData</h2>\n<p>  DRP Exposed Technical Document Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td></td>\n<td>DRPFileDetails</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>DRPSourceDetails</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexternallogodetections\">DRPExternalLogoDetections</h2>\n<p>  DRP External Logo Detections </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>asset</td>\n<td></td>\n<td>Asset</td>\n</tr>\n<tr>\n<td>detections</td>\n<td></td>\n<td>DRPLogoDetection</td>\n</tr>\n<tr>\n<td>logo</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>total</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpexternalsourcespecificdetails\">DRPExternalSourceSpecificDetails</h2>\n<p>  DRP External Source Specific Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>commitCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>contributorCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>repositoryDetails</td>\n<td></td>\n<td>DRPGitRepository</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpfiledetails\">DRPFileDetails</h2>\n<p>  DRP File Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contentHashes</td>\n<td></td>\n<td>DRPContentHashes</td>\n</tr>\n<tr>\n<td>firstCollected</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastModified</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td></td>\n<td>DRPFileMetadata</td>\n</tr>\n<tr>\n<td>pdfPreview</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>screenshot</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpfilegroup\">DRPFileGroup</h2>\n<p>  DRP File Group </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AUDIO_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>BACKUP_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>CAD_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPRESSED_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>DATABASE_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>DATA_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>DEVELOPER_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>DISK_IMAGE_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>ENCODED_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>EXECUTABLE_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>FONT_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>GAME_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>GIS_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>MISC_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>PAGE_LAYOUT_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>PLUGIN_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>RASTER_IMAGE_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>SETTINGS_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>SPREADSHEET_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>SYSTEM_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>TEXT_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>THREE_D_IMAGE_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>VECTOR_IMAGE_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>VIDEO_FILES</td>\n<td></td>\n</tr>\n<tr>\n<td>WEB_FILES</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpfiletypesummary\">DRPFileTypeSummary</h2>\n<p>  DRP File Type Summary </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>count</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>extension</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>group</td>\n<td></td>\n<td>DRPFileGroup</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpfilemetadata\">DRPFileMetadata</h2>\n<p>  DRP File Metadata </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessControl</td>\n<td></td>\n<td>DRPAccessControl</td>\n</tr>\n<tr>\n<td>content</td>\n<td></td>\n<td>DRPContentDetails</td>\n</tr>\n<tr>\n<td>customMetadata</td>\n<td></td>\n<td>DRPUnknownMetadata</td>\n</tr>\n<tr>\n<td>ownership</td>\n<td></td>\n<td>DRPOwnershipDetails</td>\n</tr>\n<tr>\n<td>software</td>\n<td></td>\n<td>DRPSoftwareDetails</td>\n</tr>\n<tr>\n<td>statistics</td>\n<td></td>\n<td>DRPStatistics</td>\n</tr>\n<tr>\n<td>timeline</td>\n<td></td>\n<td>DRPTimeline</td>\n</tr>\n<tr>\n<td>unknownMetadata</td>\n<td></td>\n<td>DRPUnknownMetadata</td>\n</tr>\n<tr>\n<td>xmpMediaManagement</td>\n<td></td>\n<td>DRPXmpMediaManagement</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpgeospatial\">DRPGeospatial</h2>\n<p>  DRP Geospatial </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>city</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>country</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpgithubrepositorydetails\">DRPGithubRepositoryDetails</h2>\n<p>  GitHub‐specific repository details, Github-specific fields: pushed, programmingLanguage, mirrorUri </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>forksCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>homepage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>mirrorUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerEmail</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerUsername</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>privateRepo</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>programmingLanguage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>pushed</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>readme</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>size</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>DRPRepositoryType</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>watchersCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpgitlabrepositorydetails\">DRPGitlabRepositoryDetails</h2>\n<p>  GitLab‐specific repository details, GitLab-specific field: parent </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>forksCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>homepage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerEmail</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerUsername</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>parent</td>\n<td></td>\n<td>DRPGitlabRepositoryDetails</td>\n</tr>\n<tr>\n<td>privateRepo</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>readme</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>size</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>DRPRepositoryType</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>watchersCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpgitrepository\">DRPGitRepository</h2>\n<p>  DRP Git Repository </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fork</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>forksCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>homepage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>mirrorUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerEmail</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerUsername</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>parent</td>\n<td></td>\n<td>DRPHostingSpecificRepositoryDetails</td>\n</tr>\n<tr>\n<td>privateRepo</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>programmingLanguage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>pushed</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>readme</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>size</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>DRPHostingSpecificRepositoryDetails</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>watchersCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drphostingspecificrepositorydetails\">DRPHostingSpecificRepositoryDetails</h2>\n<p>  Hosting‐specific subset of repository details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>forksCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>homepage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerEmail</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ownerUsername</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>privateRepo</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>readme</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>size</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>DRPRepositoryType</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>watchersCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drphtmlhistorydetail\">DRPHtmlHistoryDetail</h2>\n<p>  DRP Html History Detail </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fileUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>matches</td>\n<td></td>\n<td>DRPMatchDetail</td>\n</tr>\n<tr>\n<td>sourceCodeUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpimpersonatingcompanyprofiledata\">DRPImpersonatingCompanyProfileData</h2>\n<p>  DRP Impersonating Company Profile Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accountCreated</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>biography</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>capturedDate</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>collectedBy</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>containsBrandImagery</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>containsEmployeeImagery</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>domainName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>followerCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>followingCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>handle</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostname</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastActive</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>likeCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>pageTitle</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>postCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>verified</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>webpageContent</td>\n<td></td>\n<td>DRPWebpageContent</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpimpersonatingdomain\">DRPImpersonatingDomain</h2>\n<p>  DRP Impersonating Domain </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>associatedUrls</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>collected</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>dnsRecords</td>\n<td></td>\n<td>DRPDnsResourceRecord</td>\n</tr>\n<tr>\n<td>domainContent</td>\n<td></td>\n<td>DRPDomainContent</td>\n</tr>\n<tr>\n<td>isNewlyRegistered</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tld</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>whois</td>\n<td></td>\n<td>DRPWhoIs</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpimpersonatingdomaindata\">DRPImpersonatingDomainData</h2>\n<p>  DRP Impersonating Domain Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>externalLogoDetections</td>\n<td></td>\n<td>DRPExternalLogoDetections</td>\n</tr>\n<tr>\n<td>impersonatingDomain</td>\n<td></td>\n<td>DRPImpersonatingDomain</td>\n</tr>\n<tr>\n<td>reportedContent</td>\n<td></td>\n<td>DRPReportedContent</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpimpersonatingemployeeprofiledata\">DRPImpersonatingEmployeeProfileData</h2>\n<p>  DRP Impersonating Employee Profile Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accountCreated</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>biography</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>capturedDate</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>collectedBy</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>containsBrandImagery</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>containsEmployeeImagery</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>domainName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>followerCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>followingCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>handle</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostname</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastActive</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>likeCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>pageTitle</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>postCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>verified</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>webpageContent</td>\n<td></td>\n<td>DRPWebpageContent</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpimpersonatingsubdomaindata\">DRPImpersonatingSubdomainData</h2>\n<p>  DRP Impersonating Subdomain Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>externalDomainContentMatches</td>\n<td></td>\n<td>DRPHtmlHistoryDetail</td>\n</tr>\n<tr>\n<td>externalLogoDetections</td>\n<td></td>\n<td>DRPExternalLogoDetections</td>\n</tr>\n<tr>\n<td>reportedContent</td>\n<td></td>\n<td>DRPReportedContent</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>subdomain</td>\n<td></td>\n<td>DRPSubdomain</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpiofsstatistics\">DRPIofsStatistics</h2>\n<p>  DRP IOFS Statistics </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>earliestModifiedDateTime</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>fileSummaries</td>\n<td></td>\n<td>DRPFileTypeSummary</td>\n</tr>\n<tr>\n<td>from</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>latestModifiedDateTime</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>to</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>totalFileCount</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>totalFileSizeBytes</td>\n<td></td>\n<td>Long</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpipaddressdetails\">DRPIPAddressDetails</h2>\n<p>  DRP IP Address Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>captured</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>ipAddress</td>\n<td></td>\n<td>InetAddress</td>\n</tr>\n<tr>\n<td>location</td>\n<td></td>\n<td>DRPGeospatial</td>\n</tr>\n<tr>\n<td>reverseDomainNames</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>serviceProvider</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpipportdetails\">DRPIpPortDetails</h2>\n<p>  DRP IP Port Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>iofsStatistics</td>\n<td></td>\n<td>DRPIofsStatistics</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpipportinspectionreview\">DRPIpPortInspectionReview</h2>\n<p>  DRP Ip Port Inspection Review </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>ipPortInspectionStatus</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>portNumber</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpipporttransport\">DRPIpPortTransport</h2>\n<p>  DRP IP Port Transport </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>portInspectionDetails</td>\n<td></td>\n<td>DRPIpPortDetails</td>\n</tr>\n<tr>\n<td>portNumber</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>transport</td>\n<td></td>\n<td>DRPTransportProtocol</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drplogodetection\">DRPLogoDetection</h2>\n<p>  DRP Logo Detection </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>confidenceScore</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>matchCount</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpmagnitudeofloss\">DRPMagnitudeOfLoss</h2>\n<p>  DRP Magnitude Of Loss </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assetWeightedRiskScore</td>\n<td></td>\n<td>DRPAssetWeightedRiskScore</td>\n</tr>\n<tr>\n<td>mostLikelyThreatScore</td>\n<td></td>\n<td>DRPThreatScore</td>\n</tr>\n<tr>\n<td>score</td>\n<td></td>\n<td>Float</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpmarkeddocumentdata\">DRPMarkedDocumentData</h2>\n<p>  DRP Marked Document Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td></td>\n<td>DRPFileDetails</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>DRPSourceDetails</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpmatchdetail\">DRPMatchDetail</h2>\n<p>  DRP Match Detail </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>matchType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>matchValue</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>snippets</td>\n<td></td>\n<td>DRPSnippetDetail</td>\n</tr>\n<tr>\n<td>total</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drporiginatingalert\">DRPOriginatingAlert</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alertData</td>\n<td></td>\n<td>DRPOriginatingAlertData</td>\n</tr>\n<tr>\n<td>alertType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>assetMatches</td>\n<td></td>\n<td>DRPAsset</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>deletedAssets</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>logoDetections</td>\n<td></td>\n<td>DRPExternalLogoDetections</td>\n</tr>\n<tr>\n<td>raisedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>riskFunctionId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskScoreAssessment</td>\n<td></td>\n<td>DRPRiskScoreAssessment</td>\n</tr>\n<tr>\n<td>shortCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>supersededBy</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drporiginatingalertdata\">DRPOriginatingAlertData</h2>\n<p> Interface for all of the various risk type specific data structures.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>riskType</td>\n<td>The interface requires at least 1 field. None of the children will share any other fields but this one.</td>\n<td>DRPRiskType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drporiginatingincident\">DRPOriginatingIncident</h2>\n<p>  DRP Originating Incident </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alerted</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>closedSource</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>entitySummary</td>\n<td></td>\n<td>DRPEntitySummary</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>impactDescription</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>internal</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>linkedContentIncidents</td>\n<td></td>\n<td>DrpReportLinkedContentIncident</td>\n</tr>\n<tr>\n<td>modified</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>occurred</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>published</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>restrictedContent</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>review</td>\n<td></td>\n<td>DRPReview</td>\n</tr>\n<tr>\n<td>riskAssessment</td>\n<td></td>\n<td>DRPRiskAssessment</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>scope</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>score</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tags</td>\n<td></td>\n<td>DRPTag</td>\n</tr>\n<tr>\n<td>takedownRequestCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>verified</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drporiginator\">DRPOriginator</h2>\n<p>  Drp Originator </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alert</td>\n<td></td>\n<td>DRPOriginatingAlert</td>\n</tr>\n<tr>\n<td>incident</td>\n<td></td>\n<td>DRPOriginatingIncident</td>\n</tr>\n<tr>\n<td>originatorType</td>\n<td></td>\n<td>DRPOriginatorType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drporiginatortype\">DRPOriginatorType</h2>\n<p>  Type of Drp Originator </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ALERT</td>\n<td></td>\n</tr>\n<tr>\n<td>INCIDENT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpownershipdetails\">DRPOwnershipDetails</h2>\n<p>  DRP Ownership Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>author</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>company</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>initialAuthor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastAuthor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>manager</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>publisher</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpphishingsite\">DRPPhishingSite</h2>\n<p>  DRP Phishing Site </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>capturedData</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>dnsRecords</td>\n<td></td>\n<td>DRPDnsResourceRecord</td>\n</tr>\n<tr>\n<td>domainName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostname</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tweetContent</td>\n<td></td>\n<td>DRPTweetContent</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>webpageContent</td>\n<td></td>\n<td>DRPWebpageContent</td>\n</tr>\n<tr>\n<td>whois</td>\n<td></td>\n<td>DRPWhoIs</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpphishingsitedata\">DRPPhishingSiteData</h2>\n<p>  DRP Phishing Site Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>phishingSite</td>\n<td></td>\n<td>DRPPhishingSite</td>\n</tr>\n<tr>\n<td>reportedContent</td>\n<td></td>\n<td>DRPReportedContent</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportassettype\">DrpReportAssetType</h2>\n<p> Represents valid asset type used for Triage Item Filter</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCESS_KEY</td>\n<td></td>\n</tr>\n<tr>\n<td>ACCESS_KEY_HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>BRAND</td>\n<td></td>\n</tr>\n<tr>\n<td>CODE_FORMAT</td>\n<td></td>\n</tr>\n<tr>\n<td>CODE_REPOSITORY</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPANY</td>\n<td></td>\n</tr>\n<tr>\n<td>DLP_IDENTIFIER</td>\n<td></td>\n</tr>\n<tr>\n<td>DOCUMENT_MARKING</td>\n<td></td>\n</tr>\n<tr>\n<td>DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL_KEYWORD</td>\n<td></td>\n</tr>\n<tr>\n<td>IIN</td>\n<td></td>\n</tr>\n<tr>\n<td>KEY_STAFF_MEMBER</td>\n<td></td>\n</tr>\n<tr>\n<td>MOBILE_APP</td>\n<td></td>\n</tr>\n<tr>\n<td>MOBILE_APP_KEYWORD</td>\n<td></td>\n</tr>\n<tr>\n<td>NET_RANGE</td>\n<td></td>\n</tr>\n<tr>\n<td>PACKAGE_NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>PHONE_NUMBER</td>\n<td></td>\n</tr>\n<tr>\n<td>SENSITIVE_CODE_IDENTIFIER</td>\n<td></td>\n</tr>\n<tr>\n<td>SENSITIVE_KEYWORD</td>\n<td></td>\n</tr>\n<tr>\n<td>SERVER_FORMAT</td>\n<td></td>\n</tr>\n<tr>\n<td>SERVER_NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>SOCIAL_MEDIA_HASHTAG</td>\n<td></td>\n</tr>\n<tr>\n<td>SOCIAL_MEDIA_PROFILE</td>\n<td></td>\n</tr>\n<tr>\n<td>SUPPLIER</td>\n<td></td>\n</tr>\n<tr>\n<td>UNRECOGNIZED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportclassificationsandriskfactorsinput\">DrpReportClassificationsAndRiskFactorsInput</h2>\n<p> Represents classification and associated risk factors input provided for Triage Item Filtering</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>classification</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskFactorKeys</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportcustomtriagetablewidgetdatalabels\">DrpReportCustomTriageTableWidgetDataLabels</h2>\n<p> Assets Label for CustomTriageTableWidget</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportcustomtriagetablewidgetdatariskattribute\">DrpReportCustomTriageTableWidgetDataRiskAttribute</h2>\n<p> Assets Risk Attribute for CustomTriageTableWidget</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>current</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>maximum</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportedcontent\">DRPReportedContent</h2>\n<p>  DRP Reported Content </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contentUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>domainName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>NOTE not sent from searchlight-proxy</td>\n<td>String</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User that reported the content</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportimageref\">DrpReportImageRef</h2>\n<p> Represents a screenshot of the source, if available</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>link</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>restricted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportincidentscope\">DrpReportIncidentScope</h2>\n<p> Represents valid values for Incident scope</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GLOBAL</td>\n<td></td>\n</tr>\n<tr>\n<td>ORGANIZATION</td>\n<td></td>\n</tr>\n<tr>\n<td>REFERENCE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportincidentseverity\">DrpReportIncidentSeverity</h2>\n<p> Represents valid incident severity</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n<tr>\n<td>NONE</td>\n<td></td>\n</tr>\n<tr>\n<td>VERY_HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>VERY_LOW</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportlargeimageref\">DrpReportLargeImageRef</h2>\n<p> Represents a screenshot of the source, if available</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>link</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>restricted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>thumbnail</td>\n<td></td>\n<td>DrpReportImageRef</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportlinkedcontentincident\">DrpReportLinkedContentIncident</h2>\n<p> Represents linked content incident</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>occurred</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>scope</td>\n<td></td>\n<td>DrpReportIncidentScope</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>DrpReportIncidentSeverity</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportrisksize\">DrpReportRiskSize</h2>\n<p> Represents valid Risk Size used for Triage Item Filter</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n<tr>\n<td>NONE</td>\n<td></td>\n</tr>\n<tr>\n<td>VERY_HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>VERY_LOW</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportrisktype\">DrpReportRiskType</h2>\n<p> Represents valid take Risk Type used for Triage Item Filter</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ASSOCIATION_WITH_MALWARE</td>\n<td></td>\n</tr>\n<tr>\n<td>ASSOCIATION_WITH_PHISHING_KIT</td>\n<td></td>\n</tr>\n<tr>\n<td>CCR_BRAND</td>\n<td></td>\n</tr>\n<tr>\n<td>CCR_TECH</td>\n<td></td>\n</tr>\n<tr>\n<td>CCR_THREAT</td>\n<td></td>\n</tr>\n<tr>\n<td>COUNTERFEIT_CURRENCY</td>\n<td></td>\n</tr>\n<tr>\n<td>CREDENTIAL_EXPOSURE</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOM_CLIENT_REQUEST</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_ADVERSARY_IMPACT</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_CREDENTIAL_ACCESS</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_INITIAL_ACCESS</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_RECONNAISSANCE</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_RESOURCE_DEVELOPMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPIRED_CERTIFICATE</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_ACCESS_KEY</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_CLOUD_SERVICE</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_COMMERCIAL_DOCUMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_CUSTOMER_ACCOUNT</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_DEVICE</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_EMPLOYEE_PII</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_PAYMENT_CARD</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_TECHNICAL_DOCUMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL_BRAND</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL_TECH</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL_THREAT</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_COMPANY_PROFILE</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_EMPLOYEE_PROFILE</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_MOBILE_APP</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_SUBDOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>LEAKED_SENSITIVE_CODE</td>\n<td></td>\n</tr>\n<tr>\n<td>LEAKED_SENSITIVE_TECHNOLOGY</td>\n<td></td>\n</tr>\n<tr>\n<td>MARKED_DOCUMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>MENTION_BY_A_THREAT_ACTOR</td>\n<td></td>\n</tr>\n<tr>\n<td>MENTION_IN_RELATION_TO_A_TTP</td>\n<td></td>\n</tr>\n<tr>\n<td>MISCONFIGURED_WEB_SERVER</td>\n<td></td>\n</tr>\n<tr>\n<td>NEGATIVE_PUBLICITY</td>\n<td></td>\n</tr>\n<tr>\n<td>OPEN_PORT</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_REPORT</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_SITE</td>\n<td></td>\n</tr>\n<tr>\n<td>REPORTED_DATA_BREACH</td>\n<td></td>\n</tr>\n<tr>\n<td>REPORT_OF_BOTNET_ACTIVITY</td>\n<td></td>\n</tr>\n<tr>\n<td>REPORT_OF_TECHNICAL_VULNERABILITY</td>\n<td></td>\n</tr>\n<tr>\n<td>REVOKED_CERTIFICATE</td>\n<td></td>\n</tr>\n<tr>\n<td>SELLING_UNAUTHORIZED_GOODS</td>\n<td></td>\n</tr>\n<tr>\n<td>UNAUTHORIZED_CODE_COMMIT</td>\n<td></td>\n</tr>\n<tr>\n<td>UNRECOGNIZED</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABLE_CERTIFICATE</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABLE_PRODUCT</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABLE_SERVICE</td>\n<td></td>\n</tr>\n<tr>\n<td>WEAK_CERTIFICATE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreportrisktypesandriskfactorsinput\">DrpReportRiskTypesAndRiskFactorsInput</h2>\n<p> Represents risk type and associated risk factors as input for Triage Item Filtering</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>riskFactorKeys</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DrpReportRiskType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreporttriageitemassigneefilterinput\">DrpReportTriageItemAssigneeFilterInput</h2>\n<p> Represents filter to uses provided user id's and flag to include unassigned or not in Triage Item Filtering</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignees</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>includeUnassigned</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreporttriageitemtakedownstate\">DrpReportTriageItemTakedownState</h2>\n<p> Represents valid take down state used for Triage Item Filter</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AVAILABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>CLARIFICATION_PROVIDED</td>\n<td></td>\n</tr>\n<tr>\n<td>CLARIFICATION_REQUIRED</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPLETED</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_REVIEW</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_ENFORCEABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>NO_ACTION_REQUIRED</td>\n<td></td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td></td>\n</tr>\n<tr>\n<td>SUBMITTED</td>\n<td></td>\n</tr>\n<tr>\n<td>TERMINATED</td>\n<td></td>\n</tr>\n<tr>\n<td>UNAVAILABLE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreporttriageitemviewfilterinput\">DrpReportTriageItemViewFilterInput</h2>\n<p> Represents Input for TriageSummary reporting Widget</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>active</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>alertExternalIds</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>alertFingerprints</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>assetLabelIds</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>assetSerialIds</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>assetTypes</td>\n<td></td>\n<td>DrpReportAssetType</td>\n</tr>\n<tr>\n<td>assignees</td>\n<td></td>\n<td>DrpReportTriageItemAssigneeFilterInput</td>\n</tr>\n<tr>\n<td>changed [DEPRECATED]</td>\n<td>[DEPRECATED: Use <code>updated</code> instead. If both <code>changed</code> and <code>updated</code> are provided, <code>updated</code> 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).</td>\n<td>String</td>\n</tr>\n<tr>\n<td>classificationsAndRiskFactors</td>\n<td></td>\n<td>DrpReportClassificationsAndRiskFactorsInput</td>\n</tr>\n<tr>\n<td>clients</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>created</td>\n<td>Filter by creation time range using earliest and latest DateTime values.</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>domain</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>externalIds</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>flagged</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hosts</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>idGreaterThan</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>migrated</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>raised [DEPRECATED]</td>\n<td>[DEPRECATED: Use <code>created</code> instead. If both <code>raised</code> and <code>created</code> are provided, <code>created</code> 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).</td>\n<td>String</td>\n</tr>\n<tr>\n<td>rejectedByRuleSerialId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>riskSizes</td>\n<td></td>\n<td>DrpReportRiskSize</td>\n</tr>\n<tr>\n<td>riskTypesAndRiskFactors</td>\n<td></td>\n<td>DrpReportRiskTypesAndRiskFactorsInput</td>\n</tr>\n<tr>\n<td>shortCodes</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>singleRuleRejection</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>sourceGroups</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceRefs</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceUris</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>statuses</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>superseded</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>systemAction</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>takedownRequested</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>takedownStatuses</td>\n<td></td>\n<td>DrpReportTriageItemTakedownState</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>Filter by last update time range using earliest and latest DateTime values.</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>watched</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drprepository\">DRPRepository</h2>\n<p>  DRP Repository </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drprepositorytype\">DRPRepositoryType</h2>\n<p>  DRP Repository Type </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GITHUB</td>\n<td></td>\n</tr>\n<tr>\n<td>GITLAB</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpreview\">DRPReview</h2>\n<p>  DRP Review </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpriskassessment\">DRPRiskAssessment</h2>\n<p>  DRP Risk Assessment </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assessedOn</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>riskImpact</td>\n<td></td>\n<td>DRPRiskImpact</td>\n</tr>\n<tr>\n<td>riskLevel</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskLikelihood</td>\n<td></td>\n<td>DRPRiskLikelihood</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpriskcalculation\">DRPRiskCalculation</h2>\n<p>  DRP Risk Calculation </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>class</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpriskfactors\">DRPRiskFactors</h2>\n<p>  DRP Risk Factor @deprecated(reason: \"Use the Alert's RiskFactorKeys\") </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assetAccessKey</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>assetTextMatch</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>committedByEmployee</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>exposedOnClientGitRepo</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>exposedOnGitRepo</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>exposedOnPasteSite</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>forkCount</td>\n<td>unauthorized code commit fields</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hasAssetsInContent</td>\n<td>impersonating generic fields</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hasContent</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hasDns</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hasMx</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>highCriticalityKeyType</td>\n<td>exposed access key</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hostingContent</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hostsLoginForm</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>isDnsRecordExists</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>isDomainInThreatFeed</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>isDomainNewlyRegistered</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>isFirstSeenRecently</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>isMxRecordExists</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>isSubdomainInThreatFeed</td>\n<td>impersonating subdomain-specific fields</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>logoDetection</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>newlyRegistered</td>\n<td>impersonating domain-specific fields</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>parkingPage</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>referencingClientContent</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>type [DEPRECATED]</td>\n<td>[DEPRECATED: Use the Alert's RiskFactorKeys.]</td>\n<td>String</td>\n</tr>\n<tr>\n<td>userOwnsRepo</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpriskimpact\">DRPRiskImpact</h2>\n<p>  DRP Risk Impact </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assetIds</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskImpactLevel</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drprisklikelihood\">DRPRiskLikelihood</h2>\n<p>  DRP Risk Likelihood </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>riskFactors</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskLikelihoodLevel</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpriskscore\">DRPRiskScore</h2>\n<p>  DRP Risk Score </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>riskSize</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>score</td>\n<td></td>\n<td>Float</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpriskscoreassessment\">DRPRiskScoreAssessment</h2>\n<p>  DRP Risk Score Assessment </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>calculation</td>\n<td></td>\n<td>DRPRiskCalculation</td>\n</tr>\n<tr>\n<td>likelihoodOfLoss</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>magnitudeOfLoss</td>\n<td></td>\n<td>DRPMagnitudeOfLoss</td>\n</tr>\n<tr>\n<td>riskFactors</td>\n<td></td>\n<td>DRPRiskFactors</td>\n</tr>\n<tr>\n<td>riskScore</td>\n<td></td>\n<td>DRPRiskScore</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drprisktype\">DRPRiskType</h2>\n<p>  Risk Type ENUM for DRP Alert. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ASSOCIATION_WITH_MALWARE</td>\n<td></td>\n</tr>\n<tr>\n<td>ASSOCIATION_WITH_PHISHING_KIT</td>\n<td></td>\n</tr>\n<tr>\n<td>CCR_BRAND</td>\n<td></td>\n</tr>\n<tr>\n<td>CCR_TECH</td>\n<td></td>\n</tr>\n<tr>\n<td>CCR_THREAT</td>\n<td></td>\n</tr>\n<tr>\n<td>COUNTERFEIT_CURRENCY</td>\n<td></td>\n</tr>\n<tr>\n<td>CREDENTIAL_EXPOSURE</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOM_CLIENT_REQUEST</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_ADVERSARY_IMPACT</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_CREDENTIAL_ACCESS</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_INITIAL_ACCESS</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_RECONNAISSANCE</td>\n<td></td>\n</tr>\n<tr>\n<td>EVIDENCE_OF_RESOURCE_DEVELOPMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPIRED_CERTIFICATE</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_ACCESS_KEY</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_CLOUD_SERVICE</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_COMMERCIAL_DOCUMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_CUSTOMER_ACCOUNT</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_DEVICE</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_EMPLOYEE_PII</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_PAYMENT_CARD</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPOSED_TECHNICAL_DOCUMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL_BRAND</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL_TECH</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL_THREAT</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_COMPANY_PROFILE</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_EMPLOYEE_PROFILE</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_MOBILE_APP</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPERSONATING_SUBDOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>LEAKED_SENSITIVE_CODE</td>\n<td></td>\n</tr>\n<tr>\n<td>LEAKED_SENSITIVE_TECHNOLOGY</td>\n<td></td>\n</tr>\n<tr>\n<td>MARKED_DOCUMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>MENTION_BY_A_THREAT_ACTOR</td>\n<td></td>\n</tr>\n<tr>\n<td>MENTION_IN_RELATION_TO_A_TTP</td>\n<td></td>\n</tr>\n<tr>\n<td>MISCONFIGURED_WEB_SERVER</td>\n<td></td>\n</tr>\n<tr>\n<td>NEGATIVE_PUBLICITY</td>\n<td></td>\n</tr>\n<tr>\n<td>OPEN_PORT</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_REPORT</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_SITE</td>\n<td></td>\n</tr>\n<tr>\n<td>REPORTED_DATA_BREACH</td>\n<td></td>\n</tr>\n<tr>\n<td>REPORT_OF_BOTNET_ACTIVITY</td>\n<td></td>\n</tr>\n<tr>\n<td>REPORT_OF_TECHNICAL_VULNERABILITY</td>\n<td></td>\n</tr>\n<tr>\n<td>SELLING_UNAUTHORIZED_GOODS</td>\n<td></td>\n</tr>\n<tr>\n<td>UNAUTHORIZED_CODE_COMMIT</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n<tr>\n<td>UNRECOGNIZED</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABLE_CERTIFICATE</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABLE_PRODUCT</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABLE_SERVICE</td>\n<td></td>\n</tr>\n<tr>\n<td>WEAK_CERTIFICATE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpsnippetdetail\">DRPSnippetDetail</h2>\n<p>  DRP Snippet Detail </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>htmlSnippet</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>length</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>lineNumber</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>offset</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>referencingClientContent</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpsoftwaredetails\">DRPSoftwareDetails</h2>\n<p>  DRP Software Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>application</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>applicationVersion</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>creator</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>pdfExtensionVersion</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>producer</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>template</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpsourcedetails\">DRPSourceDetails</h2>\n<p>  DRP Source Details </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ipAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>location</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceStatus</td>\n<td></td>\n<td>DRPSourceStatus</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpsourcestatus\">DRPSourceStatus</h2>\n<p>  DRP Source Status </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstSeen</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastAvailable</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastCheckedAt</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpstatistics\">DRPStatistics</h2>\n<p>  DRP Statistics </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>characterCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>characterCountWithSpaces</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>editTime</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>editingCycles</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>imageCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>lineCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>objectCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>pageCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>paragraphCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>slideCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>tableCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>totalTime</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>wordCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpsubdomain\">DRPSubdomain</h2>\n<p>  DRP Subdomain </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>associatedUrls</td>\n<td></td>\n<td>DRPAssociatedUrl</td>\n</tr>\n<tr>\n<td>collected</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>content</td>\n<td></td>\n<td>DRPDomainContent</td>\n</tr>\n<tr>\n<td>dnsRecords</td>\n<td></td>\n<td>DRPDnsResourceRecord</td>\n</tr>\n<tr>\n<td>firstSeen</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>parentName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>parentWhois</td>\n<td></td>\n<td>DRPWhoIs</td>\n</tr>\n<tr>\n<td>tld</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drptag\">DRPTag</h2>\n<p>  DRP Tag </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drptextmatch\">DRPTextMatch</h2>\n<p>  DRP Text Match </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>matchText</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>offset</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>snippet</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpthreatscore\">DRPThreatScore</h2>\n<p>  DRP Threat Score </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>competitiveAdvantage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>legal</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>productivity</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>replacement</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>reputation</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>response</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>score</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>threat</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drptimeline\">DRPTimeline</h2>\n<p>  DRP Timeline </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>modified</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>printed</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>saved</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drptransportprotocol\">DRPTransportProtocol</h2>\n<p>  DRP Transport Protocol </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TCP</td>\n<td></td>\n</tr>\n<tr>\n<td>UDP</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drptweetcontent\">DRPTweetContent</h2>\n<p>  DRP Tweet Content </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>captured</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>imageUris</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>likes</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>posted</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>profileImageUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>retweeted</td>\n<td></td>\n<td>DRPTweetContent</td>\n</tr>\n<tr>\n<td>retweets</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>screenName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tweetBody</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tweetUri</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>verified</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpunauthorizedcodecommitdata\">DRPUnauthorizedCodeCommitData</h2>\n<p>  DRP Unauthorized Code Commit Data </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>commit</td>\n<td></td>\n<td>DRPCommitDetails</td>\n</tr>\n<tr>\n<td>email</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>gitEmailSource</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>latestCommitSha</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>latestCommitTimestamp</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>repositoriesCommittedCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>repositoriesCommittedTo</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>riskType</td>\n<td></td>\n<td>DRPRiskType</td>\n</tr>\n<tr>\n<td>sourceRepositoryUrl</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>topRepository</td>\n<td></td>\n<td>DRPGitRepository</td>\n</tr>\n<tr>\n<td>uniqueCommitCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>DRPCommitUser</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpunknownmetadata\">DRPUnknownMetadata</h2>\n<p>  DRP Unknown Metadata </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>key</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>value</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpvalidationresponse\">DRPValidationResponse</h2>\n<p>  DRP Validation Response </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>state</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>unknownReason</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpwebpagecontent\">DRPWebpageContent</h2>\n<p>  DRP Webpage Content </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>collected</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>screenshotUri</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpwhois\">DRPWhoIs</h2>\n<p>  DRP Who Is </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contacts</td>\n<td></td>\n<td>DRPWhoIsContact</td>\n</tr>\n<tr>\n<td>created</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>domainName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>expires</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>registrarAbuseEmail</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>registrarAbusePhone</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>registrarId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>registrarName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>updated</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpwhoiscontact\">DRPWhoIsContact</h2>\n<p>  DRP Who Is Contact </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>city</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>contactType</td>\n<td></td>\n<td>DRPWhoIsContactType</td>\n</tr>\n<tr>\n<td>country</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>email</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fax</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>faxExt</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>organization</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>phone</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>phoneExt</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>street</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpwhoiscontacttype\">DRPWhoIsContactType</h2>\n<p>  DRP Who Is Contact Type </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ADMIN</td>\n<td></td>\n</tr>\n<tr>\n<td>BILLING</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>REGISTRANT</td>\n<td></td>\n</tr>\n<tr>\n<td>TECH</td>\n<td></td>\n</tr>\n<tr>\n<td>ZONE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"drpxmpmediamanagement\">DRPXmpMediaManagement</h2>\n<p>  DRP Xmp Media Management </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>derivedFromDocumentId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>derivedFromInstanceId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>documentId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>historyAction</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>historyInstanceId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>historySoftwareAgent</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>historyWhen</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>instanceId</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"inetaddress\">InetAddress</h2>\n<p>  Inet Address </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>canonicalHostName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostName</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"marketplacesellercontactmethodprotocol\">MarketplaceSellerContactMethodProtocol</h2>\n<p>  Marketplace Seller Contact Method Protocol </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AOL</td>\n<td></td>\n</tr>\n<tr>\n<td>EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>ICQ</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>XMPP</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"searchlightpagination\">SearchLightPagination</h2>\n<p>  Search Light Pagination </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offset</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>size</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"securesocketinspectionprimary\">SecureSocketInspectionPrimary</h2>\n<p>  Secure Socket Inspection Primary </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cipherSuite</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>handshakeSuccessful</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>host</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>inspectedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>inspectionId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>port</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>protocol</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"takedown\">Takedown</h2>\n<p>  Takedown schema. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>TakedownState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"takedownstate\">TakedownState</h2>\n<p>  Takedown State ENUM. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AVAILABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>CLARIFICATION_PROVIDED</td>\n<td></td>\n</tr>\n<tr>\n<td>CLARIFICATION_REQUIRED</td>\n<td></td>\n</tr>\n<tr>\n<td>COMPLETED</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_REVIEW</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_ENFORCEABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>NO_ACTION_REQUIRED</td>\n<td></td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td></td>\n</tr>\n<tr>\n<td>SUBMITTED</td>\n<td></td>\n</tr>\n<tr>\n<td>TERMINATED</td>\n<td></td>\n</tr>\n<tr>\n<td>UNAVAILABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatedrpalertstateinput\">UpdateDrpAlertStateInput</h2>\n<p>  DRP Update Alert State Input </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>drpAlert</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>DRPAlertState</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3793b0e6-6b43-4a89-88ee-09bc54b2599c","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":"0fdc3eae-52df-4573-bb5f-7096560e6827","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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Create an emergency contact</p>\n<p>Inputs: \nCreateEmergencyContactInput, </p>\n<p>Return: \nCreateEmergencyContactResponse</p>\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":"9494a419-cedb-4c80-98a2-8ca6e16008ec","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\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"onCall\": true,\n        \"phoneNumber\": \"\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"0fdc3eae-52df-4573-bb5f-7096560e6827"},{"name":"deleteEmergencyContact","id":"633a0173-21e0-4a8c-969d-cb0f05345d4b","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteEmergencyContact ($id: ID!) {\n    deleteEmergencyContact (id: $id) {\n        success\n    }\n}","variables":"{\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete an emergency contact</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nDeleteEmergencyContactResponse</p>\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":"00d1b23b-4aae-47ed-91cb-2a8954865d02","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\": \"<ID HERE>\"\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":"633a0173-21e0-4a8c-969d-cb0f05345d4b"},{"name":"updateCallOrder","id":"c4e3fde3-179f-4fbc-a4ba-a7bf0aa22ee0","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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update an emergency contact's call order within the call tree</p>\n<p>Inputs: \nInt, ID, </p>\n<p>Return: \nUpdateCallOrderResponse</p>\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":"24a36ddb-c313-4d17-8bdc-acf592142aa8","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\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"residency\": \"\",\n            \"slug\": \"\"\n          },\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"onCall\": true,\n          \"phoneNumber\": \"\",\n          \"user\": {\n            \"email\": \"\",\n            \"fullName\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"serviceNowId\": \"\"\n          }\n        }\n      ],\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"c4e3fde3-179f-4fbc-a4ba-a7bf0aa22ee0"},{"name":"updateEmergencyContact","id":"4ca326c0-363c-4522-9160-433e8989a519","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\": \"<ID HERE>\",\n    \"phoneNumber\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update an emergency contact</p>\n<p>Inputs: \nUpdateEmergencyContactInput, </p>\n<p>Return: \nUpdateEmergencyContactResponse</p>\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":"2b017422-4bf0-415a-9f8e-231a3775f5fb","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"onCall\": true,\n        \"phoneNumber\": \"\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"4ca326c0-363c-4522-9160-433e8989a519"}],"id":"edb00c8b-f9b8-4d9b-85fd-948e7f459a38","_postman_id":"edb00c8b-f9b8-4d9b-85fd-948e7f459a38","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":"f5e2b0a6-ad49-4ce0-9f04-265c352218ce","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query emergencyContact ($after: String, $first: Int, $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            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  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"after2\": \"T18w\",\n  \"filter\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after4\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first4\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch an emergency contact by its ID</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nEmergencyContact</p>\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":"c35dec80-bd55-4a24-92c8-b718449fb350","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query emergencyContact ($after: String, $first: Int, $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            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  \"after1\": \"T18w\",\n  \"first1\": 10,\n  \"after2\": \"T18w\",\n  \"filter\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after4\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first4\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\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        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"residency\": \"\",\n        \"slug\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"fullName\": \"\",\n      \"id\": \"<ID HERE>\",\n      \"onCall\": true,\n      \"phoneNumber\": \"\",\n      \"user\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"f5e2b0a6-ad49-4ce0-9f04-265c352218ce"},{"name":"emergencyContacts","id":"d5e25166-252b-4e81-9f70-39a50fdbea44","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":"<p>Query the Emergency contact Call Tree</p>\n<p>Inputs: \nString, EmergencyContactFilter, Int, EmergencyContactOrder, </p>\n<p>Return: \nEmergencyContactConnection</p>\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":"b76edca4-674a-424a-84ce-ec5ed37e68e0","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\": \"<ID HERE>\",\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":"d5e25166-252b-4e81-9f70-39a50fdbea44"}],"id":"96d769b7-827b-470f-9f8b-f5e622efc235","_postman_id":"96d769b7-827b-470f-9f8b-f5e622efc235","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":"2d1890d3-b861-4c9a-983e-032320ffd8d2","description":"<h2 id=\"emergencycontactorderby\">EmergencyContactOrderBy</h2>\n<p> OrderBy ENUM for Emergency Contacts</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CALL_CATEGORY</td>\n<td></td>\n</tr>\n<tr>\n<td>CALL_ORDER</td>\n<td></td>\n</tr>\n<tr>\n<td>FULL_NAME</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"callcategory\">CallCategory</h2>\n<p> Category ENUM for Emergency Contacts</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ENGINEERING</td>\n<td></td>\n</tr>\n<tr>\n<td>INTEL_ADVISORIES</td>\n<td></td>\n</tr>\n<tr>\n<td>SECURITY</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"dayofweek\">DayOfWeek</h2>\n<p> Day ENUM for Call Windows</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FRIDAY</td>\n<td></td>\n</tr>\n<tr>\n<td>MONDAY</td>\n<td></td>\n</tr>\n<tr>\n<td>SATURDAY</td>\n<td></td>\n</tr>\n<tr>\n<td>SUNDAY</td>\n<td></td>\n</tr>\n<tr>\n<td>THURSDAY</td>\n<td></td>\n</tr>\n<tr>\n<td>TUESDAY</td>\n<td></td>\n</tr>\n<tr>\n<td>WEDNESDAY</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"emergencycontactorder\">EmergencyContactOrder</h2>\n<p> Emergency Contact OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CALL_ORDER, direction = ASC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>EmergencyContactOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createemergencycontactinput\">CreateEmergencyContactInput</h2>\n<p> Input to create an Emergency Contact</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>callAttempts</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>callCategories</td>\n<td></td>\n<td>CallCategory</td>\n</tr>\n<tr>\n<td>callOrder</td>\n<td>If the call order is not specified on create, the contact will be added at the bottom of the current call order</td>\n<td>Int</td>\n</tr>\n<tr>\n<td>callWindows</td>\n<td></td>\n<td>CreateCallWindowInput</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td></td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>userId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateemergencycontactinput\">UpdateEmergencyContactInput</h2>\n<p> Input to update an emergency contact</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>callAttempts</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>callCategories</td>\n<td></td>\n<td>CallCategory</td>\n</tr>\n<tr>\n<td>callWindows</td>\n<td></td>\n<td>CreateCallWindowInput</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td></td>\n<td>PhoneNumber</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createcallwindowinput\">CreateCallWindowInput</h2>\n<p> Input to create an emergency contact's call window</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>daysOfWeek</td>\n<td></td>\n<td>DayOfWeek</td>\n</tr>\n<tr>\n<td>endTime</td>\n<td></td>\n<td>LocalTime</td>\n</tr>\n<tr>\n<td>startTime</td>\n<td></td>\n<td>LocalTime</td>\n</tr>\n<tr>\n<td>timeZone</td>\n<td></td>\n<td>IANATimezone</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"emergencycontactfilter\">EmergencyContactFilter</h2>\n<p> Input to filter emergency contacts in the search query</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>available</td>\n<td>Filter by availability. true = They are scheduled at this time, false = they are not scheduled for this time, null for all.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>callCategories</td>\n<td>Filter by the call categories.  Multiple values will match contacts with all categories.  Null will not filter by category.</td>\n<td>CallCategory</td>\n</tr>\n<tr>\n<td>greyMatterUser</td>\n<td>Filter 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.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createemergencycontactresponse\">CreateEmergencyContactResponse</h2>\n<p> Response type for create emergency contact operation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>emergencyContact</td>\n<td></td>\n<td>EmergencyContact</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateemergencycontactresponse\">UpdateEmergencyContactResponse</h2>\n<p> Response type for update emergency contact operation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>emergencyContact</td>\n<td></td>\n<td>EmergencyContact</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"emergencycontactconnection\">EmergencyContactConnection</h2>\n<p> Represents a paginated list of emergency contacts</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>EmergencyContactEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"emergencycontactedge\">EmergencyContactEdge</h2>\n<p> An edge in a connection, representing a single emergency contact</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>EmergencyContact</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"emergencycontact\">EmergencyContact</h2>\n<p> An Emergency Contact, the contact information for an emergency contact on a company's call tree</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>callAttempts</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>callCategories</td>\n<td></td>\n<td>CallCategory</td>\n</tr>\n<tr>\n<td>callOrder</td>\n<td></td>\n<td>Int</td>\n</tr>\n<tr>\n<td>callWindows</td>\n<td></td>\n<td>CallWindow</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>onCall</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td></td>\n<td>PhoneNumber</td>\n</tr>\n<tr>\n<td>user</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"callwindow\">CallWindow</h2>\n<p> The window of availability for an emergency contact</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>daysOfWeek</td>\n<td></td>\n<td>DayOfWeek</td>\n</tr>\n<tr>\n<td>endTime</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>startTime</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>timeZone</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatecallorderresponse\">UpdateCallOrderResponse</h2>\n<p> Response type for an update emergency contact operation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>emergencyContacts</td>\n<td></td>\n<td>EmergencyContact</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deleteemergencycontactresponse\">DeleteEmergencyContactResponse</h2>\n<p> Response type for a delete emergency contact operation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2d1890d3-b861-4c9a-983e-032320ffd8d2","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":"64bee61d-657d-438f-ae5c-d72e18f50c64","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\": \"<ID HERE>\",\n    \"name\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch a field.</p>\n<p>Inputs: \nGreyMatterFieldBy, </p>\n<p>Return: \nGreyMatterField</p>\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":"9f580ea6-44d6-4213-be8f-bc34bdf5c1d9","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n      \"name\": \"\",\n      \"serviceNowName\": \"\",\n      \"type\": \"BOOLEAN\"\n    }\n  }\n}"}],"_postman_id":"64bee61d-657d-438f-ae5c-d72e18f50c64"},{"name":"greymatterFields","id":"7655cb05-2cdf-4ee2-9e8c-cebd77b12de0","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      \"<ID HERE>\"\n    ],\n    \"search\": \"\"\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch fields through pageable connection with filter and order capabilities.</p>\n<p>Inputs: \nString, GreyMatterFieldFilter, Int, GreyMatterFieldOrder, </p>\n<p>Return: \nGreyMatterFieldConnection</p>\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":"6d7c470c-38ef-49f8-b0ea-f7f2219d017f","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      \"<ID HERE>\"\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\": \"<ID HERE>\",\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":"7655cb05-2cdf-4ee2-9e8c-cebd77b12de0"}],"id":"1e5fa735-7cd1-4e2a-8fd7-15a7b9527a53","_postman_id":"1e5fa735-7cd1-4e2a-8fd7-15a7b9527a53","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":"981ff98f-e699-47a0-a7ba-71491c59c5eb","description":"<h2 id=\"greymatterfieldby\">GreyMatterFieldBy</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"greymatterfieldconnection\">GreyMatterFieldConnection</h2>\n<p> Field Connection.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>GreyMatterFieldEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"greymatterfieldedge\">GreyMatterFieldEdge</h2>\n<p> Field Edge.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>GreyMatterField</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"greymatterfieldfilter\">GreyMatterFieldFilter</h2>\n<p> GreyMatterField Filter.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ids</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>search</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"greymatterfieldorderby\">GreyMatterFieldOrderBy</h2>\n<p> The fields that can be used to order the GreyMatterFieldConnection.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>TYPE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"greymatterfieldorder\">GreyMatterFieldOrder</h2>\n<p> GreyMatterField Order criteria. If not set, defaults will be used.\nDefaults: orderBy = NAME, direction = ASC.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>GreyMatterFieldOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"greymatterfield\">GreyMatterField</h2>\n<p> GreyMatterField schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>serviceNowName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>GreyMatterFieldType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"greymatterfieldtype\">GreyMatterFieldType</h2>\n<p> The data type of a field.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BOOLEAN</td>\n<td></td>\n</tr>\n<tr>\n<td>DATETIME</td>\n<td></td>\n</tr>\n<tr>\n<td>IP_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>NUMBER</td>\n<td></td>\n</tr>\n<tr>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"981ff98f-e699-47a0-a7ba-71491c59c5eb","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":"8359022d-ed76-4d40-8afc-74c432fed559","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-07-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":"<p>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.</p>\n<p>Inputs: \nString, IdentityFilter, Int, IdentityOrder, </p>\n<p>Return: \nIdentityConnection</p>\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":"81dd41f0-d8a6-464e-aa12-f19711bb827e","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-07-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-07-01T00:00:00.000Z\",\n            \"group\": [\n              \"\"\n            ],\n            \"id\": \"<ID HERE>\",\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":"8359022d-ed76-4d40-8afc-74c432fed559"}],"id":"43e2b975-c99f-4dc2-b5c7-5590066907d7","_postman_id":"43e2b975-c99f-4dc2-b5c7-5590066907d7","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":"10cf7026-6d44-4e4d-8cdf-d9364c9b097d","description":"<h2 id=\"identity\">Identity</h2>\n<p> Details of Identity</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>Identity createdAt.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>group</td>\n<td>Identity group(s).</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Identity identifier.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Identity name.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>role</td>\n<td>Identity role(s).</td>\n<td>String</td>\n</tr>\n<tr>\n<td>workLocation</td>\n<td>Identity workLocation(s).</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"identityconnection\">IdentityConnection</h2>\n<p> Paginated Identity response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>IdentityEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"identityedge\">IdentityEdge</h2>\n<p> Page of Identity</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Identity</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"identityorderby\">IdentityOrderBy</h2>\n<p> Values supported for order operation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GROUP</td>\n<td></td>\n</tr>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>ROLE</td>\n<td></td>\n</tr>\n<tr>\n<td>WORKLOCATION</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"identityfilter\">IdentityFilter</h2>\n<p> Primary filter to fetch identities</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Identities by created date filter.</td>\n<td>DateFilter</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Groups to filter by.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Roles to filter by.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Identity retrieval based on search text.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>workLocations</td>\n<td>WorkLocations to filter by.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"identityorder\">IdentityOrder</h2>\n<p> Field to retrieve identity based on sort order and field name</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td>Identity sort direction.</td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td>Order to retrieve identities.</td>\n<td>IdentityOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"dateoperator\">DateOperator</h2>\n<p> Date filter allowed values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AFTER</td>\n<td></td>\n</tr>\n<tr>\n<td>BEFORE</td>\n<td></td>\n</tr>\n<tr>\n<td>ON</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"datefilter\">DateFilter</h2>\n<p> Date filter for identity</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>operator</td>\n<td></td>\n<td>DateOperator</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"10cf7026-6d44-4e4d-8cdf-d9364c9b097d","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":"7e41a2e0-929e-4c8c-8988-8a1bb0abd7f3","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\": \"<ID HERE>\",\n    \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n    \"closeNote\": \"\",\n    \"incidentId\": \"<ID HERE>\",\n    \"state\": \"RESOLVED\",\n    \"type\": \"ACKNOWLEDGE\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nAcknowledgeAssignAndCloseIncidentInput, </p>\n<p>Return: \nIncidentResponse</p>\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":"c95f8c93-ce82-405d-9910-babfc7fb7422","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\": \"<ID HERE>\",\n    \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n    \"closeNote\": \"\",\n    \"incidentId\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"7e41a2e0-929e-4c8c-8988-8a1bb0abd7f3"},{"name":"acknowledgeIncident","id":"1511c8f5-7322-4aaf-b504-30a525aaf60d","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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Acknowledge an incident based on the provided input.</p>\n<p>Inputs: \nIncidentAcknowledgementInput, </p>\n<p>Return: \nIncidentResponse</p>\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":"d4d61330-7926-4cca-91c4-36df7036e3ca","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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"id\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"1511c8f5-7322-4aaf-b504-30a525aaf60d"},{"name":"addIncidentComment","id":"fd48923b-3c30-4111-ac68-432b98d1ce63","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-07-01T00:00:00.000Z\",\n    \"latestCreate\": \"2026-07-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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Add comment to incident</p>\n<p>Inputs: \nIncidentCommentInput, </p>\n<p>Return: \nIncidentResponse</p>\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":"067fc064-0138-4a2e-8fb9-fc6e7b5da616","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-07-01T00:00:00.000Z\",\n    \"latestCreate\": \"2026-07-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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n                \"text\": \"\",\n                \"type\": \"PUBLIC\"\n              }\n            }\n          ]\n        },\n        \"id\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"fd48923b-3c30-4111-ac68-432b98d1ce63"},{"name":"assignIncident","id":"0044d67f-c700-46da-b5ca-fe96b75eccf9","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\": \"<ID HERE>\",\n    \"comment\": \"\",\n    \"incidentId\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Assign a user to the incident.</p>\n<p>Inputs: \nAssignIncidentInput, </p>\n<p>Return: \nIncidentResponse</p>\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":"9f1268f2-4c15-4b09-9ad6-933784fa1889","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\": \"<ID HERE>\",\n    \"comment\": \"\",\n    \"incidentId\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"id\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"0044d67f-c700-46da-b5ca-fe96b75eccf9"},{"name":"bulkCloseIncidents","id":"e704ad59-299e-4ada-80c6-6dd0acf5fdf7","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\": \"<ID HERE>\",\n    \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n    \"closeNote\": \"\",\n    \"incidentIds\": [\n      \"<ID HERE>\"\n    ],\n    \"state\": \"RESOLVED\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Bulk close multiple incidents with the same close code and notes</p>\n<p>Inputs: \nBulkCloseIncidentsInput, </p>\n<p>Return: \nBulkIncidentResponse</p>\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":"59b39971-1923-44c8-a2e7-b9985d9aae0e","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\": \"<ID HERE>\",\n    \"closeCode\": \"CUSTOMER_ANOMALOUS_SAFE\",\n    \"closeNote\": \"\",\n    \"incidentIds\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n          \"id\": \"<ID HERE>\"\n        }\n      ],\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"e704ad59-299e-4ada-80c6-6dd0acf5fdf7"},{"name":"closeIncident","id":"c87349d9-d5a8-45f8-b802-93b100194bb4","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeIncident ($request: CloseIncidentRequest) {\n    closeIncident (request: $request) {\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    \"incidentId\": \"<ID HERE>\",\n    \"state\": \"RESOLVED\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Close Incident with close code</p>\n<p>Inputs: \nCloseIncidentRequest, </p>\n<p>Return: \nIncidentResponse</p>\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":"89d89dff-5347-4177-898c-5893c14d2ced","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation closeIncident ($request: CloseIncidentRequest) {\n    closeIncident (request: $request) {\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    \"incidentId\": \"<ID HERE>\",\n    \"state\": \"RESOLVED\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"Close Incident with close code\n\nInputs: \nCloseIncidentRequest, \n\nReturn: \nIncidentResponse\n"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"closeIncident\": {\n      \"incident\": {\n        \"closeCode\": \"\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"c87349d9-d5a8-45f8-b802-93b100194bb4"},{"name":"releaseIncident","id":"713ff3ed-d1d4-48c7-8734-024f7ae45be0","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        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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Release a retained incident</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nIncidentResponse</p>\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":"1ea6104d-dd0f-48bb-9f24-801925096f99","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        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\": \"<ID HERE>\"\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      \"incident\": {\n        \"acknowledgedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"acknowledgement\": {\n          \"acknowledgementMethod\": \"WEB_UI\",\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"allArtifacts\": [\n          {\n            \"field\": \"\",\n            \"values\": [\n              \"\"\n            ]\n          }\n        ],\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"category\": \"\",\n        \"closeCode\": \"\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"containedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"detectedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"escalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"firstEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\n        \"internalOnly\": true,\n        \"investigationCompletedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"lastEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"logSourceType\": \"\",\n        \"metadata\": {\n          \"__typename\": \"IncidentEDRMetadata\",\n          \"type\": \"EDR\"\n        },\n        \"originator\": \"DEMO\",\n        \"originatorCreatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"originatorUpdatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"queryBatches\": {\n          \"totalCount\": 0\n        },\n        \"remediatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"resolvedAt\": \"2026-07-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-07-01T00:00:00.000Z\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"713ff3ed-d1d4-48c7-8734-024f7ae45be0"},{"name":"retainIncident","id":"1970e9fa-44a5-4a1f-9e1e-47cea60432e5","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        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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Retain an incident</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nIncidentResponse</p>\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":"2dc48fef-a73d-4f3b-83aa-2ac88b7d45c4","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        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\": \"<ID HERE>\"\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      \"incident\": {\n        \"acknowledgedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"acknowledgement\": {\n          \"acknowledgementMethod\": \"WEB_UI\",\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"allArtifacts\": [\n          {\n            \"field\": \"\",\n            \"values\": [\n              \"\"\n            ]\n          }\n        ],\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"category\": \"\",\n        \"closeCode\": \"\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"containedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"detectedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"escalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"firstEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\n        \"internalOnly\": true,\n        \"investigationCompletedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"lastEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"logSourceType\": \"\",\n        \"metadata\": {\n          \"__typename\": \"IncidentEDRMetadata\",\n          \"type\": \"EDR\"\n        },\n        \"originator\": \"DEMO\",\n        \"originatorCreatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"originatorUpdatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"queryBatches\": {\n          \"totalCount\": 0\n        },\n        \"remediatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"resolvedAt\": \"2026-07-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-07-01T00:00:00.000Z\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"1970e9fa-44a5-4a1f-9e1e-47cea60432e5"},{"name":"unresolveIncident","id":"282de760-d045-4594-960e-5635d97cf9d2","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        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\": \"<ID HERE>\",\n    \"reason\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Unresolve a resolved incident</p>\n<p>Inputs: \nUnresolveIncidentInput, </p>\n<p>Return: \nIncidentResponse</p>\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":"49dac6dc-0064-4434-b8ad-09a52a4fb2c4","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        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\": \"<ID HERE>\",\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      \"incident\": {\n        \"acknowledgedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"acknowledgement\": {\n          \"acknowledgementMethod\": \"WEB_UI\",\n          \"createdAt\": \"2026-07-01T00:00:00.000Z\"\n        },\n        \"allArtifacts\": [\n          {\n            \"field\": \"\",\n            \"values\": [\n              \"\"\n            ]\n          }\n        ],\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"category\": \"\",\n        \"closeCode\": \"\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"containedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"detectedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"escalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"firstEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\n        \"internalOnly\": true,\n        \"investigationCompletedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"lastEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"logSourceType\": \"\",\n        \"metadata\": {\n          \"__typename\": \"IncidentEDRMetadata\",\n          \"type\": \"EDR\"\n        },\n        \"originator\": \"DEMO\",\n        \"originatorCreatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"originatorUpdatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"queryBatches\": {\n          \"totalCount\": 0\n        },\n        \"remediatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"resolvedAt\": \"2026-07-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-07-01T00:00:00.000Z\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"282de760-d045-4594-960e-5635d97cf9d2"},{"name":"updateIncidentState","id":"3cbf1d76-7982-4121-8066-93796b6904e6","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\": \"<ID HERE>\",\n    \"state\": \"PENDING_CUSTOMER\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Updates incident state and add comment</p>\n<p>Inputs: \nUpdateIncidentStateInput, </p>\n<p>Return: \nIncidentResponse</p>\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":"88f741dc-b5cc-467a-9a8a-06079a829f68","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"state\": \"PENDING_CUSTOMER\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"3cbf1d76-7982-4121-8066-93796b6904e6"}],"id":"75262061-bcd3-4953-bf0b-28b71610cf04","_postman_id":"75262061-bcd3-4953-bf0b-28b71610cf04","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":"ee14d0cb-a486-4d30-9396-0ac32286dba1","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      \"<ID HERE>\"\n    ],\n    \"closed\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"escalated\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"notAssignees\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    }\n  },\n  \"incidentOrder\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"CLOSED_AT\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nString, Int, HealthIncidentFilter, IncidentOrder, </p>\n<p>Return: \nIncidentConnection</p>\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":"689130f3-c9ef-4b85-bf71-293b1ca35a8a","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      \"<ID HERE>\"\n    ],\n    \"closed\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"escalated\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"notAssignees\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n            \"category\": \"\",\n            \"closeCode\": \"\",\n            \"closeNote\": \"\",\n            \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"containedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"detectedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"escalatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"firstEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"internalOnly\": true,\n            \"investigationCompletedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"lastEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"logSourceType\": \"\",\n            \"originator\": \"DEMO\",\n            \"originatorCreatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"originatorUpdatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"remediatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"resolvedAt\": \"2026-07-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-07-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":"ee14d0cb-a486-4d30-9396-0ac32286dba1"},{"name":"incident","id":"7ce05538-995c-4963-ace4-90ac3492ed1c","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, $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            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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after4\": \"T18w\",\n  \"filter5\": {\n    \"earliestCreate\": \"2026-07-01T00:00:00.000Z\",\n    \"latestCreate\": \"2026-07-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  \"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\": \"<ID HERE>\",\n    \"ticketNumber\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch Incident by either incidentId OR ticketNumber.</p>\n<p>Inputs: \nIncidentBy, </p>\n<p>Return: \nIncident</p>\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":"15a34fc9-3e0d-4441-b4f8-c00006218a32","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, $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            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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after4\": \"T18w\",\n  \"filter5\": {\n    \"earliestCreate\": \"2026-07-01T00:00:00.000Z\",\n    \"latestCreate\": \"2026-07-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  \"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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"acknowledgement\": {\n        \"acknowledgementMethod\": \"WEB_UI\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      },\n      \"category\": \"\",\n      \"closeCode\": \"\",\n      \"closeNote\": \"\",\n      \"closedAt\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n      \"customer\": {\n        \"accessControlPolicies\": {\n          \"totalCount\": 0\n        },\n        \"active\": true,\n        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"residency\": \"\",\n        \"slug\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"description\": \"\",\n      \"detectedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"escalatedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"firstEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"id\": \"<ID HERE>\",\n      \"internalOnly\": true,\n      \"investigationCompletedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"lastEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"logSourceType\": \"\",\n      \"metadata\": {\n        \"__typename\": \"IncidentEDRMetadata\",\n        \"type\": \"EDR\"\n      },\n      \"originator\": \"DEMO\",\n      \"originatorCreatedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"originatorUpdatedAt\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"resolvedAt\": \"2026-07-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-07-01T00:00:00.000Z\"\n    }\n  }\n}"}],"_postman_id":"7ce05538-995c-4963-ace4-90ac3492ed1c"},{"name":"incidents","id":"b2a8b072-6353-46fe-a1b3-af97c060d4bd","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      \"<ID HERE>\"\n    ],\n    \"closed\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"commentFilter\": {\n      \"earliestCreate\": \"2026-07-01T00:00:00.000Z\",\n      \"latestCreate\": \"2026-07-01T00:00:00.000Z\",\n      \"types\": [\n        \"PUBLIC\"\n      ]\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"earliestCreate\": \"2026-07-01T00:00:00.000Z\",\n    \"escalated\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"incidentTypes\": [\n      \"DRP\"\n    ],\n    \"internalOnly\": true,\n    \"latestCreate\": \"2026-07-01T00:00:00.000Z\",\n    \"memories\": [\n      \"<ID HERE>\"\n    ],\n    \"notAssignees\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    }\n  },\n  \"incidentOrder\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"CLOSED_AT\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nString, Int, IncidentFilter, IncidentOrder, </p>\n<p>Return: \nIncidentConnection</p>\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":"66dd7cd8-bf7a-45c0-975a-d6e6363db360","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      \"<ID HERE>\"\n    ],\n    \"closed\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"commentFilter\": {\n      \"earliestCreate\": \"2026-07-01T00:00:00.000Z\",\n      \"latestCreate\": \"2026-07-01T00:00:00.000Z\",\n      \"types\": [\n        \"PUBLIC\"\n      ]\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"earliestCreate\": \"2026-07-01T00:00:00.000Z\",\n    \"escalated\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"incidentTypes\": [\n      \"DRP\"\n    ],\n    \"internalOnly\": true,\n    \"latestCreate\": \"2026-07-01T00:00:00.000Z\",\n    \"memories\": [\n      \"<ID HERE>\"\n    ],\n    \"notAssignees\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n            \"category\": \"\",\n            \"closeCode\": \"\",\n            \"closeNote\": \"\",\n            \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"containedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"detectedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"escalatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"firstEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"internalOnly\": true,\n            \"investigationCompletedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"lastEscalatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"logSourceType\": \"\",\n            \"originator\": \"DEMO\",\n            \"originatorCreatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"originatorUpdatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"remediatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"removedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"resolvedAt\": \"2026-07-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-07-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":"b2a8b072-6353-46fe-a1b3-af97c060d4bd"}],"id":"6dab54b3-85c6-4c43-b96e-30dfea0470df","_postman_id":"6dab54b3-85c6-4c43-b96e-30dfea0470df","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":"15c436b0-903a-4c33-94b0-4d95e3c4caf9","description":"<h2 id=\"incidentfilter\">IncidentFilter</h2>\n<p> Incident Filter input type to filter out Incidents. If not set, defaults will be used.\nDefaults: state = NEW</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledged</td>\n<td>Filter out incidents based on acknowledgment  True: Acknowledged incidents False: Un-Acknowledged incidents</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>assignees</td>\n<td>List of assignee IDs to filter</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>closed</td>\n<td>Incident closed TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>commentFilter</td>\n<td>A comment filter.  Filter incidents based on whether or not they have comments that match the comment filter.</td>\n<td>IncidentCommentFilter</td>\n</tr>\n<tr>\n<td>created</td>\n<td>Incident creation TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>earliestCreate [DEPRECATED]</td>\n<td>[DEPRECATED: Use <code>created</code> instead. Deprecated on 2025-01-15.] Incident creation earliest TimeStamp.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>escalated</td>\n<td>Incident escalated TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>incidentTypes</td>\n<td>Incident type based filter.  Note: While ENGINEERING/HEALTH are valid IncidentTypes, it cannot be used to filter for the <code>incidents</code> query. To query HEALTH Incidents, please use the <code>healthIncidents</code> query.</td>\n<td>IncidentType</td>\n</tr>\n<tr>\n<td>internalOnly</td>\n<td>An 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 RQ</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>latestCreate [DEPRECATED]</td>\n<td>[DEPRECATED: Use <code>created</code> instead. Deprecated on 2025-01-15.] Incident creation latest TimeStamp.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>memories</td>\n<td>The 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.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>notAssignees</td>\n<td>List of assignee IDs to exclude, not include, in the filter.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>retained</td>\n<td>Filter on if the incident has been marked as retained or not  True: Retained incidents False: Unretained incidents</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>ruleNumbers</td>\n<td>List of rule number to filter incidents</td>\n<td>String</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Wildcard search string to search from Incident's Title/Description/Type/TicketNumber/Summary.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td>List of Severities to filter.</td>\n<td>IncidentSeverity</td>\n</tr>\n<tr>\n<td>state</td>\n<td>List of States to filter.</td>\n<td>IncidentState</td>\n</tr>\n<tr>\n<td>ticketNumber</td>\n<td>A human-readable ticket or case number for the incident. Note: The ticketNumber always begins with \"RQ\".</td>\n<td>String</td>\n</tr>\n<tr>\n<td>unassigned</td>\n<td>Filter out incidents based on assignment  True: Incidents which are not assigned to any user False: Incidents which are assigned to user</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>Incident updated TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"healthincidentfilter\">HealthIncidentFilter</h2>\n<p> 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</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledged</td>\n<td>Filter out incidents based on acknowledgment  True: Acknowledged incidents False: Un-Acknowledged incidents</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>assignees</td>\n<td>List of assignee IDs to filter</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>closed</td>\n<td>Incident closed TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>created</td>\n<td>Incident creation TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>escalated</td>\n<td>Incident escalated TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>notAssignees</td>\n<td>List of assignee IDs to exclude, not include, in the filter.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>retained</td>\n<td>Filter on if the incident has been marked as retained or not  True: Retained incidents False: Unretained incidents</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>ruleNumbers</td>\n<td>List of rule number to filter incidents</td>\n<td>String</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Wildcard search string to search from Incident's Title/Description/Type/TicketNumber/Summary.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td>List of Severities to filter.</td>\n<td>IncidentSeverity</td>\n</tr>\n<tr>\n<td>state</td>\n<td>List of States to filter.</td>\n<td>IncidentState</td>\n</tr>\n<tr>\n<td>unassigned</td>\n<td>Filter out incidents based on assignment  True: Incidents which are not assigned to any user False: Incidents which are assigned to user</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>Incident updated TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentorderby\">IncidentOrderBy</h2>\n<p> Order by ENUM for Incidents.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOSED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>ESCALATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>SEVERITY</td>\n<td></td>\n</tr>\n<tr>\n<td>STATE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentorder\">IncidentOrder</h2>\n<p> Incident OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>IncidentOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentby\">IncidentBy</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ticketNumber</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incident\">Incident</h2>\n<p> Incident schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledgedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>acknowledgement</td>\n<td>The acknowledgement record for the incident, if acknowledged.</td>\n<td>IncidentAcknowledgement</td>\n</tr>\n<tr>\n<td>activity</td>\n<td>Paginated activity log entries that capture changes to the incident.</td>\n<td>IncidentActivityLogConnection</td>\n</tr>\n<tr>\n<td>allArtifacts</td>\n<td>All artifacts associated with the incident.</td>\n<td>Artifact</td>\n</tr>\n<tr>\n<td>assignee</td>\n<td>The user currently assigned to the incident.</td>\n<td>User</td>\n</tr>\n<tr>\n<td>category</td>\n<td>The high-level category associated with the incident.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td>The code indicating why the incident was closed.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td>Notes entered at the time of closing the incident.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>closedAt</td>\n<td>When the incident was closed.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>comments</td>\n<td>Paginated list of comments associated with the incident from the customer or ReliaQuest team.</td>\n<td>IncidentCommentConnection</td>\n</tr>\n<tr>\n<td>containedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>When the incident was created in GreyMatter.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>The assigned customer of this incident.</td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>description</td>\n<td>A detailed description of the incident.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>detectedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>escalatedAt</td>\n<td>When the incident was escalated to the customer, if applicable.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>firstEscalatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td>The ID of the incident.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>internalOnly</td>\n<td>An internal only incident is an incident logged by a customer for their own tracking purposes and worked only by the customer, not by RQ</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>investigationCompletedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>lastEscalatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>logSourceType</td>\n<td>The data source the detection was run against.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td>Source-specific metadata associated with the incident. The concrete type corresponds to the metadata <code>type</code> 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.</td>\n<td>IncidentMetadata</td>\n</tr>\n<tr>\n<td>originator</td>\n<td>The source that originated or reported the incident.</td>\n<td>IncidentOriginator</td>\n</tr>\n<tr>\n<td>originatorCreatedAt</td>\n<td>When the incident originator initially created the incident.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>originatorUpdatedAt</td>\n<td>When the incident originator last updated the incident, if applicable.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>queryBatches [DEPRECATED]</td>\n<td>[DEPRECATED: Use searchHistory instead. Deprecated on 2025-01-10.]</td>\n<td>QueryBatchConnection</td>\n</tr>\n<tr>\n<td>remediatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>removedAt</td>\n<td>When the incident was removed, if applicable.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>resolvedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>retained</td>\n<td>Whether the incident query data has been retained (preserved) for longer-term reference.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>rule</td>\n<td>The detection rule that generated the incident.</td>\n<td>IncidentRule</td>\n</tr>\n<tr>\n<td>searchHistory</td>\n<td>Historical queries associated with the incident.</td>\n<td>QueryBatchConnection</td>\n</tr>\n<tr>\n<td>severity</td>\n<td>The severity level assigned to the incident.</td>\n<td>IncidentSeverity</td>\n</tr>\n<tr>\n<td>state</td>\n<td>The current state of the incident.</td>\n<td>IncidentState</td>\n</tr>\n<tr>\n<td>subCategory</td>\n<td>The subcategory providing additional classification.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>summary</td>\n<td>A short summary of the incident.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>ticketNumber</td>\n<td>A human-readable ticket or case number for the incident. Note: The ticketNumber always begins with \"RQ\".</td>\n<td>String</td>\n</tr>\n<tr>\n<td>timeToAcknowledge</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>timeToContain</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>timeToDetect</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>timeToFirstEscalation</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>timeToInvestigate</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>timeToRemediate</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>timeToResolve</td>\n<td></td>\n<td>Long</td>\n</tr>\n<tr>\n<td>title</td>\n<td>The title of the incident.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of the incident based on source.</td>\n<td>IncidentType</td>\n</tr>\n<tr>\n<td>unresolveReason</td>\n<td>Unresolve reason if provided while doing the un resolve activity</td>\n<td>String</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>When the incident was last updated in GreyMatter.</td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentresponse\">IncidentResponse</h2>\n<p> The IncidentResponse type is used to return the result of an incident-related operation.</p>\n<p>Fields:</p>\n<ul>\n<li>success: Indicates whether the operation was successful.</li>\n<li>incident: Provides details of the incident (optional, might be null if no incident is associated).<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>incident</td>\n<td>Provides details of the incident (optional, might be null if no incident is associated).</td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div></li>\n</ul>\n<h2 id=\"incidentedge\">IncidentEdge</h2>\n<p> IncidentEdge schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Incident</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentconnection\">IncidentConnection</h2>\n<p> Incident Connection schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>IncidentEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentrule\">IncidentRule</h2>\n<p> Rule details of Incidents.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>version</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentmetadata\">IncidentMetadata</h2>\n<p> Metadata associated with the incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td></td>\n<td>IncidentMetadataType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentmetadatatype\">IncidentMetadataType</h2>\n<p> Incident Metadata Type. Each type will have different metadata associated with it.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EDR</td>\n<td></td>\n</tr>\n<tr>\n<td>ENGINEERING</td>\n<td></td>\n</tr>\n<tr>\n<td>HEALTH</td>\n<td></td>\n</tr>\n<tr>\n<td>PHISHING_ANALYZER</td>\n<td></td>\n</tr>\n<tr>\n<td>SIEM</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentsiemmetadata\">IncidentSIEMMetadata</h2>\n<p> SIEM metadata for an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>duplicatedIncident</td>\n<td></td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>sourceTechnology</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IncidentMetadataType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentedrmetadata\">IncidentEDRMetadata</h2>\n<p> EDR metadata for an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>duplicatedIncident</td>\n<td></td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>sourceTechnology</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IncidentMetadataType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentengineeringmetadata\">IncidentEngineeringMetadata</h2>\n<p> ENGINEERING metadata for an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>duplicatedIncident</td>\n<td></td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>sourceTechnology</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IncidentMetadataType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidenthealthmetadata\">IncidentHealthMetadata</h2>\n<p> HEALTH metadata for an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>duplicatedIncident</td>\n<td></td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>sourceTechnology</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IncidentMetadataType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentphishinganalyzermetadata\">IncidentPhishingAnalyzerMetadata</h2>\n<p> PHISHING_ANALYZER metadata for an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>duplicatedIncident</td>\n<td></td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>sourceTechnology</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IncidentMetadataType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentoriginator\">IncidentOriginator</h2>\n<p> The source that originated or reported the incident to the system.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DEMO</td>\n<td></td>\n</tr>\n<tr>\n<td>SERVICENOW</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentstate\">IncidentState</h2>\n<p> Incident State ENUM.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CANCELLED</td>\n<td>The incident has been cancelled.</td>\n</tr>\n<tr>\n<td>CLOSED</td>\n<td>The incident has been closed.</td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td>The incident is currently being investigated.</td>\n</tr>\n<tr>\n<td>NEW</td>\n<td>A new incident has been created.</td>\n</tr>\n<tr>\n<td>ON_HOLD</td>\n<td>The incident is on hold.</td>\n</tr>\n<tr>\n<td>PENDING_CUSTOMER</td>\n<td>The incident is pending a response or action from the customer.</td>\n</tr>\n<tr>\n<td>PENDING_RQ</td>\n<td>The incident is pending a response or action from the ReliaQuest team.</td>\n</tr>\n<tr>\n<td>PENDING_VENDOR</td>\n<td>The incident is pending a response or action from a vendor.</td>\n</tr>\n<tr>\n<td>RESOLVED</td>\n<td>The incident has been resolved.</td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentseverity\">IncidentSeverity</h2>\n<p> Incidents Severity ENUM.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>INFORMATIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n<tr>\n<td>UNASSESSED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidenttype\">IncidentType</h2>\n<p> Incidents Type ENUM.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DRP</td>\n<td>Incident generated from Digital Risk Protection.</td>\n</tr>\n<tr>\n<td>EDR</td>\n<td>Incident generated from the customer's EDR tool.</td>\n</tr>\n<tr>\n<td>ENGINEERING</td>\n<td>Health alert generated by GreyMatter.</td>\n</tr>\n<tr>\n<td>HEALTH</td>\n<td>Health alert generated by GreyMatter.</td>\n</tr>\n<tr>\n<td>PHISHING_ANALYZER</td>\n<td>Incident generated by Greymatter's Phishing Analyzer</td>\n</tr>\n<tr>\n<td>SIEM</td>\n<td>Incident generated from the customer's SIEM.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"artifact\">Artifact</h2>\n<p> Critical data points associated to an Incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>field</td>\n<td>All possible artifact fields can be pulled from the greymatterFields query.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"artifactfilter\">ArtifactFilter</h2>\n<p> Collection of Artifacts to fetch with Incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fields</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentacknowledgement\">IncidentAcknowledgement</h2>\n<p> Represents an acknowledgement of an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledgementMethod</td>\n<td>The method used to acknowledge the incident.</td>\n<td>IncidentAcknowledgementMethod</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>The timestamp when the incident was acknowledged (optional).</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td>The user who acknowledged the incident (optional).</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentacknowledgementmethod\">IncidentAcknowledgementMethod</h2>\n<p> Enum for the methods used to acknowledge an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACTION_TOKEN</td>\n<td>Acknowledged via a notification link</td>\n</tr>\n<tr>\n<td>API</td>\n<td>Acknowledged via the API</td>\n</tr>\n<tr>\n<td>AUTOMATED_CALLOUT</td>\n<td>Acknowledged via an automated call-out</td>\n</tr>\n<tr>\n<td>GREYMATTER_WORKFLOW</td>\n<td>Acknowledged via a GreyMatter Workflow</td>\n</tr>\n<tr>\n<td>MOBILE_APP</td>\n<td>Acknowledged through the mobile application.</td>\n</tr>\n<tr>\n<td>SNOW</td>\n<td>Acknowledged through the ServiceNow (SNOW) platform.</td>\n</tr>\n<tr>\n<td>WEB_UI</td>\n<td>Acknowledged through the GreyMatter web platform.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentacknowledgementinput\">IncidentAcknowledgementInput</h2>\n<p> Input type for acknowledging an incident.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledgementMethod</td>\n<td>The method used to acknowledge the incident.</td>\n<td>IncidentAcknowledgementMethod</td>\n</tr>\n<tr>\n<td>autoAssign [DEPRECATED]</td>\n<td>[DEPRECATED: Not used anymore. Default across system is true. Since 2025-06-26.] Whether to auto-assign the incident (default is false).</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>incidentId</td>\n<td>The unique identifier of the incident.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcommentorderby\">IncidentCommentOrderBy</h2>\n<p> Order by ENUM for Incident Comments</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_BY</td>\n<td></td>\n</tr>\n<tr>\n<td>TYPE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcommentorder\">IncidentCommentOrder</h2>\n<p> Incident Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>IncidentCommentOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcommenttype\">IncidentCommentType</h2>\n<p> Incident Comment Types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PUBLIC</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcommentfilter\">IncidentCommentFilter</h2>\n<p> Incident comment filter input type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>earliestCreate</td>\n<td>Comment creation earliest timestamp (Optional)</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>latestCreate</td>\n<td>Comment creation latest timestamp (Optional)</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Comment type to be filtered. (Required) Will be set to default if not explicitly passed.</td>\n<td>IncidentCommentType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcomment\">IncidentComment</h2>\n<p> Represents the Incident Comment schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IncidentCommentType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcommentedge\">IncidentCommentEdge</h2>\n<p> IncidentComment Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>IncidentComment</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcommentconnection\">IncidentCommentConnection</h2>\n<p> Incident Comment Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>IncidentCommentEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactivitylogorderby\">IncidentActivityLogOrderBy</h2>\n<p> Order by ENUM for Incident Activity Log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_BY</td>\n<td></td>\n</tr>\n<tr>\n<td>FIELD</td>\n<td></td>\n</tr>\n<tr>\n<td>FIELD_VALUE_NEW</td>\n<td></td>\n</tr>\n<tr>\n<td>FIELD_VALUE_OLD</td>\n<td></td>\n</tr>\n<tr>\n<td>TYPE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactivitylogorder\">IncidentActivityLogOrder</h2>\n<p> Incident Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderByList</td>\n<td></td>\n<td>IncidentActivityLogOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactivitylogfilter\">IncidentActivityLogFilter</h2>\n<p> Incident activity log filter input type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Activity log creation time range (Optional)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Activity log type to be filtered. (Required) Will be set to default if not explicitly passed.</td>\n<td>IncidentActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactivitylogtype\">IncidentActivityLogType</h2>\n<p> Incident Activity Log Types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactivitylogentry\">IncidentActivityLogEntry</h2>\n<p> Represents the Incident Activity Log Entry schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>When the action was performed</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Who performed the action</td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Which customer owns the incident that was created/updated/etc.</td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>field</td>\n<td>The name of the field that changed null when type is CREATED</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fieldValueNew</td>\n<td>A JSON-serialized string representing the updated value following the action null when type is CREATED</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fieldValueOld</td>\n<td>A JSON-serialized string representing the original value prior to the action null when type is CREATED</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of action performed</td>\n<td>IncidentActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactivitylogedge\">IncidentActivityLogEdge</h2>\n<p> IncidentActivityLog Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>IncidentActivityLogEntry</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactivitylogconnection\">IncidentActivityLogConnection</h2>\n<p> Incident Activity Log Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>IncidentActivityLogEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assignincidentinput\">AssignIncidentInput</h2>\n<p> Input type to assign an incident to a user.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assigneeId</td>\n<td>The ID of the user to assign to the incident. Null unassigns the incident.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>Optional comment recorded with the assignment change.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>incidentId</td>\n<td>The ID of the incident to assign.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatableincidentstate\">UpdatableIncidentState</h2>\n<p> Represents different states an Incident can be updated with</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CANCELLED</td>\n<td>The incident has been cancelled.</td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td>The incident is currently being investigated.</td>\n</tr>\n<tr>\n<td>NEW</td>\n<td>A new incident has been created.</td>\n</tr>\n<tr>\n<td>ON_HOLD</td>\n<td>The incident is on hold.</td>\n</tr>\n<tr>\n<td>PENDING_CUSTOMER</td>\n<td>The incident is pending a response or action from the customer.</td>\n</tr>\n<tr>\n<td>PENDING_RQ</td>\n<td>The incident is pending a response or action from the ReliaQuest team.</td>\n</tr>\n<tr>\n<td>PENDING_VENDOR</td>\n<td>The incident is pending a response or action from a vendor.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateincidentstateinput\">UpdateIncidentStateInput</h2>\n<p> Input type to update Incident state</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>Comment String</td>\n<td>String</td>\n</tr>\n<tr>\n<td>incidentId</td>\n<td>Incident id to update state</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>state</td>\n<td>State to update</td>\n<td>UpdatableIncidentState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"closableincidentstate\">ClosableIncidentState</h2>\n<p> States which can be assigned while closing incident</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOSED</td>\n<td></td>\n</tr>\n<tr>\n<td>RESOLVED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentclosecode\">IncidentCloseCode</h2>\n<p> Represents incident close code</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CUSTOMER_ANOMALOUS_SAFE</td>\n<td>Activity has been determined as safe, but the same activity can sometimes be malicious.</td>\n</tr>\n<tr>\n<td>CUSTOMER_CANCELLED</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_ESCALATED_AS_INTERNAL_INCIDENT</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_FALSE_POSITIVE</td>\n<td>Activity does not match the use case that was intended to catch.</td>\n</tr>\n<tr>\n<td>CUSTOMER_NOT_APPLICABLE</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_NO_RESPONSE_AUTO_CLOSE</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_NO_RESPONSE_RECEIVED</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_RECOMMENDATION_APPROVED_AND_RQ_ACTION_NEEDED</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_RECOMMENDATION_CUSTOMER_IMPLEMENTED</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_RECOMMENDATION_DECLINED</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_SECURITY_CONTROL_TESTING</td>\n<td>Activity is related to known security control testing.</td>\n</tr>\n<tr>\n<td>CUSTOMER_TRUE_POSITIVE</td>\n<td>Confirmed malicious activity.</td>\n</tr>\n<tr>\n<td>CUSTOMER_TRUE_POSITIVE_SUSPICIOUS</td>\n<td></td>\n</tr>\n<tr>\n<td>FALSE_POSITIVE_CREATE_TUNING_TICKET</td>\n<td>Opens up a tuning ticket to be actioned by ReliaQuest.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"closeincidentrequest\">CloseIncidentRequest</h2>\n<p> Represents close incident request</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>closeCode</td>\n<td>Close code to be used for closing this incident. (Required)</td>\n<td>IncidentCloseCode</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td>Reason/Notes for closing the incident. (Required)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>incidentId</td>\n<td>Incident id to close. (Required)</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>state</td>\n<td>State of the incident on closure. (Optional) Default: RESOLVED</td>\n<td>ClosableIncidentState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentcommentinput\">IncidentCommentInput</h2>\n<p> Input to create an IncidentComment.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>The text body of the comment.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>incidentId</td>\n<td>The ID of the incident to comment on.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"unresolveincidentinput\">UnresolveIncidentInput</h2>\n<p> Represents unresolve incident input</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>incidentId</td>\n<td>Incident id to unresolve. (Required)</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>Reason for unresolving the incident. (Optional)</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"bulkcloseincidentsinput\">BulkCloseIncidentsInput</h2>\n<p> Input for bulk closing incidents with the same close code and notes</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aiChatId</td>\n<td>Optional AI chat ID to associate with all incident closures.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td>The close code to apply to all incidents. (Required)</td>\n<td>IncidentCloseCode</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td>The close note to apply to all incidents. (Required)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>incidentIds</td>\n<td>IDs of the incidents to close. Maximum 100 IDs per request. (Required)</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Whether to set the closed status (CLOSED) or the resolved status (RESOLVED). Defaults to RESOLVED.</td>\n<td>ClosableIncidentState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"bulkincidentresponse\">BulkIncidentResponse</h2>\n<p> Response for bulk incident mutations. Contains the updated incidents.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>incidents</td>\n<td>The updated incidents.</td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"acknowledgeassignandcloseincidentinput\">AcknowledgeAssignAndCloseIncidentInput</h2>\n<p> Represents an atomic acknowledge + assign + close request, used by the\nmobile app to avoid the race between separate acknowledge, assign, and\nclose operations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledgementMethod</td>\n<td>Method used to acknowledge the incident if it is not already acknowledged.</td>\n<td>IncidentAcknowledgementMethod</td>\n</tr>\n<tr>\n<td>assigneeId</td>\n<td>The id of the user to assign to the incident. When null, the current user is used.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td>Close code to be used for closing this incident. Required when type is CLOSE.</td>\n<td>IncidentCloseCode</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td>Reason/Notes for closing the incident. Required when type is CLOSE.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>incidentId</td>\n<td>Incident id to acknowledge, assign, and close. (Required)</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>state</td>\n<td>State of the incident on closure. (Optional) Default: RESOLVED</td>\n<td>ClosableIncidentState</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Selects which steps to perform. CLOSE performs acknowledge + assign + close, ASSIGN performs acknowledge + assign, ACKNOWLEDGE performs acknowledge only. Default: CLOSE</td>\n<td>IncidentActionType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"incidentactiontype\">IncidentActionType</h2>\n<p> Action selector for AcknowledgeAssignAndCloseIncidentInput. Controls which of\nthe acknowledge / assign / close steps are performed: each value performs that\nstep and all preceding ones.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACKNOWLEDGE</td>\n<td>Acknowledge the incident only.</td>\n</tr>\n<tr>\n<td>ASSIGN</td>\n<td>Acknowledge the incident and assign it to the current user.</td>\n</tr>\n<tr>\n<td>CLOSE</td>\n<td>Acknowledge, assign, and close the incident.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"15c436b0-903a-4c33-94b0-4d95e3c4caf9","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":"f2f17e04-e86b-4b01-8160-56e96a19018a","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\": \"<ID HERE>\",\n    \"input\": {\n      \"name\": \"\",\n      \"type\": \"CIDR\"\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nIOCBy, </p>\n<p>Return: \nIndicator</p>\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":"82e531bd-c5bc-4d29-829b-967fe37e7a97","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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"id\": \"<ID HERE>\",\n      \"lastSeenAt\": \"2026-07-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":"f2f17e04-e86b-4b01-8160-56e96a19018a"},{"name":"indicators","id":"439a9cce-3d3b-46cc-8502-5db54036e66d","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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":"<p>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).</p>\n<p>Inputs: \nString, IndicatorFilter, Int, IndicatorOrder, </p>\n<p>Return: \nIndicatorConnection</p>\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":"2867d7e5-4c3a-4ac3-af82-6571f0fd318e","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"lastSeenAt\": \"2026-07-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":"439a9cce-3d3b-46cc-8502-5db54036e66d"}],"id":"ab9c5e66-4e02-49b2-b3a4-714489321382","_postman_id":"ab9c5e66-4e02-49b2-b3a4-714489321382","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":"d31e0ba5-bc92-4b18-a65b-58f581b8bceb","description":"<h2 id=\"indicator\">Indicator</h2>\n<p> Represents an Indicator type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>city</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>countScore</td>\n<td>Count score based on number of feeds (1-3)</td>\n<td>Int</td>\n</tr>\n<tr>\n<td>country</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>feedNames</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>firstSeenAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>lastSeenAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>region</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>reliabilityScore</td>\n<td>Reliability score based on feed quality (1-5)</td>\n<td>Int</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>IOCSeverity</td>\n</tr>\n<tr>\n<td>threatScore</td>\n<td>Overall threat score combining reliability, count, and recency</td>\n<td>Int</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IOCType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"indicatorconnection\">IndicatorConnection</h2>\n<p> Indicator Connection schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>IndicatorEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"indicatoredge\">IndicatorEdge</h2>\n<p> Indicator Edge schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Indicator</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"iocby\">IOCBy</h2>\n<p> 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</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>input</td>\n<td></td>\n<td>IOCInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"iocinput\">IOCInput</h2>\n<p> Input for the name and type of the Indicator.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IOCType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"indicatorfilter\">IndicatorFilter</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>feedNames</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastSeenAt</td>\n<td></td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>names</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>severity</td>\n<td></td>\n<td>IOCSeverity</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>IOCType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"indicatororder\">IndicatorOrder</h2>\n<p> Indicator OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = LAST_SEEN, direction = ASC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>IndicatorOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"ioctype\">IOCType</h2>\n<p> IOC type Enum for Indicator. We support search on five categories of IOCs as per GreyMatter functionality.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CIDR</td>\n<td></td>\n</tr>\n<tr>\n<td>DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>IP_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>URL</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"iocseverity\">IOCSeverity</h2>\n<p> IOC Severity Enum for Indicator. Determined by threat score calculation in threat-intelligence.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>INFORMATIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n<tr>\n<td>UNASSESSED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"indicatororderby\">IndicatorOrderBy</h2>\n<p> Order by Enum for Indicator.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LAST_SEEN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d31e0ba5-bc92-4b18-a65b-58f581b8bceb","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":"1b2f0061-0e64-432c-abc0-bcd8fb00aeea","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-07-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":"<p>Create an AI context.\nThe context is created for the customer set in the x-reliaquest-customerId header.</p>\n<p>Inputs: \nCreateAiContextInput, </p>\n<p>Return: \nAiContextResponse</p>\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":"fc6adfe8-2f31-4fbf-8f90-23df96bbf54c","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-07-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-07-01T00:00:00.000Z\",\n        \"context\": \"\",\n        \"contextType\": \"GUIDANCE\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"expiresAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"1b2f0061-0e64-432c-abc0-bcd8fb00aeea"},{"name":"deleteAiContext","id":"f6c49241-4b4c-42ff-94e0-36b60ba5eff0","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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete an AI context.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nAiContextResponse</p>\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":"b4d4bd0f-4c71-4bc3-a8ba-5c1166924a54","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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"context\": \"\",\n        \"contextType\": \"GUIDANCE\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"expiresAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"f6c49241-4b4c-42ff-94e0-36b60ba5eff0"},{"name":"updateAiContext","id":"f4f578ea-b293-485c-b435-16df1ece8da3","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-07-01T00:00:00.000Z\",\n    \"id\": \"<ID HERE>\",\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    \"tags\": {\n      \"agent\": \"HEALTH\",\n      \"step\": \"ENRICHMENT\"\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update an AI context.</p>\n<p>Inputs: \nUpdateAiContextInput, </p>\n<p>Return: \nAiContextResponse</p>\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":"7b1c8f49-12d0-4122-be4a-d34f4aed175f","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-07-01T00:00:00.000Z\",\n    \"id\": \"<ID HERE>\",\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    \"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-07-01T00:00:00.000Z\",\n        \"context\": \"\",\n        \"contextType\": \"GUIDANCE\",\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"expiresAt\": \"2026-07-01T00:00:00.000Z\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"f4f578ea-b293-485c-b435-16df1ece8da3"}],"id":"831962ad-416c-44b1-8a16-3bee62c06e9e","_postman_id":"831962ad-416c-44b1-8a16-3bee62c06e9e","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":"fd31f0dd-bdd6-417a-9aec-75dd078d4a13","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, $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            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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after3\": \"T18w\",\n  \"first3\": 10,\n  \"after4\": \"T18w\",\n  \"first4\": 10,\n  \"after5\": \"T18w\",\n  \"filter3\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order3\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after7\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first7\": 10,\n  \"order5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch an AI context by its ID.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nAiContext</p>\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":"d196846f-0459-43c5-8943-17e1f2499bd8","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, $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            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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after3\": \"T18w\",\n  \"first3\": 10,\n  \"after4\": \"T18w\",\n  \"first4\": 10,\n  \"after5\": \"T18w\",\n  \"filter3\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order3\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after7\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first7\": 10,\n  \"order5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"context\": \"\",\n      \"contextType\": \"GUIDANCE\",\n      \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n      \"createdBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\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        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"residency\": \"\",\n        \"slug\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"description\": \"\",\n      \"expiresAt\": \"2026-07-01T00:00:00.000Z\",\n      \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"updatedBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"fd31f0dd-bdd6-417a-9aec-75dd078d4a13"},{"name":"aiContexts","id":"58c1db07-6ae6-40c0-822c-b94146c56c02","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"createdById\": [\n      \"<ID HERE>\"\n    ],\n    \"expiresAt\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"ids\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"updatedById\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"APPROVED_AT\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nString, AiContextFilter, Int, AiContextOrder, </p>\n<p>Return: \nAiContextConnection</p>\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":"8fc9fd2d-b09d-438f-9c0d-142d16d03ce9","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"createdById\": [\n      \"<ID HERE>\"\n    ],\n    \"expiresAt\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"ids\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"updatedById\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"context\": \"\",\n            \"contextType\": \"GUIDANCE\",\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"expiresAt\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"source\": \"AD_HOC\",\n            \"status\": \"ACTIVE\",\n            \"updatedAt\": \"2026-07-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":"58c1db07-6ae6-40c0-822c-b94146c56c02"}],"id":"f90ac633-5c79-4596-9f60-408331ea30d6","_postman_id":"f90ac633-5c79-4596-9f60-408331ea30d6","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":"d2020c20-d47d-4e8a-bff7-89777096add2","description":"<h2 id=\"aicontext\">AiContext</h2>\n<p> Context injected into AI prompts and tools. Used to provide memories or guidance to AI operations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>approvedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>context</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>contextType</td>\n<td></td>\n<td>AiContextType</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>expiresAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>mode</td>\n<td></td>\n<td>RetrievalMode</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>AiContextSource</td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>AiContextStatus</td>\n</tr>\n<tr>\n<td>tags</td>\n<td></td>\n<td>AiContextOutcomeTags</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextconnection\">AiContextConnection</h2>\n<p> AI Context Connection schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>AiContextEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextedge\">AiContextEdge</h2>\n<p> AI Context Edge schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>AiContext</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextresponse\">AiContextResponse</h2>\n<p> Response type for create, update, and delete operations on AI context.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aiContext</td>\n<td></td>\n<td>AiContext</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextfilter\">AiContextFilter</h2>\n<p> Input for filtering AI context by name, prompt tags, retrieval mode, approvals status, source, enabled/disabled status, timestamp ranges, or user IDs.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>createdById</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>expiresAt</td>\n<td></td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>ids</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>mode</td>\n<td></td>\n<td>RetrievalModeType</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>source</td>\n<td></td>\n<td>AiContextSource</td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>AiContextStatus</td>\n</tr>\n<tr>\n<td>tags</td>\n<td></td>\n<td>AiContextOutcomeTagsInput</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>updatedById</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextorder\">AiContextOrder</h2>\n<p> AI Context OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = UPDATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>AiContextOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextorderby\">AiContextOrderBy</h2>\n<p> Order by Enum for AI context.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>APPROVED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPIRES_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontexttype\">AiContextType</h2>\n<p> The category of AI context content. Can be MEMORY or GUIDANCE.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GUIDANCE</td>\n<td></td>\n</tr>\n<tr>\n<td>MEMORY</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextstatus\">AiContextStatus</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACTIVE</td>\n<td></td>\n</tr>\n<tr>\n<td>APPROVED</td>\n<td></td>\n</tr>\n<tr>\n<td>DENIED</td>\n<td></td>\n</tr>\n<tr>\n<td>DISABLED</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPIRED</td>\n<td></td>\n</tr>\n<tr>\n<td>PENDING</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextsource\">AiContextSource</h2>\n<p> The origin of AI context. Can be FEEDBACK, CLOSE_NOTES, AD_HOC, MIGRATION, or USER_ADDED.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AD_HOC</td>\n<td></td>\n</tr>\n<tr>\n<td>CLOSE_NOTES</td>\n<td></td>\n</tr>\n<tr>\n<td>FEEDBACK</td>\n<td></td>\n</tr>\n<tr>\n<td>MIGRATION</td>\n<td></td>\n</tr>\n<tr>\n<td>USER_ADDED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextoutcometags\">AiContextOutcomeTags</h2>\n<p> Tags that determine when AI context is applied during a specific teammate run or particular steps in that run.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>agent</td>\n<td></td>\n<td>Teammate</td>\n</tr>\n<tr>\n<td>step</td>\n<td></td>\n<td>Step</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextoutcometagsinput\">AiContextOutcomeTagsInput</h2>\n<p> Input for tags that determine when AI context is applied during a specific teammate run or particular steps in that run.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>agent</td>\n<td></td>\n<td>Teammate</td>\n</tr>\n<tr>\n<td>step</td>\n<td></td>\n<td>Step</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"teammate\">Teammate</h2>\n<p> The teammate to apply AI context to.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HEALTH</td>\n<td></td>\n</tr>\n<tr>\n<td>IR</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"step\">Step</h2>\n<p> The workflow step to apply AI context to.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ENRICHMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERATE_REPORT</td>\n<td></td>\n</tr>\n<tr>\n<td>GET_NEXT_STEP</td>\n<td></td>\n</tr>\n<tr>\n<td>MAKE_DECISION</td>\n<td></td>\n</tr>\n<tr>\n<td>PLAN</td>\n<td></td>\n</tr>\n<tr>\n<td>RELATED_INCIDENTS</td>\n<td></td>\n</tr>\n<tr>\n<td>RESPOND</td>\n<td></td>\n</tr>\n<tr>\n<td>SEARCH</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"retrievalmode\">RetrievalMode</h2>\n<p> The retrieval mode in which AI context is applied. Can be ALWAYS, CRITERIA, or RAG.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>criteria</td>\n<td>Criteria is populated when mode = CRITERIA.</td>\n<td>UqliFilter</td>\n</tr>\n<tr>\n<td>mode</td>\n<td></td>\n<td>RetrievalModeType</td>\n</tr>\n<tr>\n<td>rag</td>\n<td>Rag is populated when mode = RAG.</td>\n<td>RagThreshold</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"retrievalmodetype\">RetrievalModeType</h2>\n<p> The mode used to apply AI context to prompts. Can be ALWAYS, CRITERIA, or RAG.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ALWAYS</td>\n<td></td>\n</tr>\n<tr>\n<td>CRITERIA</td>\n<td></td>\n</tr>\n<tr>\n<td>RAG</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"ragthreshold\">RagThreshold</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customScore</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>incident</td>\n<td></td>\n<td>Incident</td>\n</tr>\n<tr>\n<td>score</td>\n<td></td>\n<td>SimilarityThreshold</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"similaritythreshold\">SimilarityThreshold</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EXTREMELY_SIMILAR</td>\n<td></td>\n</tr>\n<tr>\n<td>LOOSELY_SIMILAR</td>\n<td></td>\n</tr>\n<tr>\n<td>SIMILAR</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createaicontextinput\">CreateAiContextInput</h2>\n<p> Input for creating an AI context.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>context</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>expiresAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>mode</td>\n<td></td>\n<td>AiContextModeInput</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tags</td>\n<td></td>\n<td>AiContextOutcomeTagsInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateaicontextinput\">UpdateAiContextInput</h2>\n<p> Input for updating an AI context.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>context</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>expiresAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>mode</td>\n<td></td>\n<td>AiContextModeInput</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>neverExpires</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>tags</td>\n<td></td>\n<td>AiContextOutcomeTagsInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aicontextmodeinput\">AiContextModeInput</h2>\n<p> Mode configuration for AI context. Exactly one field must be non-null.\nThe populated field determines the retrieval mode.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>always</td>\n<td>Always apply this context. No conditions. Must be true.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>criteria</td>\n<td>Apply based on criteria evaluation.</td>\n<td>UqliFilter</td>\n</tr>\n<tr>\n<td>rag</td>\n<td>Apply using RAG (Retrieval-Augmented Generation).</td>\n<td>RagModeInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"ragmodeinput\">RagModeInput</h2>\n<p> Configuration for RAG retrieval mode.\nContext is retrieved based on semantic similarity.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>incident</td>\n<td>The RQ incident ticketNumber.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>score</td>\n<td></td>\n<td>RagThresholdScore</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"ragthresholdscore\">RagThresholdScore</h2>\n<p> Score configuration for RAG similarity matching. Provide either a predefined threshold or a custom score.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customScore</td>\n<td></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>score</td>\n<td></td>\n<td>SimilarityThreshold</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d2020c20-d47d-4e8a-bff7-89777096add2","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":"24a44127-e457-44b0-8f92-b3e9d4928228","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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Rerun all failed tasks for a playbook run</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nPlaybookRunResponse</p>\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":"c8af032c-75b5-4bac-b36f-0c81fa4f842a","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\": \"<ID HERE>\"\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\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"24a44127-e457-44b0-8f92-b3e9d4928228"},{"name":"runPlaybook","id":"0eb3780b-18bb-4e21-ba86-3bce9b2701cc","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\": \"<ID HERE>\",\n    \"drpAlertShortCode\": \"\",\n    \"input\": {\n      \"integrationIds\": [\n        \"<ID HERE>\"\n      ],\n      \"playbookVariables\": {\n        \"field\": \"\",\n        \"values\": [\n          \"\"\n        ]\n      }\n    },\n    \"originatorId\": \"<ID HERE>\",\n    \"platform\": \"WEB\",\n    \"playbookAction\": \"ADD_DOMAIN_TO_LIST\",\n    \"reason\": \"\",\n    \"tempRuleId\": \"\",\n    \"ticketNumber\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Run a playbook with the given input</p>\n<p>Inputs: \nRunPlaybookInput, </p>\n<p>Return: \nPlaybookRunResponse</p>\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":"d2ff32bd-e280-4cf5-8048-efe8d3d1f4f3","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\": \"<ID HERE>\",\n    \"drpAlertShortCode\": \"\",\n    \"input\": {\n      \"integrationIds\": [\n        \"<ID HERE>\"\n      ],\n      \"playbookVariables\": {\n        \"field\": \"\",\n        \"values\": [\n          \"\"\n        ]\n      }\n    },\n    \"originatorId\": \"<ID HERE>\",\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\": \"<ID HERE>\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"0eb3780b-18bb-4e21-ba86-3bce9b2701cc"},{"name":"upsertCustomerPlaybook","id":"479e250c-6f39-448f-8ffd-c9569ffb52a8","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\": \"<ID HERE>\",\n    \"note\": \"\",\n    \"rqAllowedToRun\": \"APPROVED\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Upsert customer metadata settings for a playbook</p>\n<p>Inputs: \nUpsertCustomerPlaybookInput, </p>\n<p>Return: \nCustomerPlaybookResponse</p>\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":"7397c614-6b26-4622-ad04-5699a14db97c","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"note\": \"\",\n        \"rqAllowedToRun\": \"APPROVED\"\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"479e250c-6f39-448f-8ffd-c9569ffb52a8"},{"name":"upsertPlaybookMetadata","id":"5267af51-d9a2-4e6e-9750-cfc6059b503d","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\": \"<ID HERE>\",\n    \"name\": \"\",\n    \"type\": \"CONTAINMENT\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Upsert metadata settings for a playbook</p>\n<p>Inputs: \nUpsertPlaybookMetadataInput, </p>\n<p>Return: \nPlaybookResponse</p>\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":"2657f2ea-f59e-4d43-9ebe-8329ee5fd47d","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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"metadata\": {\n          \"description\": \"\",\n          \"enabled\": true,\n          \"name\": \"\",\n          \"type\": \"CONTAINMENT\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"5267af51-d9a2-4e6e-9750-cfc6059b503d"}],"id":"f037f639-89c4-4671-b411-716ac686c732","_postman_id":"f037f639-89c4-4671-b411-716ac686c732","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":"fcfb7f64-5b60-4386-bfcf-92b22f841515","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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":"<p>Get the playbooks that are available with the associated custom customer settings</p>\n<p>Return: \nCustomerPlaybook</p>\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":"7942aa1c-c022-4495-8a64-868ca2e5c360","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n              \"name\": \"\",\n              \"type\": \"ANTIVIRUS\"\n            },\n            \"enabled\": true,\n            \"id\": \"<ID HERE>\",\n            \"lastConnectionTest\": \"2026-07-01T00:00:00.000Z\",\n            \"lastUsed\": \"2026-07-01T00:00:00.000Z\",\n            \"name\": \"\",\n            \"sharedBy\": {\n              \"active\": true,\n              \"headerSlug\": \"\",\n              \"id\": \"<ID HERE>\",\n              \"name\": \"\",\n              \"residency\": \"\",\n              \"slug\": \"\"\n            }\n          }\n        ]\n      }\n    ]\n  }\n}"}],"_postman_id":"fcfb7f64-5b60-4386-bfcf-92b22f841515"},{"name":"playbookRun","id":"670cabd7-c33f-4665-a0e4-84dabd6cb4db","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, $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            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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after3\": \"T18w\",\n  \"first3\": 10,\n  \"after4\": \"T18w\",\n  \"first4\": 10,\n  \"after5\": \"T18w\",\n  \"filter3\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order3\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after7\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first7\": 10,\n  \"order5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Get a PlaybookRun.</p>\n<p>Set <code>includeReversal</code> to also resolve the run's configured reversal playbook. It costs an\nextra upstream call, so leave it off unless <code>reversalPlaybook</code> is selected.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nPlaybookRun</p>\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":"1c3239c5-b359-44df-a5c1-19a78a117651","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, $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            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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after3\": \"T18w\",\n  \"first3\": 10,\n  \"after4\": \"T18w\",\n  \"first4\": 10,\n  \"after5\": \"T18w\",\n  \"filter3\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order3\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter4\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after7\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first7\": 10,\n  \"order5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"createdBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\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        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n            \"outputErrorMessage\": \"\",\n            \"outputMessage\": \"\",\n            \"value\": \"\"\n          }\n        ],\n        \"endTime\": \"2026-07-01T00:00:00.000Z\",\n        \"lastRetriedTime\": \"2026-07-01T00:00:00.000Z\",\n        \"startTime\": \"2026-07-01T00:00:00.000Z\"\n      },\n      \"id\": \"<ID HERE>\",\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\": \"DYNAMIC_TECH_ACTION\",\n      \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n      \"updatedBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"670cabd7-c33f-4665-a0e4-84dabd6cb4db"},{"name":"playbookRuns","id":"3a448733-0243-4b8b-86f4-edc86b4d394f","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"DYNAMIC_TECH_ACTION\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"orderBy\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"CREATED_AT\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Get PlaybookRuns.</p>\n<p>Inputs: \nString, PlaybookRunFilter, Int, PlaybookRunOrder, </p>\n<p>Return: \nPlaybookRunConnection</p>\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":"db047b19-70e5-4285-b9ec-6e27e4588e4b","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"DYNAMIC_TECH_ACTION\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"drpAlertShortCode\": \"\",\n            \"id\": \"<ID HERE>\",\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\": \"DYNAMIC_TECH_ACTION\",\n            \"updatedAt\": \"2026-07-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":"3a448733-0243-4b8b-86f4-edc86b4d394f"},{"name":"playbooks","id":"ee0d1a92-cc22-4230-bb02-1d58ad4faeea","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":"<p>Get playbooks that are available.</p>\n<p>Return: \nPlaybook</p>\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":"bdcc7775-8b65-4d6b-9246-990ddcb825b4","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\": \"<ID HERE>\",\n        \"metadata\": {\n          \"description\": \"\",\n          \"enabled\": true,\n          \"name\": \"\",\n          \"type\": \"CONTAINMENT\"\n        },\n        \"supportedTechnologies\": [\n          {\n            \"documentationUrl\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"type\": \"ANTIVIRUS\"\n          }\n        ]\n      }\n    ]\n  }\n}"}],"_postman_id":"ee0d1a92-cc22-4230-bb02-1d58ad4faeea"},{"name":"recommendedPlaybooks","id":"61112070-16ac-4205-99a8-bf26bc48e0ca","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":"<p>Get the recommended playbooks based on the filter parameters.</p>\n<p>Inputs: \nRecommendedPlaybookFilter, </p>\n<p>Return: \nRecommendedPlaybooks</p>\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":"8ca3857c-7e20-41d4-91d0-135e86a28bfd","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\": \"<ID HERE>\",\n            \"note\": \"\",\n            \"rqAllowedToRun\": \"APPROVED\"\n          }\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"61112070-16ac-4205-99a8-bf26bc48e0ca"}],"id":"931f58cf-e1b8-4218-a110-862efa84a4aa","_postman_id":"931f58cf-e1b8-4218-a110-862efa84a4aa","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":"e0bf43ad-ffc7-4935-8215-58b3cb35180d","description":"<h2 id=\"recommendedplaybooks\">RecommendedPlaybooks</h2>\n<p> Type representing recommended playbooks response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>playbooks</td>\n<td></td>\n<td>RecommendedPlaybook</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerplaybookresponse\">CustomerPlaybookResponse</h2>\n<p> Type representing customer playbook response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerPlaybook</td>\n<td></td>\n<td>CustomerPlaybook</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookresponse\">PlaybookResponse</h2>\n<p> Represents playbook response type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>playbook</td>\n<td></td>\n<td>Playbook</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbook\">Playbook</h2>\n<p> Represents Playbook Type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>action</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fieldDefinitions</td>\n<td></td>\n<td>ActionFieldDefinition</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td></td>\n<td>PlaybookMetadata</td>\n</tr>\n<tr>\n<td>supportedTechnologies</td>\n<td>Technologies which support this playbook execution</td>\n<td>Connector</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customerplaybook\">CustomerPlaybook</h2>\n<p> Represents customer playbook type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>action</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>fieldDefinitions</td>\n<td></td>\n<td>ActionFieldDefinition</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td></td>\n<td>PlaybookMetadata</td>\n</tr>\n<tr>\n<td>note</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>rqAllowedToRun</td>\n<td></td>\n<td>RQAllowedToRun</td>\n</tr>\n<tr>\n<td>supportedIntegrations</td>\n<td>Integration against which this playbook can be executed</td>\n<td>Integration</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"recommendedplaybook\">RecommendedPlaybook</h2>\n<p> Represents recommended playbook type containing playbook metadata and action fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fields</td>\n<td></td>\n<td>ActionFieldRecommendation</td>\n</tr>\n<tr>\n<td>playbook</td>\n<td></td>\n<td>CustomerPlaybook</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"actionfielddefinition\">ActionFieldDefinition</h2>\n<p> Field definition which will be used to run the playbook</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deprecated</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>field</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>required</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"actionfieldrecommendation\">ActionFieldRecommendation</h2>\n<p> Action field recommendation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>field</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>required</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookmetadata\">PlaybookMetadata</h2>\n<p> Playbook meta details</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>PlaybookType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"upsertplaybookmetadatainput\">UpsertPlaybookMetadataInput</h2>\n<p> Input type representing upsert playbook metadata</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>PlaybookType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"recommendedplaybookfilter\">RecommendedPlaybookFilter</h2>\n<p> Represents type to filter out playbooks in recommended list</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>artifacts</td>\n<td></td>\n<td>ArtifactInput</td>\n</tr>\n<tr>\n<td>tempRuleId</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"artifactinput\">ArtifactInput</h2>\n<p> Represents artifacts details for recommended playbook filter</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>field</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"upsertcustomerplaybookinput\">UpsertCustomerPlaybookInput</h2>\n<p> Input type representing upsert customer playbook details</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>note</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>rqAllowedToRun</td>\n<td></td>\n<td>RQAllowedToRun</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbooktype\">PlaybookType</h2>\n<p> Playbook type enum</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONTAINMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICHMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>REMEDIATION</td>\n<td></td>\n</tr>\n<tr>\n<td>REVERSAL</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunresponse\">PlaybookRunResponse</h2>\n<p> Represents playbook run response type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>playbookRun</td>\n<td></td>\n<td>PlaybookRun</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrun\">PlaybookRun</h2>\n<p> Represents Playbook Run type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>drpAlertShortCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>executionResult</td>\n<td></td>\n<td>PlaybookRunExecution</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Playbook run identifier</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>platform</td>\n<td></td>\n<td>PlaybookRunPlatformType</td>\n</tr>\n<tr>\n<td>playbookAction</td>\n<td>Action this playbook run performed on target system</td>\n<td>String</td>\n</tr>\n<tr>\n<td>playbookName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>playbookType</td>\n<td></td>\n<td>PlaybookType</td>\n</tr>\n<tr>\n<td>reason</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>rqAllowedToRun</td>\n<td></td>\n<td>RQAllowedToRun</td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>PlaybookRunStatus</td>\n</tr>\n<tr>\n<td>tempRuleId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ticketNumber</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>trigger</td>\n<td></td>\n<td>PlaybookRunTriggerType</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>PlaybookRunType</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunexecution\">PlaybookRunExecution</h2>\n<p> PlaybookRunExecution summarizes the execution of the PlaybookRun</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>actionExecutions</td>\n<td></td>\n<td>PlaybookRunActionExecution</td>\n</tr>\n<tr>\n<td>endTime</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>lastRetriedTime</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>startTime</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunactionexecution\">PlaybookRunActionExecution</h2>\n<p> Represents the execution of a single action within a playbook run, including its status, inputs, and outputs.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>actionExecutionStatus</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>field</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique identifier for this action execution.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>integration</td>\n<td></td>\n<td>Integration</td>\n</tr>\n<tr>\n<td>outputErrorMessage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>outputMessage</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>value</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunedge\">PlaybookRunEdge</h2>\n<p> Represents the edge type for Playbook Run</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>PlaybookRun</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunconnection\">PlaybookRunConnection</h2>\n<p> Represents the connection type for Playbook Run</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>PlaybookRunEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunorder\">PlaybookRunOrder</h2>\n<p> Represents playbook run order type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>PlaybookRunOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunfilter\">PlaybookRunFilter</h2>\n<p> Playbook run filter while retrieving runs</p>\n<p>See Also: PlaybookRunFilterData</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td></td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>drpAlertShortCodes</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>platforms</td>\n<td></td>\n<td>PlaybookRunPlatformType</td>\n</tr>\n<tr>\n<td>playbookActions</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>playbookNames</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>playbookTypes</td>\n<td></td>\n<td>PlaybookType</td>\n</tr>\n<tr>\n<td>search</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>statuses</td>\n<td></td>\n<td>PlaybookRunStatus</td>\n</tr>\n<tr>\n<td>tempRuleIds</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ticketNumbers</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>triggers</td>\n<td></td>\n<td>PlaybookRunTriggerType</td>\n</tr>\n<tr>\n<td>types</td>\n<td></td>\n<td>PlaybookRunType</td>\n</tr>\n<tr>\n<td>users</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"runplaybookinput\">RunPlaybookInput</h2>\n<p> Represents Playbook Run input type for running a playbook</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aiChatId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>drpAlertShortCode</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>input</td>\n<td></td>\n<td>PlaybookInput</td>\n</tr>\n<tr>\n<td>originatorId</td>\n<td>This is the Incident ID that might have triggered running this playbook</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>platform</td>\n<td></td>\n<td>PlaybookRunPlatformType</td>\n</tr>\n<tr>\n<td>playbookAction</td>\n<td></td>\n<td>TechAction</td>\n</tr>\n<tr>\n<td>reason</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>tempRuleId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ticketNumber</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookinput\">PlaybookInput</h2>\n<p> Run Playbook inputs</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>integrationIds</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>playbookVariables</td>\n<td></td>\n<td>PlaybookVariable</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookvariable\">PlaybookVariable</h2>\n<p> Parameters required to run playbook</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>field</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"rqallowedtorun\">RQAllowedToRun</h2>\n<p> Enum representing if the Playbook is allowed to be run by ReliaQuest</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>APPROVED</td>\n<td></td>\n</tr>\n<tr>\n<td>CONDITIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>DENIED</td>\n<td></td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookruntype\">PlaybookRunType</h2>\n<p> Playbook run type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DYNAMIC_TECH_ACTION</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERIC</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunstatus\">PlaybookRunStatus</h2>\n<p> Represents enum of Playbook Types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FAILED</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_FOUND</td>\n<td></td>\n</tr>\n<tr>\n<td>PARTIAL</td>\n<td></td>\n</tr>\n<tr>\n<td>PREVENTED</td>\n<td>The run was blocked before executing. Reversal playbooks are not generated for prevented runs.</td>\n</tr>\n<tr>\n<td>RUNNING</td>\n<td></td>\n</tr>\n<tr>\n<td>SUCCESS</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunorderby\">PlaybookRunOrderBy</h2>\n<p> Playbook Order by options</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>PLAYBOOK_NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>PLAYBOOK_TYPE</td>\n<td></td>\n</tr>\n<tr>\n<td>STATUS</td>\n<td></td>\n</tr>\n<tr>\n<td>TYPE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookruntriggertype\">PlaybookRunTriggerType</h2>\n<p> Represents playbook run trigger source</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AGENTIC</td>\n<td>Used for Agentic ARP run</td>\n</tr>\n<tr>\n<td>AGENTIC_ARP</td>\n<td>ARP actions selected by the IR analyst agent</td>\n</tr>\n<tr>\n<td>AGENTIC_DETERMINATION_ARP</td>\n<td>Automated actions proposed during the agent determination phase</td>\n</tr>\n<tr>\n<td>AGENTIC_WORKFLOW</td>\n<td>Workflow-driven run flagged as part of an autonomous agent run</td>\n</tr>\n<tr>\n<td>AUTOMATED_ENRICHMENT</td>\n<td>IR workflow enrichment sub-workflow runs</td>\n</tr>\n<tr>\n<td>AUTOMATED_REVERSAL</td>\n<td>Reversal of a previous automated run</td>\n</tr>\n<tr>\n<td>AUTOMATION</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER</td>\n<td></td>\n</tr>\n<tr>\n<td>PROGRAMMATIC_ARP</td>\n<td>Deterministic IR workflow automated-action steps</td>\n</tr>\n<tr>\n<td>RQ_USER</td>\n<td></td>\n</tr>\n<tr>\n<td>WORKFLOW</td>\n<td>Run from a customer workflow</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"playbookrunplatformtype\">PlaybookRunPlatformType</h2>\n<p> Represents playbook run trigger platform</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MOBILE</td>\n<td></td>\n</tr>\n<tr>\n<td>WEB</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"techaction\">TechAction</h2>\n<p> Actions that can be taken for technologies</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ADD_DOMAIN_TO_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>ADD_IP_TO_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>ADD_URL_TO_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>ALLOW_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>ALLOW_EMAIL_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>ALLOW_HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>ALLOW_IP</td>\n<td></td>\n</tr>\n<tr>\n<td>ALLOW_URL</td>\n<td></td>\n</tr>\n<tr>\n<td>ANALYZE_FILE</td>\n<td></td>\n</tr>\n<tr>\n<td>BAN_HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>BLOCK_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>BLOCK_EMAIL_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>BLOCK_EMAIL_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>BLOCK_IP</td>\n<td></td>\n</tr>\n<tr>\n<td>BLOCK_PORT</td>\n<td></td>\n</tr>\n<tr>\n<td>BLOCK_URL</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATE_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETE_EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETE_EMAIL_ATTACHMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETE_FILE</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETE_FILE_BY_DEVICE_ID</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETE_FILE_BY_HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETE_INBOX_RULE</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETE_RULES</td>\n<td></td>\n</tr>\n<tr>\n<td>DISABLE_MFA</td>\n<td></td>\n</tr>\n<tr>\n<td>DISABLE_SERVICE_ACCOUNT</td>\n<td></td>\n</tr>\n<tr>\n<td>DISABLE_USER</td>\n<td></td>\n</tr>\n<tr>\n<td>DRILLDOWN</td>\n<td></td>\n</tr>\n<tr>\n<td>ENABLE_USER</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_ALERT</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_DEVICE</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_DOMAIN_CONTROLLER</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_FIELDS</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_HOST</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_IP</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_POLICY</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_SOURCES</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_URL</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_USER</td>\n<td></td>\n</tr>\n<tr>\n<td>ENRICH_VULNERABILITY</td>\n<td></td>\n</tr>\n<tr>\n<td>ENROLL_MFA</td>\n<td></td>\n</tr>\n<tr>\n<td>FETCH_ASSETS</td>\n<td></td>\n</tr>\n<tr>\n<td>FETCH_IDENTITIES</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERATE_NATIVE_QUERY</td>\n<td></td>\n</tr>\n<tr>\n<td>GET_DETECTION_RECORDS</td>\n<td></td>\n</tr>\n<tr>\n<td>GET_RULES</td>\n<td></td>\n</tr>\n<tr>\n<td>HARD_DELETE_EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>INITIATE_FILE_SCAN</td>\n<td></td>\n</tr>\n<tr>\n<td>INITIATE_HOST_SCAN</td>\n<td></td>\n</tr>\n<tr>\n<td>INITIATE_IP_SCAN</td>\n<td></td>\n</tr>\n<tr>\n<td>INITIATE_VULNERABILITY_SCAN</td>\n<td></td>\n</tr>\n<tr>\n<td>ISOLATE_HOST</td>\n<td></td>\n</tr>\n<tr>\n<td>ISOLATE_HOST_BY_IP</td>\n<td></td>\n</tr>\n<tr>\n<td>ISOLATE_HOST_BY_MAC</td>\n<td></td>\n</tr>\n<tr>\n<td>PERFORM_GM_DETECT_QUERY</td>\n<td></td>\n</tr>\n<tr>\n<td>PERFORM_QUERY</td>\n<td></td>\n</tr>\n<tr>\n<td>QUARANTINE_FILE</td>\n<td></td>\n</tr>\n<tr>\n<td>REMOTE_LOCK</td>\n<td></td>\n</tr>\n<tr>\n<td>REMOTE_RESTART</td>\n<td></td>\n</tr>\n<tr>\n<td>REMOVE_ALL_AUTH_METHODS</td>\n<td></td>\n</tr>\n<tr>\n<td>REMOVE_DOMAIN_FROM_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>REMOVE_IP_FROM_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>REMOVE_MFA_AUTH_METHODS</td>\n<td></td>\n</tr>\n<tr>\n<td>REMOVE_URL_FROM_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>RESET_MFA</td>\n<td></td>\n</tr>\n<tr>\n<td>RESET_PASSWORD</td>\n<td></td>\n</tr>\n<tr>\n<td>RESTORE_EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>SCAN_RESULTS</td>\n<td></td>\n</tr>\n<tr>\n<td>SET_PASSWORD</td>\n<td></td>\n</tr>\n<tr>\n<td>SHUTDOWN_HOST</td>\n<td></td>\n</tr>\n<tr>\n<td>SOFT_DELETE_EMAIL</td>\n<td></td>\n</tr>\n<tr>\n<td>TERMINATE_PROCESS</td>\n<td></td>\n</tr>\n<tr>\n<td>TERMINATE_SESSIONS</td>\n<td></td>\n</tr>\n<tr>\n<td>TEST_CONNECTION</td>\n<td></td>\n</tr>\n<tr>\n<td>UNALLOW_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>UNALLOW_EMAIL_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>UNALLOW_HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>UNALLOW_IP</td>\n<td></td>\n</tr>\n<tr>\n<td>UNALLOW_URL</td>\n<td></td>\n</tr>\n<tr>\n<td>UNBAN_HASH</td>\n<td></td>\n</tr>\n<tr>\n<td>UNBLOCK_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>UNBLOCK_EMAIL_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>UNBLOCK_EMAIL_DOMAIN</td>\n<td></td>\n</tr>\n<tr>\n<td>UNBLOCK_IP</td>\n<td></td>\n</tr>\n<tr>\n<td>UNBLOCK_PORT</td>\n<td></td>\n</tr>\n<tr>\n<td>UNBLOCK_URL</td>\n<td></td>\n</tr>\n<tr>\n<td>UNISOLATE_HOST</td>\n<td></td>\n</tr>\n<tr>\n<td>UNISOLATE_HOST_BY_IP</td>\n<td></td>\n</tr>\n<tr>\n<td>UNISOLATE_HOST_BY_MAC</td>\n<td></td>\n</tr>\n<tr>\n<td>UNQUARANTINE_FILE</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATE_DETECTIONS</td>\n<td></td>\n</tr>\n<tr>\n<td>UPSERT_RULES</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e0bf43ad-ffc7-4935-8215-58b3cb35180d","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":"a57f41ce-6fdd-4c88-a117-0e9979166049","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query integration ($after: String, $filter: IntegrationActivityLogFilter, $first: Int, $order: IntegrationActivityLogOrder, $after1: String, $first1: Int, $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            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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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  \"after2\": \"T18w\",\n  \"first2\": 10,\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Retrieves one integration by ID</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nIntegration</p>\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":"d1f71b8c-992d-4e92-a96e-9bf7f40e39ef","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, $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            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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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  \"after2\": \"T18w\",\n  \"first2\": 10,\n  \"id\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"type\": \"ANTIVIRUS\"\n      },\n      \"enabled\": true,\n      \"id\": \"<ID HERE>\",\n      \"lastConnectionTest\": \"2026-07-01T00:00:00.000Z\",\n      \"lastUsed\": \"2026-07-01T00:00:00.000Z\",\n      \"name\": \"\",\n      \"sharedBy\": {\n        \"accessControlPolicies\": {\n          \"totalCount\": 0\n        },\n        \"active\": true,\n        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"residency\": \"\",\n        \"slug\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"a57f41ce-6fdd-4c88-a117-0e9979166049"},{"name":"integrations","id":"8f626105-524d-4af2-aad5-9f885a5ee001","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      \"ANTIVIRUS\"\n    ],\n    \"enabled\": true,\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"search\": \"\"\n  },\n  \"integrationOrder\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"CONNECTOR_NAME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Retrieves a list of integrations, optionally filtered by various criteria.</p>\n<p>Inputs: \nString, Int, IntegrationFilter, IntegrationOrder, </p>\n<p>Return: \nIntegrationConnection</p>\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":"9a934580-1d21-4239-b690-3059a0578052","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      \"ANTIVIRUS\"\n    ],\n    \"enabled\": true,\n    \"ids\": [\n      \"<ID HERE>\"\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\": \"<ID HERE>\",\n            \"lastConnectionTest\": \"2026-07-01T00:00:00.000Z\",\n            \"lastUsed\": \"2026-07-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":"8f626105-524d-4af2-aad5-9f885a5ee001"},{"name":"searchHistory","id":"2e568fde-937a-404b-9257-cc806b01d26e","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\": \"<ID HERE>\"\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":"<p>Retrieve a list of query batches.</p>\n<p>Inputs: \nString, QueryBatchSearchBy, QueryBatchFilter, Int, QueryBatchOrder, </p>\n<p>Return: \nQueryBatchConnection</p>\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":"5c4ee8e3-622b-4a30-b4aa-8f4ba0b2f0b4","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\": \"<ID HERE>\"\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\": \"<ID HERE>\",\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":"2e568fde-937a-404b-9257-cc806b01d26e"}],"id":"02c4e099-e7f7-4d40-923d-54475cc6b340","_postman_id":"02c4e099-e7f7-4d40-923d-54475cc6b340","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":"94d408a9-366c-4243-8d7e-73c81f33a942","description":"<h2 id=\"integrationfilter\">IntegrationFilter</h2>\n<p> Input type used to filter integrations based on specific criteria.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connectionStatus</td>\n<td>The connection status to filter integrations indicating whether the integration connection check was successful, unsuccessful or connection status is currently unavailable.</td>\n<td>ConnectionStatus</td>\n</tr>\n<tr>\n<td>connectorNames</td>\n<td>A list of connector names to filter integrations. Only integrations that match any of these connector names will be included in the results.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>connectorTypes</td>\n<td>A list of connector types to filter integrations. This should be a list of technology types that integrations can be categorized by.</td>\n<td>TechnologyType</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td>A 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.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>A list of integration uuid to filter integrations. Only integrations that match these integration uuid will be included in the results.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Allows searching for integrations by matching keywords in fields like connector name, type, and integration name.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationorderby\">IntegrationOrderBy</h2>\n<p> Order by ENUM for Integrations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONNECTOR_NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>CONNECTOR_TYPE</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>ENABLED</td>\n<td></td>\n</tr>\n<tr>\n<td>LAST_CONNECTION_TEST</td>\n<td></td>\n</tr>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>UUID</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationorder\">IntegrationOrder</h2>\n<p> Integration OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = NAME, direction = ASC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>IntegrationOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integration\">Integration</h2>\n<p> Represents an integration.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>Paginated activity log entries that capture changes to the integration.</td>\n<td>IntegrationActivityLogConnection</td>\n</tr>\n<tr>\n<td>connectionStatus</td>\n<td>Connection status of the integration.</td>\n<td>ConnectionStatus</td>\n</tr>\n<tr>\n<td>connector</td>\n<td>The connector associated with the integration, linking to a specific technology type.</td>\n<td>Connector</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td>Whether the integration is enabled.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique identifier for the integration.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>lastConnectionTest</td>\n<td>Timestamp of the last connection test.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>lastUsed</td>\n<td>Timestamp of the last integration run.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the integration.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>sharedBy</td>\n<td>The customer that shared this integration, if shared.</td>\n<td>Customer</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"connector\">Connector</h2>\n<p> Represents a technology connector.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>documentationUrl</td>\n<td>URL to the connector's documentation article in the Resource Center.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique identifier for the connector.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the connector.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of technology the connector represents.</td>\n<td>TechnologyType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationconnection\">IntegrationConnection</h2>\n<p> Supports pagination of integrations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td>A list of edges, each containing a node (Integration) and a cursor for pagination.</td>\n<td>IntegrationEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td>Contains information about pagination (e.g., hasNextPage, hasPreviousPage).</td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationedge\">IntegrationEdge</h2>\n<p> An edge in the connections list.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td>A cursor pointing to this edge, used for pagination.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td>The integration node associated with this edge.</td>\n<td>Integration</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationactivitylogconnection\">IntegrationActivityLogConnection</h2>\n<p> Integration Activity Log Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>IntegrationActivityLogEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationactivitylogedge\">IntegrationActivityLogEdge</h2>\n<p> Integration Activity Log Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>IntegrationActivityLogEntry</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationactivitylogentry\">IntegrationActivityLogEntry</h2>\n<p> Represents an Integration Activity Log Entry</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>changeGroupUuid</td>\n<td>Groups related log entries that originated from the same user action</td>\n<td>String</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>When the action was performed</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Who performed the action</td>\n<td>User</td>\n</tr>\n<tr>\n<td>field</td>\n<td>The name of the field that changed. Null when type is CREATED, DELETED, ENABLED, or DISABLED.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fieldChange</td>\n<td>The old and new values of the field that changed. Null when type is CREATED, DELETED, ENABLED, or DISABLED.</td>\n<td>StringListChanged</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique identifier for this activity log entry</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of action performed</td>\n<td>IntegrationActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationactivitylogorderby\">IntegrationActivityLogOrderBy</h2>\n<p> Integration Activity Log OrderBy fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationactivitylogtype\">IntegrationActivityLogType</h2>\n<p> Integration Activity Log Types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONFIGURATION_CHANGED</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED</td>\n<td></td>\n</tr>\n<tr>\n<td>DELETED</td>\n<td></td>\n</tr>\n<tr>\n<td>DISABLED</td>\n<td></td>\n</tr>\n<tr>\n<td>ENABLED</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationactivitylogfilter\">IntegrationActivityLogFilter</h2>\n<p> Integration activity log filter input type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Activity log creation time range (Optional)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Activity log types to filter by (Optional)</td>\n<td>IntegrationActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"integrationactivitylogorder\">IntegrationActivityLogOrder</h2>\n<p> Integration Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>IntegrationActivityLogOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"connectionstatus\">ConnectionStatus</h2>\n<p> Integration ConnectionStatus ENUM.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONNECTED</td>\n<td></td>\n</tr>\n<tr>\n<td>DISCONNECTED</td>\n<td></td>\n</tr>\n<tr>\n<td>NOT_AVAILABLE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"technologytype\">TechnologyType</h2>\n<p> Defines the various types of technology that a connector can be associated with.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ANTIVIRUS</td>\n<td></td>\n</tr>\n<tr>\n<td>CASB</td>\n<td></td>\n</tr>\n<tr>\n<td>CLOUD</td>\n<td></td>\n</tr>\n<tr>\n<td>DATA_LAKE</td>\n<td></td>\n</tr>\n<tr>\n<td>DNS</td>\n<td></td>\n</tr>\n<tr>\n<td>EDL_LIST</td>\n<td></td>\n</tr>\n<tr>\n<td>EDR</td>\n<td></td>\n</tr>\n<tr>\n<td>EMAIL_SECURITY</td>\n<td></td>\n</tr>\n<tr>\n<td>FILE_INTEGRITY_MONITORING</td>\n<td></td>\n</tr>\n<tr>\n<td>FILE_TRANSFER_OR_STORAGE</td>\n<td></td>\n</tr>\n<tr>\n<td>FIREWALL</td>\n<td></td>\n</tr>\n<tr>\n<td>IDS_IPS</td>\n<td></td>\n</tr>\n<tr>\n<td>MALWARE_SEARCH</td>\n<td></td>\n</tr>\n<tr>\n<td>OPERATIONAL_TECHNOLOGY</td>\n<td></td>\n</tr>\n<tr>\n<td>OSINT</td>\n<td></td>\n</tr>\n<tr>\n<td>SANDBOXING</td>\n<td></td>\n</tr>\n<tr>\n<td>SIEM</td>\n<td></td>\n</tr>\n<tr>\n<td>SOAR</td>\n<td></td>\n</tr>\n<tr>\n<td>THREAT_INTELLIGENCE</td>\n<td></td>\n</tr>\n<tr>\n<td>UBA</td>\n<td></td>\n</tr>\n<tr>\n<td>VIRTUALIZATION</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABILITY_MANAGEMENT</td>\n<td></td>\n</tr>\n<tr>\n<td>VULNERABILITY_SCANNER</td>\n<td></td>\n</tr>\n<tr>\n<td>XDR</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"94d408a9-366c-4243-8d7e-73c81f33a942","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":"c990266d-3f3c-4a8e-848e-4bff524bb740","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      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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":"<p>Create a reference list.</p>\n<p>Inputs: \nCreateReferenceListInput, </p>\n<p>Return: \nReferenceListResponse</p>\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":"8c5b7e50-65cd-4cda-92f1-c2135000cd03","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      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"type\": \"BOOLEAN\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          }\n        ],\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"dataTagging\": true,\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"isBuiltIn\": true,\n        \"name\": \"\",\n        \"queryReference\": true,\n        \"rows\": {\n          \"totalCount\": 0\n        },\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"c990266d-3f3c-4a8e-848e-4bff524bb740"},{"name":"createReferenceListColumn","id":"15529f2a-f174-4122-bcb6-b8fe0607ad09","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\": \"<ID HERE>\",\n    \"type\": \"BOOLEAN\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Create a column and any associated linked GreyMatter fields within a reference list.</p>\n<p>Inputs: \nCreateReferenceListColumnInput, </p>\n<p>Return: \nReferenceListColumnResponse</p>\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":"0f4ad2c6-922c-45db-9062-87c3f619b306","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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"linkedFields\": [\n          {\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          }\n        ],\n        \"name\": \"\",\n        \"type\": \"BOOLEAN\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"15529f2a-f174-4122-bcb6-b8fe0607ad09"},{"name":"createReferenceListRow","id":"922e7ba3-30ad-4b82-949a-293785eabea3","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\": \"<ID HERE>\",\n    \"values\": {\n      \"column\": \"<ID HERE>\",\n      \"value\": \"\"\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Create a row within a reference list.</p>\n<p>Inputs: \nCreateReferenceListRowInput, </p>\n<p>Return: \nReferenceListRowResponse</p>\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":"d31a46d6-1584-4bda-8a0e-d8f1004d8e87","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\": \"<ID HERE>\",\n    \"values\": {\n      \"column\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"values\": [\n          {\n            \"id\": \"<ID HERE>\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"value\": \"\"\n          }\n        ]\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"922e7ba3-30ad-4b82-949a-293785eabea3"},{"name":"deleteReferenceList","id":"dad011db-76df-4688-ab32-f7705f835097","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      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete a reference list.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nReferenceListResponse</p>\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":"38a5a6df-1f9d-42a6-af33-77769c3229b3","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      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"type\": \"BOOLEAN\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          }\n        ],\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"dataTagging\": true,\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"isBuiltIn\": true,\n        \"name\": \"\",\n        \"queryReference\": true,\n        \"rows\": {\n          \"totalCount\": 0\n        },\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"dad011db-76df-4688-ab32-f7705f835097"},{"name":"deleteReferenceListColumn","id":"e450392e-79dc-4960-8c8d-df85cc32fbfe","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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete a column within a reference list.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nReferenceListColumnResponse</p>\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":"ec6d05b0-b401-43b2-bcdf-515fe0946944","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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"linkedFields\": [\n          {\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          }\n        ],\n        \"name\": \"\",\n        \"type\": \"BOOLEAN\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"e450392e-79dc-4960-8c8d-df85cc32fbfe"},{"name":"deleteReferenceListRow","id":"b83c23c0-8d03-44f0-a595-802581aae085","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\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete a row within a reference list.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nReferenceListRowResponse</p>\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":"13d75979-5ea7-47bb-afc4-e90335b02630","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\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"values\": [\n          {\n            \"id\": \"<ID HERE>\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"value\": \"\"\n          }\n        ]\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"b83c23c0-8d03-44f0-a595-802581aae085"},{"name":"updateReferenceList","id":"9c9ea9ca-2a9f-43a4-91ab-00553c2c2c1b","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      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n    \"name\": \"\",\n    \"queryReference\": true\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update a reference list.</p>\n<p>Inputs: \nUpdateReferenceListInput, </p>\n<p>Return: \nReferenceListResponse</p>\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":"2249cb0a-4a01-440b-9b4b-8be29d49dd5d","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      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"name\": \"\",\n            \"type\": \"BOOLEAN\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          }\n        ],\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"dataTagging\": true,\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"isBuiltIn\": true,\n        \"name\": \"\",\n        \"queryReference\": true,\n        \"rows\": {\n          \"totalCount\": 0\n        },\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"9c9ea9ca-2a9f-43a4-91ab-00553c2c2c1b"},{"name":"updateReferenceListColumn","id":"d54068ee-2965-4caa-8b5a-b52045e9fa02","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\": \"<ID HERE>\",\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":"<p>Update a column and its associated linked GreyMatter fields within a reference list.</p>\n<p>Inputs: \nUpdateReferenceListColumnInput, </p>\n<p>Return: \nReferenceListColumnResponse</p>\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":"eddbe54e-48e5-497a-8ff5-e0bd352d7378","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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"description\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"linkedFields\": [\n          {\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n          }\n        ],\n        \"name\": \"\",\n        \"type\": \"BOOLEAN\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"d54068ee-2965-4caa-8b5a-b52045e9fa02"},{"name":"updateReferenceListRow","id":"14f823cf-c236-415c-be07-da23087afe6f","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\": \"<ID HERE>\",\n    \"values\": {\n      \"column\": \"<ID HERE>\",\n      \"value\": \"\"\n    }\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update a row's values within a reference list.</p>\n<p>Inputs: \nUpdateReferenceListRowInput, </p>\n<p>Return: \nReferenceListRowResponse</p>\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":"360dac6d-999b-45b7-8887-3423bc7fa50d","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\": \"<ID HERE>\",\n    \"values\": {\n      \"column\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"values\": [\n          {\n            \"id\": \"<ID HERE>\",\n            \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n            \"value\": \"\"\n          }\n        ]\n      },\n      \"success\": true\n    }\n  }\n}"}],"_postman_id":"14f823cf-c236-415c-be07-da23087afe6f"}],"id":"f2a32789-654f-4883-a7c7-87911779a6c9","_postman_id":"f2a32789-654f-4883-a7c7-87911779a6c9","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":"07903966-54aa-4036-8c6e-0bb5140f97f0","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after3\": \"T18w\",\n  \"columnSelector\": {\n    \"columns\": [\n      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter3\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first4\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after5\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order5\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter6\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order6\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch a reference list by its ID.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nReferenceList</p>\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":"cda2bb28-8d78-4e18-b9e9-47e034810a74","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after3\": \"T18w\",\n  \"columnSelector\": {\n    \"columns\": [\n      \"<ID HERE>\"\n    ],\n    \"linkedFields\": [\n      \"\"\n    ]\n  },\n  \"filter3\": {\n    \"listConditions\": {\n      \"caseInsensitive\": true,\n      \"column\": \"<ID HERE>\",\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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first4\": 10,\n  \"order4\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after5\": \"T18w\",\n  \"filter5\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order5\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter6\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order6\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n          \"createdBy\": {\n            \"email\": \"\",\n            \"fullName\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"serviceNowId\": \"\"\n          },\n          \"description\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"linkedFields\": [\n            {\n              \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n              \"id\": \"<ID HERE>\",\n              \"updatedAt\": \"2026-07-01T00:00:00.000Z\"\n            }\n          ],\n          \"name\": \"\",\n          \"type\": \"BOOLEAN\",\n          \"updatedAt\": \"2026-07-01T00:00:00.000Z\",\n          \"updatedBy\": {\n            \"email\": \"\",\n            \"fullName\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"serviceNowId\": \"\"\n          }\n        }\n      ],\n      \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n      \"createdBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      },\n      \"dataTagging\": true,\n      \"description\": \"\",\n      \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"updatedBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"07903966-54aa-4036-8c6e-0bb5140f97f0"},{"name":"referenceLists","id":"6e1df76a-3b9c-4667-a0e4-e29c8bd133fe","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":"<p>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.</p>\n<p>Inputs: \nString, ReferenceListFilter, Int, ReferenceListOrder, </p>\n<p>Return: \nReferenceListConnection</p>\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":"b3950c2e-16cd-41f0-a11e-ba612b7e9223","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-07-01T00:00:00.000Z\",\n            \"dataTagging\": true,\n            \"description\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"isBuiltIn\": true,\n            \"name\": \"\",\n            \"queryReference\": true,\n            \"updatedAt\": \"2026-07-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":"6e1df76a-3b9c-4667-a0e4-e29c8bd133fe"}],"id":"6585f5b4-03d0-4eaa-b070-61b48770c5df","_postman_id":"6585f5b4-03d0-4eaa-b070-61b48770c5df","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":"243c7426-34f4-4cc1-808e-a9c327d86dac","description":"<h2 id=\"referencelist\">ReferenceList</h2>\n<p> Represents a Reference List type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>columns</td>\n<td></td>\n<td>ReferenceListColumn</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>dataTagging</td>\n<td>Allows for the automatic tagging of incoming logs with reference list data.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>isBuiltIn</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>queryReference</td>\n<td>Allows the reference list to be included in Investigate and Hunt queries.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>rows</td>\n<td>The 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.</td>\n<td>ReferenceListRowConnection</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistconnection\">ReferenceListConnection</h2>\n<p> Reference List Connection schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>ReferenceListEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistedge\">ReferenceListEdge</h2>\n<p> Reference List Edge schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>ReferenceList</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistresponse\">ReferenceListResponse</h2>\n<p> Response type for Create, Update, and Delete operations on Reference Lists.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>referenceList</td>\n<td></td>\n<td>ReferenceList</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistfilter\">ReferenceListFilter</h2>\n<p> Input to filter reference lists by name, queryReference enabling, and dataTagging enabling.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dataTagging</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>queryReference</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>search</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistorder\">ReferenceListOrder</h2>\n<p> Reference Lists OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>ReferenceListOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createreferencelistinput\">CreateReferenceListInput</h2>\n<p> Input to create a reference list.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dataTagging</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>queryReference</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatereferencelistinput\">UpdateReferenceListInput</h2>\n<p> Input to update a reference list.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dataTagging</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>queryReference</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistorderby\">ReferenceListOrderBy</h2>\n<p> Order by Enum for Reference Lists.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>DESCRIPTION</td>\n<td></td>\n</tr>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistcolumn\">ReferenceListColumn</h2>\n<p> Represents a Reference List Column type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>linkedFields</td>\n<td></td>\n<td>ReferenceListLinkedGreyMatterField</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>ReferenceListColumnValueType</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistcolumnvaluetype\">ReferenceListColumnValueType</h2>\n<p> The value type of a Reference List Column.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BOOLEAN</td>\n<td></td>\n</tr>\n<tr>\n<td>STRING</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistlinkedgreymatterfield\">ReferenceListLinkedGreyMatterField</h2>\n<p> Represents a Linked GreyMatter Field type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>linkedField</td>\n<td></td>\n<td>GreyMatterField</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistcolumnresponse\">ReferenceListColumnResponse</h2>\n<p> Response type for Create, Update, and Delete operations on Reference List Columns.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>column</td>\n<td></td>\n<td>ReferenceListColumn</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createreferencelistcolumninput\">CreateReferenceListColumnInput</h2>\n<p> Input to create a column and any associated linked GreyMatter fields in a reference list.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>linkedFields</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>referenceList</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>ReferenceListColumnValueType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatereferencelistcolumninput\">UpdateReferenceListColumnInput</h2>\n<p> Input to update a column and its associated linked GreyMatter fields in a reference list.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>linkedFields</td>\n<td>If the \"replace\" operation is provided, any \"add\" or \"remove\" operations are ignored. \"Remove\" is performed prior to \"add\".</td>\n<td>UpdateReferenceListLinkedGreyMatterFieldInput</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatereferencelistlinkedgreymatterfieldinput\">UpdateReferenceListLinkedGreyMatterFieldInput</h2>\n<p> Input to update the associated linked GreyMatter fields in a Reference List Column.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>add</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>remove</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>replace</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistrow\">ReferenceListRow</h2>\n<p> Represents a Reference List Row type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>ReferenceListValue</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistrowconnection\">ReferenceListRowConnection</h2>\n<p> Reference List Row Connection schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>ReferenceListRowEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistrowedge\">ReferenceListRowEdge</h2>\n<p> Reference List Row Edge schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>ReferenceListRow</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistrowresponse\">ReferenceListRowResponse</h2>\n<p> Response type for Create, Update, and Delete operations on Reference List Rows.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>row</td>\n<td></td>\n<td>ReferenceListRow</td>\n</tr>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistcolumnselector\">ReferenceListColumnSelector</h2>\n<p> Input to select table columns by Column name or linked GreyMatter fields.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>columns</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>linkedFields</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistrowfilter\">ReferenceListRowFilter</h2>\n<p> Input to filter values within a row.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>listConditions</td>\n<td>Input 'listConditions' is used to refine returned rows and values based on the applied constraints.</td>\n<td>ListCondition</td>\n</tr>\n<tr>\n<td>operator</td>\n<td>Input 'operator' is used to AND/OR list conditions.</td>\n<td>ListConditionOperator</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Input 'search' is used to filter for rows containing the substring of the search.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistroworder\">ReferenceListRowOrder</h2>\n<p> Reference List Rows OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>ReferenceListRowOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createreferencelistrowinput\">CreateReferenceListRowInput</h2>\n<p> Input to create a row in a reference list.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>referenceList</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>ReferenceListRowValueInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatereferencelistrowinput\">UpdateReferenceListRowInput</h2>\n<p> Input to update a row's values within a reference list.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>ReferenceListRowValueInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistrowvalueinput\">ReferenceListRowValueInput</h2>\n<p> Input to populate values when creating/updating a row.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>column</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>value</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistroworderby\">ReferenceListRowOrderBy</h2>\n<p> Order by Enum for Reference List Rows.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"referencelistvalue\">ReferenceListValue</h2>\n<p> Represents a Reference List Value type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>column</td>\n<td></td>\n<td>ReferenceListColumn</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>value</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"listcondition\">ListCondition</h2>\n<p> Input to provide column- and value-based conditions to refine filtering.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseInsensitive</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>column</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>values</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"listconditionoperator\">ListConditionOperator</h2>\n<p> Operator Enum for List Conditions.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AND</td>\n<td></td>\n</tr>\n<tr>\n<td>OR</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"243c7426-34f4-4cc1-808e-a9c327d86dac","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":"d90a91fc-40e3-4468-8a51-50a014cbf7ac","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Acknowledge a task.</p>\n<p>Inputs: \nAcknowledgeTaskInput, </p>\n<p>Return: \nTaskResponse</p>\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":"efa3d80b-fc71-42ae-9b9d-770536b7ef0c","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"d90a91fc-40e3-4468-8a51-50a014cbf7ac"},{"name":"addTaskComment","id":"d17dfff4-cd7a-409b-b5f5-40d395af774f","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Add comment to task</p>\n<p>Inputs: \nTaskCommentInput, </p>\n<p>Return: \nTaskResponse</p>\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":"56fea8a5-f983-4707-87e4-8fdfb0bd7bd3","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"d17dfff4-cd7a-409b-b5f5-40d395af774f"},{"name":"assignTask","id":"3badd2b0-ade2-455c-9712-e65901ddb7e2","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\",\n    \"taskId\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Assign a user to the task</p>\n<p>Inputs: \nAssignTaskInput, </p>\n<p>Return: \nTaskResponse</p>\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":"eda60e98-006f-4d32-a02f-808f4ae26557","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\",\n    \"taskId\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"3badd2b0-ade2-455c-9712-e65901ddb7e2"},{"name":"bulkResolveTasks","id":"bb586a2b-12f7-43bf-ad45-2f0579285b9c","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      \"<ID HERE>\"\n    ]\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Bulk resolve multiple tasks with the same close code and notes</p>\n<p>Inputs: \nBulkResolveTasksInput, </p>\n<p>Return: \nBulkTaskResponse</p>\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":"e6fd8ac1-7487-42ef-a6e0-cec02fa6eb3c","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      \"<ID HERE>\"\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\": \"<ID HERE>\",\n          \"state\": \"CANCELLED\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"bb586a2b-12f7-43bf-ad45-2f0579285b9c"},{"name":"createTask","id":"989b36a2-d7ca-495d-9e8a-be60150acd17","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\",\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":"<p>Create a new task</p>\n<p>Inputs: \nCreateTaskInput, </p>\n<p>Return: \nTaskResponse</p>\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":"9aec3a6a-96db-4948-becf-db5d92d4ef6c","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"989b36a2-d7ca-495d-9e8a-be60150acd17"},{"name":"resolveTask","id":"0cf7b48e-eb0e-478a-84b8-2968c5f5359f","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Resolve a task</p>\n<p>Inputs: \nResolveTaskInput, </p>\n<p>Return: \nTaskResponse</p>\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":"cf08251b-7e93-4904-928f-a3e66e99e92d","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"0cf7b48e-eb0e-478a-84b8-2968c5f5359f"},{"name":"unresolveTask","id":"c5460b7d-7502-4724-bc91-5aa8cabcb1a6","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Unresolve a resolved task</p>\n<p>Inputs: \nUnresolveTaskInput, </p>\n<p>Return: \nTaskResponse</p>\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":"bf9add9b-247a-4e76-a052-e8dc2d7e13ab","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"c5460b7d-7502-4724-bc91-5aa8cabcb1a6"},{"name":"updateTaskRetainedStatus","id":"023ba38a-2413-4c42-b5cb-93de1531cd28","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update Task retained status</p>\n<p>Inputs: \nUpdateTaskRetainedStatusInput, </p>\n<p>Return: \nTaskResponse</p>\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":"1f0df768-021f-42ce-9717-27efe3751570","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"023ba38a-2413-4c42-b5cb-93de1531cd28"},{"name":"updateTaskState","id":"2b9010a6-d86a-4914-8b14-ab0ea38e0886","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update Task State</p>\n<p>Inputs: \nUpdateTaskStateInput, </p>\n<p>Return: \nTaskResponse</p>\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":"2b470242-cd16-429a-9ede-d351ab432cac","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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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\": \"<ID HERE>\"\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-07-01T00:00:00.000Z\"\n        },\n        \"assignee\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"closeCode\": \"CANCELLED\",\n        \"closeNote\": \"\",\n        \"closedAt\": \"2026-07-01T00:00:00.000Z\",\n        \"comments\": {\n          \"totalCount\": 0\n        },\n        \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n        \"createdBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        },\n        \"customer\": {\n          \"active\": true,\n          \"headerSlug\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"name\": \"\",\n          \"residency\": \"\",\n          \"slug\": \"\"\n        },\n        \"description\": \"\",\n        \"externalId\": \"\",\n        \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"updatedBy\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\n          \"serviceNowId\": \"\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"2b9010a6-d86a-4914-8b14-ab0ea38e0886"}],"id":"3110f8de-7a94-4b21-ac29-f63f9f236bda","_postman_id":"3110f8de-7a94-4b21-ac29-f63f9f236bda","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":"8daa92fe-83bb-404a-bb26-9bbaf661ba88","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, $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            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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after4\": \"T18w\",\n  \"filter4\": {\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order5\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter6\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order6\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after7\": \"T18w\",\n  \"filter7\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first7\": 10,\n  \"order7\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after8\": \"T18w\",\n  \"first8\": 10,\n  \"after9\": \"T18w\",\n  \"first9\": 10,\n  \"after10\": \"T18w\",\n  \"filter8\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first10\": 10,\n  \"order8\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after11\": \"T18w\",\n  \"filter9\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first11\": 10,\n  \"order9\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after12\": \"T18w\",\n  \"filter10\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first12\": 10,\n  \"order10\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"by\": {\n    \"externalId\": \"\",\n    \"id\": \"<ID HERE>\",\n    \"slug\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Fetch Task by id, slug OR externalId.</p>\n<p>Inputs: \nTaskBy, </p>\n<p>Return: \nTask</p>\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":"b406dda4-a47b-4002-b04e-daaa086dba30","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, $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            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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after3\": \"T18w\",\n  \"filter3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first3\": 10,\n  \"order3\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after4\": \"T18w\",\n  \"filter4\": {\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first5\": 10,\n  \"order5\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after6\": \"T18w\",\n  \"filter6\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first6\": 10,\n  \"order6\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after7\": \"T18w\",\n  \"filter7\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first7\": 10,\n  \"order7\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"after8\": \"T18w\",\n  \"first8\": 10,\n  \"after9\": \"T18w\",\n  \"first9\": 10,\n  \"after10\": \"T18w\",\n  \"filter8\": {\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first10\": 10,\n  \"order8\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after11\": \"T18w\",\n  \"filter9\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first11\": 10,\n  \"order9\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after12\": \"T18w\",\n  \"filter10\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first12\": 10,\n  \"order10\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"by\": {\n    \"externalId\": \"\",\n    \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n        \"user\": {\n          \"email\": \"\",\n          \"fullName\": \"\",\n          \"id\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      },\n      \"closeCode\": \"CANCELLED\",\n      \"closeNote\": \"\",\n      \"closedAt\": \"2026-07-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-07-01T00:00:00.000Z\",\n      \"createdBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\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        \"headerSlug\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"name\": \"\",\n        \"residency\": \"\",\n        \"slug\": \"\",\n        \"users\": {\n          \"totalCount\": 0\n        }\n      },\n      \"description\": \"\",\n      \"externalId\": \"\",\n      \"id\": \"<ID HERE>\",\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-07-01T00:00:00.000Z\",\n      \"updatedBy\": {\n        \"accessGroups\": {\n          \"totalCount\": 0\n        },\n        \"email\": \"\",\n        \"fullName\": \"\",\n        \"id\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"8daa92fe-83bb-404a-bb26-9bbaf661ba88"},{"name":"tasks","id":"79133654-3c6c-4cdb-a6c6-04cdb027b74d","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      \"<ID HERE>\"\n    ],\n    \"closed\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"notAssignees\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    }\n  },\n  \"taskOrder\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"CLOSED_AT\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>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.</p>\n<p>Inputs: \nString, Int, TaskFilter, TaskOrder, </p>\n<p>Return: \nTaskConnection</p>\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":"e061ecae-5bd3-47f7-888e-566554b95aa7","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      \"<ID HERE>\"\n    ],\n    \"closed\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"created\": {\n      \"earliest\": \"2026-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-01T00:00:00.000Z\"\n    },\n    \"notAssignees\": [\n      \"<ID HERE>\"\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-07-01T00:00:00.000Z\",\n      \"latest\": \"2026-07-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-07-01T00:00:00.000Z\",\n            \"createdAt\": \"2026-07-01T00:00:00.000Z\",\n            \"description\": \"\",\n            \"externalId\": \"\",\n            \"id\": \"<ID HERE>\",\n            \"priority\": \"CRITICAL\",\n            \"retained\": true,\n            \"serviceNowCategory\": \"\",\n            \"serviceNowSubCategory\": \"\",\n            \"slug\": \"\",\n            \"state\": \"CANCELLED\",\n            \"title\": \"\",\n            \"type\": \"DETECT_TUNING\",\n            \"updatedAt\": \"2026-07-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":"79133654-3c6c-4cdb-a6c6-04cdb027b74d"}],"id":"0d6f00e6-2a80-46eb-883b-fe11abaa10b9","_postman_id":"0d6f00e6-2a80-46eb-883b-fe11abaa10b9","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":"5c632673-36bb-4e7c-b30e-e4728cc0933f","description":"<h2 id=\"taskby\">TaskBy</h2>\n<p> Search for a Task by one of the below</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>externalId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>slug</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createtaskinput\">CreateTaskInput</h2>\n<p> Input fields for new task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>initialState</td>\n<td>Create 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.</td>\n<td>TaskState</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td>Extra fields that are specific to task types other than GENERAL. Leave null for GENERAL</td>\n<td>TaskMetadataInput</td>\n</tr>\n<tr>\n<td>priority</td>\n<td></td>\n<td>TaskPriority</td>\n</tr>\n<tr>\n<td>taskType</td>\n<td></td>\n<td>TaskType</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatetaskretainedstatusinput\">UpdateTaskRetainedStatusInput</h2>\n<p> 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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>retained</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>taskId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskmetadatainput\">TaskMetadataInput</h2>\n<p> Extra fields that are specific to a specific type of task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>engineeringMetadata</td>\n<td></td>\n<td>EngineeringTaskMetadataInput</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskmetadatainput\">EngineeringTaskMetadataInput</h2>\n<p> Extra fields that are required for tasks of type ENGINEERING only</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>businessCriticalLogSourceImpact</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>businessCriticalLogSourceImpactReason</td>\n<td>Only needed if businessCriticalLogSourceImpact is true, otherwise leave null</td>\n<td>String</td>\n</tr>\n<tr>\n<td>changeWindowDetails</td>\n<td>Only needed if changeWindowRequired is true, otherwise leave null</td>\n<td>EngineeringTaskChangeWindowDetailsInput</td>\n</tr>\n<tr>\n<td>changeWindowRequired</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>contactDetails</td>\n<td></td>\n<td>EngineeringTaskContactDetailsInput</td>\n</tr>\n<tr>\n<td>engineeringTaskSubType</td>\n<td></td>\n<td>EngineeringTaskSubType</td>\n</tr>\n<tr>\n<td>environmentImpact</td>\n<td></td>\n<td>EngineeringTaskEnvironmentImpact</td>\n</tr>\n<tr>\n<td>errorMessageDetails</td>\n<td>Only needed if errorMessagesObserved is true, otherwise leave null</td>\n<td>String</td>\n</tr>\n<tr>\n<td>errorMessagesObserved</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>issue</td>\n<td></td>\n<td>EngineeringTaskIssueType</td>\n</tr>\n<tr>\n<td>issueStartedAt</td>\n<td></td>\n<td>EngineeringTaskIssueStart</td>\n</tr>\n<tr>\n<td>logSourceIntegrationDetails</td>\n<td></td>\n<td>LogSourceIntegrationDetailsInput</td>\n</tr>\n<tr>\n<td>logSourceNotListed</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>logSources</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>neededForCompliance</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>neededForComplianceDetails</td>\n<td>Only needed if neededForCompliance is true, otherwise leave null</td>\n<td>String</td>\n</tr>\n<tr>\n<td>recentLogSourceChangeDetails</td>\n<td>Only needed if recentLogSourceChanges is true, otherwise leave null</td>\n<td>String</td>\n</tr>\n<tr>\n<td>recentLogSourceChanges</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>requiredMetadata</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>requiredMetadataDetails</td>\n<td>Only needed if requiredMetadata is true, otherwise leave null</td>\n<td>EngineeringTaskRequiredMetadataDetailsInput</td>\n</tr>\n<tr>\n<td>retentionReason</td>\n<td>Only needed if retentionRequirements is true, otherwise leave null</td>\n<td>String</td>\n</tr>\n<tr>\n<td>retentionRequirements</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>supportTimeFrame</td>\n<td></td>\n<td>EngineeringTaskSupportTimeFrame</td>\n</tr>\n<tr>\n<td>troubleShootingDetails</td>\n<td>Only needed if troubleShootingStarted is true, otherwise leave null</td>\n<td>String</td>\n</tr>\n<tr>\n<td>troubleShootingStarted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskcontactdetailsinput\">EngineeringTaskContactDetailsInput</h2>\n<p> Contact details for following up on ENGINEERING type task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"logsourceintegrationdetailsinput\">LogSourceIntegrationDetailsInput</h2>\n<p> Integration details for log source</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>additionalInformation</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostname</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ipAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>serviceAccount</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskchangewindowdetailsinput\">EngineeringTaskChangeWindowDetailsInput</h2>\n<p> Extra details if changeWindowNeeded flag is true</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reason</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>timeRange</td>\n<td></td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskrequiredmetadatadetailsinput\">EngineeringTaskRequiredMetadataDetailsInput</h2>\n<p> Metadata for log source integration</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filename</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hash</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>logSourceName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceIp</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskfilter\">TaskFilter</h2>\n<p> Task Filter input type to filter out Tasks. If not set, defaults will be used.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledged</td>\n<td>Filter out tasks based on acknowledgement  True: Acknowledged tasks Null: Both acknowledged and un-acknowledged tasks False: Un-Acknowledged tasks</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>assignees</td>\n<td>List of assignee IDs to filter</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>closed</td>\n<td>Task closed TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>created</td>\n<td>Task creation TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>notAssignees</td>\n<td>List of assignee IDs to exclude, not include, in the filter</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>priorities</td>\n<td>List of Priority to filter.</td>\n<td>TaskPriority</td>\n</tr>\n<tr>\n<td>search</td>\n<td>Wildcard search string to search from Task's Title/Description/TicketNumber/Summary.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>serviceNowCategories</td>\n<td>List of ServiceNow categories to filter against</td>\n<td>TaskServiceNowCategory</td>\n</tr>\n<tr>\n<td>states</td>\n<td>List of Statuses to filter.</td>\n<td>TaskState</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Task type based filter.</td>\n<td>TaskType</td>\n</tr>\n<tr>\n<td>unassigned</td>\n<td>Filter out tasks based on assignment  True: Tasks which are not assigned to any user False: Tasks which are assigned to user</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>Task updated TimeRange filter (Earliest and latest TimeStamp)</td>\n<td>TimeRange</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskorder\">TaskOrder</h2>\n<p> Task OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>TaskOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"assigntaskinput\">AssignTaskInput</h2>\n<p> Input fields for updating the Task's assignee. Pass null for assigneeId to unassign the Task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assigneeId</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>taskId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"acknowledgetaskinput\">AcknowledgeTaskInput</h2>\n<p> Input type for acknowledging a task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>actionMethod</td>\n<td>The method used to acknowledge the task.</td>\n<td>TaskActionMethod</td>\n</tr>\n<tr>\n<td>taskId</td>\n<td>The unique identifier of the task.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcommentinput\">TaskCommentInput</h2>\n<p> Input to create an TaskComment.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>taskId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatetaskstateinput\">UpdateTaskStateInput</h2>\n<p> Input to update the TaskState</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newState</td>\n<td></td>\n<td>TaskState</td>\n</tr>\n<tr>\n<td>taskId</td>\n<td></td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskresponse\">TaskResponse</h2>\n<p> The TaskResponse type is used to return the result of an task related operation.</p>\n<p>Fields:</p>\n<ul>\n<li>success: Indicates whether the operation was successful.</li>\n<li>task: Provides details of the task (optional, might be null if no task is associated).<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Indicates whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>task</td>\n<td>Provides details of the task (optional, might be null if no task is associated).</td>\n<td>Task</td>\n</tr>\n</tbody>\n</table>\n</div></li>\n</ul>\n<h2 id=\"taskconnection\">TaskConnection</h2>\n<p> Task Connection schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>TaskEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskedge\">TaskEdge</h2>\n<p> Task Edge schema.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Task</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tasktype\">TaskType</h2>\n<p> Type of task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DETECT_TUNING</td>\n<td>DETECT_TUNING is automatically created by GreyMatter. This type cannot be created via the API.</td>\n</tr>\n<tr>\n<td>ENGINEERING</td>\n<td></td>\n</tr>\n<tr>\n<td>GENERAL</td>\n<td></td>\n</tr>\n<tr>\n<td>TEAMMATE</td>\n<td>TEAMMATE is automatically created by GreyMatter. This type cannot be created via the API.</td>\n</tr>\n<tr>\n<td>TEAMMATE_ACTION</td>\n<td>TEAMMATE_ACTION is automatically created by GreyMatter. This type cannot be created via the API.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskpriority\">TaskPriority</h2>\n<p> Priority of task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CRITICAL</td>\n<td></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td></td>\n</tr>\n<tr>\n<td>INFORMATIONAL</td>\n<td></td>\n</tr>\n<tr>\n<td>LOW</td>\n<td></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskacknowledgement\">TaskAcknowledgement</h2>\n<p> Represents an acknowledgement of an task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>actionMethod</td>\n<td>The method used to acknowledge the task.</td>\n<td>TaskActionMethod</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>The timestamp when the task was acknowledged (optional).</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>user</td>\n<td>The user who acknowledged the task (optional).</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"task\">Task</h2>\n<p> Task schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>acknowledgement</td>\n<td></td>\n<td>TaskAcknowledgement</td>\n</tr>\n<tr>\n<td>activity</td>\n<td></td>\n<td>TaskActivityLogConnection</td>\n</tr>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>closeCode</td>\n<td></td>\n<td>TaskCloseCode</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>closedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>comments</td>\n<td></td>\n<td>TaskCommentConnection</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td></td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>externalId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td></td>\n<td>TaskMetadata</td>\n</tr>\n<tr>\n<td>priority</td>\n<td></td>\n<td>TaskPriority</td>\n</tr>\n<tr>\n<td>retained</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>serviceNowCategory</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>serviceNowSubCategory</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>slug</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>TaskState</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>TaskType</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactivitylogfilter\">TaskActivityLogFilter</h2>\n<p> Task activity log filter input type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Activity log creation time range (Optional)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Activity log type to be filtered. (Required) Will be set to default if not explicitly passed.</td>\n<td>TaskActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactivitylogtype\">TaskActivityLogType</h2>\n<p> Task Activity Log Types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactivitylogorder\">TaskActivityLogOrder</h2>\n<p> Task Activity Log OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderByList</td>\n<td></td>\n<td>TaskActivityLogOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactivitylogorderby\">TaskActivityLogOrderBy</h2>\n<p> Order by ENUM for Task Activity Log</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_BY</td>\n<td></td>\n</tr>\n<tr>\n<td>TYPE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactivitylogentry\">TaskActivityLogEntry</h2>\n<p> Represents the Task Activity Log Entry schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Who performed the action</td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Which customer owns the task that was created/updated/etc.</td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>task</td>\n<td>The task this activity log refers to</td>\n<td>Task</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of action performed</td>\n<td>TaskActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskservicenowcategory\">TaskServiceNowCategory</h2>\n<p> List of ServiceNow categories we can filter Tasks by.\n Selecting OTHER will include all categories not specified\nspecifically in the enum.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONTENT</td>\n<td></td>\n</tr>\n<tr>\n<td>CUSTOMER_REQUEST</td>\n<td></td>\n</tr>\n<tr>\n<td>DETECTION</td>\n<td></td>\n</tr>\n<tr>\n<td>ENGINEERING</td>\n<td></td>\n</tr>\n<tr>\n<td>IMPLEMENTATION</td>\n<td></td>\n</tr>\n<tr>\n<td>INQUIRY_HELP</td>\n<td></td>\n</tr>\n<tr>\n<td>INVESTIGATION</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>PLATFORM_HEALTH</td>\n<td></td>\n</tr>\n<tr>\n<td>PRODUCT_ADMINISTRATION</td>\n<td></td>\n</tr>\n<tr>\n<td>VISIBILITY</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createdtaskactivitylogentry\">CreatedTaskActivityLogEntry</h2>\n<p> Activity log entry for newly created task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Who performed the action</td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Which customer owns the task that was created/updated/etc.</td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>task</td>\n<td>The task this activity log refers to</td>\n<td>Task</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of action performed</td>\n<td>TaskActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatedtaskactivitylogentry\">UpdatedTaskActivityLogEntry</h2>\n<p> Activity log entry for updated task. Unchanged fields will have null for both old and new</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td></td>\n<td>UserChanged</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>closedAt</td>\n<td></td>\n<td>DateTimeChanged</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Who performed the action</td>\n<td>User</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Which customer owns the task that was created/updated/etc.</td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>description</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td></td>\n<td>TaskMetadataChanged</td>\n</tr>\n<tr>\n<td>priority</td>\n<td></td>\n<td>TaskPriorityChanged</td>\n</tr>\n<tr>\n<td>serviceNowCategory</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>serviceNowSubCategory</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>state</td>\n<td></td>\n<td>TaskStateChanged</td>\n</tr>\n<tr>\n<td>task</td>\n<td>The task this activity log refers to</td>\n<td>Task</td>\n</tr>\n<tr>\n<td>taskType</td>\n<td></td>\n<td>TaskTypeChanged</td>\n</tr>\n<tr>\n<td>title</td>\n<td></td>\n<td>StringChanged</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of action performed</td>\n<td>TaskActivityLogType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskmetadatachanged\">TaskMetadataChanged</h2>\n<p> Represents a change in task metadata</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>TaskMetadata</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>TaskMetadata</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskprioritychanged\">TaskPriorityChanged</h2>\n<p> Represents a change in task priority</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>TaskPriority</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>TaskPriority</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tasktypechanged\">TaskTypeChanged</h2>\n<p> Represents a change in task type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>TaskType</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>TaskType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskstatechanged\">TaskStateChanged</h2>\n<p> Represents a change in task state</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>TaskState</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>TaskState</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactivitylogedge\">TaskActivityLogEdge</h2>\n<p> TaskActivityLog Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>TaskActivityLogEntry</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactivitylogconnection\">TaskActivityLogConnection</h2>\n<p> Task Activity Log Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>TaskActivityLogEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcommentfilter\">TaskCommentFilter</h2>\n<p> Task comment filter input type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created</td>\n<td>Time range for comment creation (optional)</td>\n<td>TimeRange</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Comment type to be filtered. (Required) Will be set to default if not explicitly passed.</td>\n<td>TaskCommentType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"resolvetaskinput\">ResolveTaskInput</h2>\n<p> Represents resolve task input</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>closeCode</td>\n<td>Close code to be used for resolving this task. (Required)</td>\n<td>TaskCloseCode</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td>Reason/Notes for resolving the task. (Required)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>taskId</td>\n<td>Task id to resolve. (Required)</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"unresolvetaskinput\">UnresolveTaskInput</h2>\n<p> Represents unresolve task input</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>taskId</td>\n<td>Task id to unresolve. (Required)</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcommenttype\">TaskCommentType</h2>\n<p> Task Comment Types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PUBLIC</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcommentorder\">TaskCommentOrder</h2>\n<p> Task Comments OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>TaskCommentOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcommentorderby\">TaskCommentOrderBy</h2>\n<p> Order by ENUM for task Comments</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcommentconnection\">TaskCommentConnection</h2>\n<p> Task Comment Connection schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>TaskCommentEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcommentedge\">TaskCommentEdge</h2>\n<p> TaskComment Edge schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>TaskComment</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskcomment\">TaskComment</h2>\n<p> Represents the Task Comment schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>id</td>\n<td></td>\n<td>ID</td>\n</tr>\n<tr>\n<td>text</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>TaskCommentType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskmetadata\">EngineeringTaskMetadata</h2>\n<p> Fields that are specific to tasks of type ENGINEERING</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>businessCriticalLogSourceImpact</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>businessCriticalLogSourceImpactReason</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>changeWindowDetails</td>\n<td></td>\n<td>EngineeringTaskChangeWindowDetails</td>\n</tr>\n<tr>\n<td>changeWindowRequired</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>contactDetails</td>\n<td></td>\n<td>EngineeringTaskContactDetails</td>\n</tr>\n<tr>\n<td>engineeringTaskSubType</td>\n<td></td>\n<td>EngineeringTaskSubType</td>\n</tr>\n<tr>\n<td>environmentImpact</td>\n<td></td>\n<td>EngineeringTaskEnvironmentImpact</td>\n</tr>\n<tr>\n<td>errorMessagesObserved</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>issue</td>\n<td></td>\n<td>EngineeringTaskIssueType</td>\n</tr>\n<tr>\n<td>issueStartedAt</td>\n<td></td>\n<td>EngineeringTaskIssueStart</td>\n</tr>\n<tr>\n<td>logSourceIntegrationDetails</td>\n<td></td>\n<td>LogSourceIntegrationDetails</td>\n</tr>\n<tr>\n<td>logSourceNotListed</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>logSources</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>neededForCompliance</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>neededForComplianceDetails</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>recentLogSourceChangeDetails</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>recentLogSourceChanges</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>requiredMetadata</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>requiredMetadataDetails</td>\n<td></td>\n<td>EngineeringTaskRequiredMetadataDetails</td>\n</tr>\n<tr>\n<td>retentionReason</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>retentionRequirements</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>supportTimeFrame</td>\n<td></td>\n<td>EngineeringTaskSupportTimeFrame</td>\n</tr>\n<tr>\n<td>troubleShootingDetails</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>troubleShootingStarted</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtasksubtype\">EngineeringTaskSubType</h2>\n<p> Sub type for engineering task type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LOG_SOURCE_MODIFICATION</td>\n<td></td>\n</tr>\n<tr>\n<td>LOG_SOURCE_ONBOARDING_INTEGRATION</td>\n<td></td>\n</tr>\n<tr>\n<td>LOG_SOURCE_TROUBLESHOOTING</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>PARSING_REQUEST</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskissuetype\">EngineeringTaskIssueType</h2>\n<p> Sub type for log_source_troubleshooting issue</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>INCORRECT_INGESTION</td>\n<td></td>\n</tr>\n<tr>\n<td>LOG_VOLUME_DISCREPANCY</td>\n<td></td>\n</tr>\n<tr>\n<td>OTHER</td>\n<td></td>\n</tr>\n<tr>\n<td>SILENT_LOG_SOURCE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskenvironmentimpact\">EngineeringTaskEnvironmentImpact</h2>\n<p> Percentage of log type types affected by log source issues</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BETWEEN_25_50_PCT</td>\n<td></td>\n</tr>\n<tr>\n<td>LESS_THAN_25_PCT</td>\n<td></td>\n</tr>\n<tr>\n<td>MORE_THAN_50_PCT</td>\n<td></td>\n</tr>\n<tr>\n<td>SINGLE_LOG_SOURCE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtasksupporttimeframe\">EngineeringTaskSupportTimeFrame</h2>\n<p> Tasked support timeframe on engineering task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ASAP</td>\n<td></td>\n</tr>\n<tr>\n<td>SEVEN_DAYS</td>\n<td></td>\n</tr>\n<tr>\n<td>THIRTY_DAYS</td>\n<td></td>\n</tr>\n<tr>\n<td>THREE_DAYS</td>\n<td></td>\n</tr>\n<tr>\n<td>WHENEVER</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskissuestart\">EngineeringTaskIssueStart</h2>\n<p> When did issue start in the case of troubleshooting</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LAST_24_HOURS</td>\n<td></td>\n</tr>\n<tr>\n<td>LAST_8_HOURS</td>\n<td></td>\n</tr>\n<tr>\n<td>LAST_FEW_DAYS</td>\n<td></td>\n</tr>\n<tr>\n<td>LAST_HOUR</td>\n<td></td>\n</tr>\n<tr>\n<td>ONGOING</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskstate\">TaskState</h2>\n<p> Status of task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CANCELLED</td>\n<td></td>\n</tr>\n<tr>\n<td>CLOSED</td>\n<td></td>\n</tr>\n<tr>\n<td>IN_PROGRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>NEW</td>\n<td></td>\n</tr>\n<tr>\n<td>ON_HOLD</td>\n<td></td>\n</tr>\n<tr>\n<td>PENDING_CUSTOMER</td>\n<td></td>\n</tr>\n<tr>\n<td>PENDING_RQ</td>\n<td></td>\n</tr>\n<tr>\n<td>PENDING_VENDOR</td>\n<td></td>\n</tr>\n<tr>\n<td>RESOLVED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskorderby\">TaskOrderBy</h2>\n<p> Order by ENUM for Task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CLOSED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>PRIORITY</td>\n<td></td>\n</tr>\n<tr>\n<td>STATE</td>\n<td></td>\n</tr>\n<tr>\n<td>TASK_TYPE</td>\n<td></td>\n</tr>\n<tr>\n<td>TITLE</td>\n<td></td>\n</tr>\n<tr>\n<td>UPDATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>UUID</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskactionmethod\">TaskActionMethod</h2>\n<p> Enum for the methods used to acknowledge a task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACTION_TOKEN</td>\n<td>Acknowledged via a notification link</td>\n</tr>\n<tr>\n<td>API</td>\n<td>Acknowledged via the API</td>\n</tr>\n<tr>\n<td>MOBILE_APP</td>\n<td>Acknowledged through the mobile application.</td>\n</tr>\n<tr>\n<td>SNOW</td>\n<td>Acknowledged through the ServiceNow (SNOW) platform.</td>\n</tr>\n<tr>\n<td>WEB_UI</td>\n<td>Acknowledged through the GreyMatter web platform.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"taskclosecode\">TaskCloseCode</h2>\n<p> Represents task close code</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CANCELLED</td>\n<td></td>\n</tr>\n<tr>\n<td>DUPLICATE</td>\n<td></td>\n</tr>\n<tr>\n<td>RESOLVED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskcontactdetails\">EngineeringTaskContactDetails</h2>\n<p> Customer Contact details for engineering task</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"logsourceintegrationdetails\">LogSourceIntegrationDetails</h2>\n<p> Details for log source integration request</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>additionalInformation</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hostname</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>ipAddress</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>serviceAccount</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskchangewindowdetails\">EngineeringTaskChangeWindowDetails</h2>\n<p> Change window details if change window required</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>endDateTime</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>reason</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"engineeringtaskrequiredmetadatadetails\">EngineeringTaskRequiredMetadataDetails</h2>\n<p> Metadata details if metadata rquired for log source troubleshooting</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filename</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hash</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>logSourceName</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>sourceIp</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"bulkresolvetasksinput\">BulkResolveTasksInput</h2>\n<p> Input for bulk resolving tasks with the same close code and notes</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>closeCode</td>\n<td>The close code to apply to all tasks. (Required)</td>\n<td>TaskCloseCode</td>\n</tr>\n<tr>\n<td>closeNote</td>\n<td>The close note to apply to all tasks. (Required)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>taskIds</td>\n<td>IDs of the tasks to resolve. Maximum 100 IDs per request. (Required)</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"bulktaskresponse\">BulkTaskResponse</h2>\n<p> Response for bulk task mutations. Contains the updated tasks.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Whether the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>tasks</td>\n<td>The updated tasks.</td>\n<td>Task</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5c632673-36bb-4e7c-b30e-e4728cc0933f","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":"451aeb54-1884-4edb-ab00-37aaa259bbf5","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"email\": \"\",\n    \"fullName\": \"\",\n    \"hasAccessUntil\": \"2026-07-01T00:00:00.000Z\",\n    \"jobTitle\": \"\",\n    \"type\": \"API\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Create a new user.</p>\n<p>Inputs: \nCreateUserInput, </p>\n<p>Return: \nUserOperationResponse</p>\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":"41b31257-036c-4f3d-97d5-dcce5fdc67f8","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"email\": \"\",\n    \"fullName\": \"\",\n    \"hasAccessUntil\": \"2026-07-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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"451aeb54-1884-4edb-ab00-37aaa259bbf5"},{"name":"deleteUser","id":"f4b1a40a-cf26-476f-8b13-3fa278a56aa0","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteUser ($user: ID!) {\n    deleteUser (user: $user) {\n        success\n    }\n}","variables":"{\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Delete an existing user.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nDeleteUserResponse</p>\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":"a92bdbb8-c6a4-475c-994a-7ad5ad73002c","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\": \"<ID HERE>\"\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":"f4b1a40a-cf26-476f-8b13-3fa278a56aa0"},{"name":"disableUser","id":"6f46ad97-2084-4530-b9a5-fc84de8ced88","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Disable an existing user.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nUserOperationResponse</p>\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":"ae2cbfb1-219d-4ec3-9d13-ac567fe56989","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"6f46ad97-2084-4530-b9a5-fc84de8ced88"},{"name":"enableUser","id":"d07331a9-5288-4147-8647-e19f982877db","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Enable an existing user.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nUserOperationResponse</p>\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":"4ff40d5b-6fa4-4ac7-81e6-50ec5cf8bc7d","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"d07331a9-5288-4147-8647-e19f982877db"},{"name":"generatePasswordLink","id":"b046e1a4-fafc-457c-9938-7e9b1cedcd8a","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Generate a change password link for an existing user.\nThese do nothing if the customer is SSO enabled.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nGeneratePasswordLinkResponse</p>\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":"b3c2355b-e7f1-42e1-b3b8-9b3eaf7d29ca","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"b046e1a4-fafc-457c-9938-7e9b1cedcd8a"},{"name":"resendInvite","id":"a9262e4c-eee3-4c3b-a9d4-47bf1ac936c1","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Resend invitation for an existing user.\nThese do nothing if the customer is SSO enabled.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nUserOperationResponse</p>\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":"1b82d496-b126-450c-b6e3-dadc8bda5134","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"a9262e4c-eee3-4c3b-a9d4-47bf1ac936c1"},{"name":"resetMfa","id":"450ec4e7-6ab0-4760-a888-dd60c2fca741","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Reset MFA (Multi-Factor Authentication) for an existing user.\nThese do nothing if the customer is SSO enabled.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nUserOperationResponse</p>\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":"8c9d307d-c4d4-47f2-9ce6-de40778120d1","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"450ec4e7-6ab0-4760-a888-dd60c2fca741"},{"name":"sendForgotPassword","id":"89581a97-8d38-4aaa-b478-8f3ecb2477a0","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Send a forgot password email for an existing user.\nThese do nothing if the customer is SSO enabled.</p>\n<p>Inputs: \nID, </p>\n<p>Return: \nUserOperationResponse</p>\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":"af9ffcc3-0a20-44d3-b3bd-6331978558b3","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"user\": \"<ID HERE>\"\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"89581a97-8d38-4aaa-b478-8f3ecb2477a0"},{"name":"updateUser","id":"8f097c1f-dfde-4d7d-ab98-22268e051358","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessGroups\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"email\": \"\",\n    \"fullName\": \"\",\n    \"hasAccessUntil\": \"2026-07-01T00:00:00.000Z\",\n    \"id\": \"<ID HERE>\",\n    \"jobTitle\": \"\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Update an existing user.</p>\n<p>Inputs: \nUpdateUserInput, </p>\n<p>Return: \nUserOperationResponse</p>\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":"4804d0a8-950f-4ee8-9350-de2132885421","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"input\": {\n    \"accessGroups\": {\n      \"add\": [\n        \"<ID HERE>\"\n      ],\n      \"addAll\": true,\n      \"remove\": [\n        \"<ID HERE>\"\n      ],\n      \"removeAll\": true,\n      \"replace\": [\n        \"<ID HERE>\"\n      ]\n    },\n    \"email\": \"\",\n    \"fullName\": \"\",\n    \"hasAccessUntil\": \"2026-07-01T00:00:00.000Z\",\n    \"id\": \"<ID HERE>\",\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\": \"<ID HERE>\",\n        \"pods\": {\n          \"totalCount\": 0\n        },\n        \"roles\": {\n          \"totalCount\": 0\n        },\n        \"serviceNowId\": \"\"\n      }\n    }\n  }\n}"}],"_postman_id":"8f097c1f-dfde-4d7d-ab98-22268e051358"}],"id":"0fed61d9-c9a8-4380-a0d1-0652080c9204","_postman_id":"0fed61d9-c9a8-4380-a0d1-0652080c9204","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":"0f0a0cfa-1e25-4943-b4b1-7dc7ecfa621a","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  }\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Query to fetch the authenticated user's information</p>\n<p>Return: \nCurrentUser</p>\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":"eb3eeccb-2f39-4b15-a050-803e0b8c374d","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\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\": \"<ID HERE>\",\n      \"serviceNowId\": \"\"\n    }\n  }\n}"}],"_postman_id":"0f0a0cfa-1e25-4943-b4b1-7dc7ecfa621a"},{"name":"user","id":"552f3f71-9c2a-40ef-b4a3-8580ebd2f0df","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nID, </p>\n<p>Return: \nUser</p>\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":"7f0c9cf6-8d03-4fff-9058-7d542d462a43","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      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first\": 10,\n  \"order\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after1\": \"T18w\",\n  \"filter1\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"roles\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first1\": 10,\n  \"order1\": {\n    \"direction\": \"ASC\",\n    \"orderBy\": \"NAME\"\n  },\n  \"after2\": \"T18w\",\n  \"filter2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"first2\": 10,\n  \"order2\": {\n    \"accessGroups\": [\n      \"<ID HERE>\"\n    ],\n    \"customers\": [\n      \"<ID HERE>\"\n    ],\n    \"ids\": [\n      \"<ID HERE>\"\n    ],\n    \"name\": \"\",\n    \"pods\": [\n      \"<ID HERE>\"\n    ],\n    \"users\": [\n      \"<ID HERE>\"\n    ]\n  },\n  \"id\": \"<ID HERE>\"\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\": \"<ID HERE>\",\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":"552f3f71-9c2a-40ef-b4a3-8580ebd2f0df"}],"id":"3c59c9c4-8ee2-49c8-a04d-ab992094043f","_postman_id":"3c59c9c4-8ee2-49c8-a04d-ab992094043f","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":"ccc66dba-ad22-46de-80bf-4f31887dc346","description":"<h2 id=\"baseuser\">BaseUser</h2>\n<p> BaseUser defines the common fields shared across all user-related types.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Query the access groups associated with this user</td>\n<td>AccessGroupConnection</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The email address for this user, if there is one</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>The full name for this user</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>The ID for this user</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Query the pods which are indirectly associated with this user via an access group</td>\n<td>PodConnection</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Find the pods associated with access groups associated with the user</td>\n<td>RoleConnection</td>\n</tr>\n<tr>\n<td>serviceNowId</td>\n<td>The ServiceNow ID for this user</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userconnection\">UserConnection</h2>\n<p> Represents Pageable User Connection type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>UserEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"useredge\">UserEdge</h2>\n<p> Represents User edge to be used in Connection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"user\">User</h2>\n<p> Representation of a GreyMatter user account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Query the access groups associated with this user</td>\n<td>AccessGroupConnection</td>\n</tr>\n<tr>\n<td>email</td>\n<td>User's email address.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>User's full name.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique identifier for the user.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Query the pods which are indirectly associated with this user via an access group</td>\n<td>PodConnection</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Find the pods associated with access groups associated with the user</td>\n<td>RoleConnection</td>\n</tr>\n<tr>\n<td>serviceNowId</td>\n<td>User's ServiceNow system identifier.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"currentuser\">CurrentUser</h2>\n<p> Representation of a current authenticated greyMatter user.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Query the access groups associated with this user</td>\n<td>AccessGroupConnection</td>\n</tr>\n<tr>\n<td>customers</td>\n<td>All customers associated with the user.</td>\n<td>CustomerConnection</td>\n</tr>\n<tr>\n<td>email</td>\n<td>User's email address.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>User's full name.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique identifier for the user.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>User's job title.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Query the pods which are indirectly associated with this user via an access group</td>\n<td>PodConnection</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Find the pods associated with access groups associated with the user</td>\n<td>RoleConnection</td>\n</tr>\n<tr>\n<td>serviceNowId</td>\n<td>User's ServiceNow system identifier.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userorderby\">UserOrderBy</h2>\n<p> OrderBy ENUM for Users</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NAME</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userorder\">UserOrder</h2>\n<p> Orders Users</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>UserOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userstatus\">UserStatus</h2>\n<p> Status ENUM for Users</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACTIVE</td>\n<td></td>\n</tr>\n<tr>\n<td>DISABLED</td>\n<td></td>\n</tr>\n<tr>\n<td>EXPIRED</td>\n<td></td>\n</tr>\n<tr>\n<td>INVITED</td>\n<td></td>\n</tr>\n<tr>\n<td>LOCKED</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userfilter\">UserFilter</h2>\n<p> Filters Users</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Filter by the access groups associated with the users</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>customers</td>\n<td>Filter by the customers associated with pods that are associated with access groups that are associated with the users</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>Filter by the ids of the users</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Filter by the name of the user</td>\n<td>String</td>\n</tr>\n<tr>\n<td>pods</td>\n<td>Filter by the pods associated with access groups associated with the users</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>Filter by the roles associated with access groups associated with the users</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Filter by the user active status</td>\n<td>UserStatus</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"usertype\">UserType</h2>\n<p> User type ENUM for Users</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>API</td>\n<td></td>\n</tr>\n<tr>\n<td>STANDARD</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"createuserinput\">CreateUserInput</h2>\n<p> Input type for creating a new User.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>Email address of the user. Ignored when User type is API.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>Full name of the user.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>hasAccessUntil</td>\n<td>When present, user is deleted after this datetime.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>Job title of the user. Ignored when User type is API.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>User type, standard or api</td>\n<td>UserType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateuserinput\">UpdateUserInput</h2>\n<p> Input type for updating an existing User.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessGroups</td>\n<td>Updates to the access groups of the user</td>\n<td>UpdateAssociationInput</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Email address of the user. Ignored when User type is API.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>Full name of the user.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>hasAccessUntil</td>\n<td>When present, user is deleted after this datetime.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>id</td>\n<td>ID of the user</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>Job title of the user. Ignored when User type is API.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"deleteuserresponse\">DeleteUserResponse</h2>\n<p> Response type for deleting a User</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Indicates if the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"useroperationresponse\">UserOperationResponse</h2>\n<p> Response type for operations related to a User.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>Indicates if the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>user</td>\n<td>The user on which the operation was performed on.</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"generatepasswordlinkresponse\">GeneratePasswordLinkResponse</h2>\n<p> Response type for generating a password link for a User</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>link</td>\n<td>The generated password link for a user.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>success</td>\n<td>Indicates if the operation was successful.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>user</td>\n<td>The user for whom the password link was generated.</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ccc66dba-ad22-46de-80bf-4f31887dc346","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":"b061d9ab-fe7f-4ac4-bf2b-3681d583d21d","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":"<p>Retrieves user action audits</p>\n<p>Inputs: \nString, AuditActionFilter, Int, AuditActionOrder, </p>\n<p>Return: \nAuditActionDetailsConnection</p>\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":"4381e0a7-11b5-4104-ace6-a362c34e478a","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-07-01T00:00:00.000Z\",\n            \"id\": \"<ID HERE>\",\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":"b061d9ab-fe7f-4ac4-bf2b-3681d583d21d"}],"id":"ca9e42af-eb7a-42cd-914b-f3ad7f2b3f05","_postman_id":"ca9e42af-eb7a-42cd-914b-f3ad7f2b3f05","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":"c15eb20c-3a23-4d25-a0de-1c4668eb071c","description":"<h2 id=\"auditactiondetails\">AuditActionDetails</h2>\n<p> Represents Audit action details schema</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>actionType</td>\n<td>Action type of audit (CREATE, UPDATE, DELETE, ADD_ROLE, REMOVE_ROLE)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>asset</td>\n<td>Asset details</td>\n<td>AuditAsset</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>Audit event creation timestamp</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Customer details for which this action is performed</td>\n<td>Customer</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Audit action identifier.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>objectId</td>\n<td>Audit object identifier</td>\n<td>String</td>\n</tr>\n<tr>\n<td>objectName</td>\n<td>Entity name</td>\n<td>String</td>\n</tr>\n<tr>\n<td>objectType</td>\n<td>Audit object type</td>\n<td>String</td>\n</tr>\n<tr>\n<td>user</td>\n<td>Action performing user details</td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"auditasset\">AuditAsset</h2>\n<p> Audit asset details</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Asset Name</td>\n<td>String</td>\n</tr>\n<tr>\n<td>newValue</td>\n<td>New asset value</td>\n<td>String</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td>Old asset value</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"auditactiondetailsedge\">AuditActionDetailsEdge</h2>\n<p> Represents Edge schema for Audit Details connection</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>AuditActionDetails</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"auditactiondetailsconnection\">AuditActionDetailsConnection</h2>\n<p> Represents connection schema for Audit Details</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>AuditActionDetailsEdge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"auditactionfilter\">AuditActionFilter</h2>\n<p> Input for filtering audit actions</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>objectId</td>\n<td>Entity Id for which audits needs to be filtered</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"auditactionorderby\">AuditActionOrderBy</h2>\n<p> Order by ENUM for Audit Actions.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACTION_TYPE</td>\n<td></td>\n</tr>\n<tr>\n<td>ASSET</td>\n<td></td>\n</tr>\n<tr>\n<td>CREATED_AT</td>\n<td></td>\n</tr>\n<tr>\n<td>ENTITY_TYPE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"auditactionorder\">AuditActionOrder</h2>\n<p> Audit Actions OrderBy criteria. If not set, defaults will be used.\nDefaults: orderBy = CREATED_AT, direction = DESC</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td></td>\n<td>Sort</td>\n</tr>\n<tr>\n<td>orderBy</td>\n<td></td>\n<td>AuditActionOrderBy</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c15eb20c-3a23-4d25-a0de-1c4668eb071c","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":"16158883-ec49-4ab9-9df6-60ce24ba2b70","request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query node ($id: ID!) {\n    node (id: $id) {\n        id\n    }\n}","variables":"{\n  \"id\": \"<ID HERE>\"\n}"}},"url":"https://greymatter.myreliaquest.com/graphql","description":"<p>Inputs: \nID, </p>\n<p>Return: \nNode</p>\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":"0903f0c6-7fde-4f97-be6b-f4b766ef1902","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\": \"<ID HERE>\"\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\": \"<ID HERE>\"\n    }\n  }\n}"}],"_postman_id":"16158883-ec49-4ab9-9df6-60ce24ba2b70"},{"name":"rateLimit","id":"71263ea6-6feb-492e-956a-d10e9acfdd7b","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":"<p>Return: \nCostEstimationResponse</p>\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":"2685ae79-5ecd-4a87-a203-f8145ad2187a","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":"71263ea6-6feb-492e-956a-d10e9acfdd7b"}],"id":"d4338016-2244-40b1-8b40-8a9547c57243","_postman_id":"d4338016-2244-40b1-8b40-8a9547c57243","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":"4c48628c-c002-4f61-84df-f6469df7019b","description":"<h2 id=\"sort\">Sort</h2>\n<p> Sort direction.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ASC</td>\n<td></td>\n</tr>\n<tr>\n<td>DESC</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"edge\">Edge</h2>\n<p> Represents structure of an Edge type in Connection.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>node</td>\n<td></td>\n<td>Node</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"pageinfo\">PageInfo</h2>\n<p> PageInfo type which should be included in Connections.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>endCursor</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>hasNextPage</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>hasPreviousPage</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>startCursor</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"connection\">Connection</h2>\n<p> Represents Connection type structure.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>edges</td>\n<td></td>\n<td>Edge</td>\n</tr>\n<tr>\n<td>pageInfo</td>\n<td></td>\n<td>PageInfo</td>\n</tr>\n<tr>\n<td>totalCount</td>\n<td></td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p> Represents a response to an operation that needs to know if it was successful or not.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td></td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"timerange\">TimeRange</h2>\n<p> Input type to specify time range of earliest and latest timestamp</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>earliest</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>latest</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"temporalunit\">TemporalUnit</h2>\n<p> Schema representing time temporal units</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DAYS</td>\n<td></td>\n</tr>\n<tr>\n<td>HOURS</td>\n<td></td>\n</tr>\n<tr>\n<td>MINUTES</td>\n<td></td>\n</tr>\n<tr>\n<td>MONTHS</td>\n<td></td>\n</tr>\n<tr>\n<td>SECONDS</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"fieldtype\">FieldType</h2>\n<p> Represents different types of fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BOOLEAN</td>\n<td></td>\n</tr>\n<tr>\n<td>DATE</td>\n<td></td>\n</tr>\n<tr>\n<td>DATETIME</td>\n<td></td>\n</tr>\n<tr>\n<td>DOUBLE</td>\n<td></td>\n</tr>\n<tr>\n<td>INTEGER</td>\n<td></td>\n</tr>\n<tr>\n<td>IP_ADDRESS</td>\n<td></td>\n</tr>\n<tr>\n<td>STRING</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updatestringassociationinput\">UpdateStringAssociationInput</h2>\n<p> Updates associations between a type and string values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>add</td>\n<td>Only adds the specified associations.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>addAll</td>\n<td>Adds all available associations.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>remove</td>\n<td>Only removes the specified associations.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>removeAll</td>\n<td>Removes all existing associations.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>replace</td>\n<td>Replaces all the associations with this set</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"updateassociationinput\">UpdateAssociationInput</h2>\n<p> Updates associations between types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>add</td>\n<td>Only adds the specified associations.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>addAll</td>\n<td>Adds all available associations.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>remove</td>\n<td>Only removes the specified associations.</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>removeAll</td>\n<td>Removes all existing associations.</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>replace</td>\n<td>Replaces all the associations with this set.</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"costestimationresponse\">CostEstimationResponse</h2>\n<p> Response type for query cost estimation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cost</td>\n<td>Estimated cost for the query.</td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"aggregationtype\">AggregationType</h2>\n<p> Allowed Aggregation operations for UQLI</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ARRAY_AGG</td>\n<td></td>\n</tr>\n<tr>\n<td>AVERAGE</td>\n<td></td>\n</tr>\n<tr>\n<td>BUCKET</td>\n<td></td>\n</tr>\n<tr>\n<td>COUNT</td>\n<td></td>\n</tr>\n<tr>\n<td>DISTINCT_COUNT</td>\n<td></td>\n</tr>\n<tr>\n<td>HISTOGRAM</td>\n<td></td>\n</tr>\n<tr>\n<td>MAX</td>\n<td></td>\n</tr>\n<tr>\n<td>MIN</td>\n<td></td>\n</tr>\n<tr>\n<td>NONE</td>\n<td></td>\n</tr>\n<tr>\n<td>PERCENTILE</td>\n<td></td>\n</tr>\n<tr>\n<td>STDDEV</td>\n<td></td>\n</tr>\n<tr>\n<td>SUM</td>\n<td></td>\n</tr>\n<tr>\n<td>VARIANCE</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"uqlifield\">UqliField</h2>\n<p> Field specification with optional aggregation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aggregation</td>\n<td>Optional aggregation to apply to this field</td>\n<td>UqliFieldAggregation</td>\n</tr>\n<tr>\n<td>field</td>\n<td>The source field name</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"uqlifieldaggregation\">UqliFieldAggregation</h2>\n<p> Aggregation configuration for a field</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alias</td>\n<td>Alias for the aggregated field in the response</td>\n<td>String</td>\n</tr>\n<tr>\n<td>arguments</td>\n<td>Additional arguments for the aggregation function</td>\n<td>String</td>\n</tr>\n<tr>\n<td>distinct</td>\n<td>Whether to apply distinct to the aggregation</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Type of aggregation to apply</td>\n<td>AggregationType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userchanged\">UserChanged</h2>\n<p> Represents a change in value of a User field</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>User</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"stringchanged\">StringChanged</h2>\n<p> Represents a change in value of a string field</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"stringlistchanged\">StringListChanged</h2>\n<p> Represents a change in value of a string list field</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"datetimechanged\">DateTimeChanged</h2>\n<p> Represents a change in value of a DateTime field</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newValue</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>oldValue</td>\n<td></td>\n<td>DateTime</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4c48628c-c002-4f61-84df-f6469df7019b","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"}]}