{"info":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","description":"<html><head></head><body><p>Public documentation of Freeman's \"Fuzion\" v2 REST API.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>The Fuzion v2 API uses the OAuth 2.0 standard based on <a href=\"https://datatracker.ietf.org/doc/html/rfc6749\">RFC 6749</a> for authentication. Refer to the <a href=\"#8b24293d-1b43-4606-8185-1f7173840dfa\">Accesstokens</a> folder documentation for additional details.</p>\n<hr>\n<h2 id=\"requests\">Requests</h2>\n<p>Under a few entities, such as <code>registrations</code> and <code>registrationorders</code>, <code>sessions</code>, <code>subsessions</code>, <code>speakers</code>, <code>posters,</code> it is possible to write multiple related children<code>entities</code> with a single <code>JSON POST and PATCH</code> request.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<h4 id=\"filters\">Filters</h4>\n<p><code>?filter[field][operator]=value</code></p>\n<p>General filter functionality for all the <em>List</em> endpoints of the Fuzion V2 API.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Data Types</strong></th>\n<th><strong>Allowed Operators</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>arrays</td>\n<td>in</td>\n</tr>\n<tr>\n<td>arrayFields</td>\n<td>contains</td>\n</tr>\n<tr>\n<td>booleans</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>numbers</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>strings</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>uuids</td>\n<td>eq</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"include\">Include</h4>\n<p><code>?include=entity1,entity2</code></p>\n<p>The READ endpoints of the Fuzion V2 API support including related entities by providing them as a comma-separated list string.</p>\n<h3 id=\"validation\">Validation</h3>\n<h4 id=\"field-validations\">Field Validations</h4>\n<p>Below is a sample of a validation error where a required field is not provided when creating an entity.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"ValidationError\",\n    \"message\": \"\\\"shortName\\\" is required\",\n    \"requestMethod\": \"POST\",\n    \"requestProperty\": \"body\",\n    \"statusCode\": 422\n}\n\n</code></pre>\n<h4 id=\"existence-validation\">Existence Validation</h4>\n<p>Below is a sample of a validation error where the associated parent id field does not exist when creating a child entity.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"ValidationError\",\n    \"message\": \"sessionId (d763347b-056d-472a-a1a6-520b6f57d06f) does not exist.\",\n    \"requestMethod\": \"POST\",\n    \"statusCode\": 422\n}\n\n</code></pre>\n<h4 id=\"unique-constraint-validation\">Unique Constraint Validation</h4>\n<p>Below is a sample of a validation error when the unique field value already exists.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"ValidationError\",\n    \"message\": \"(fullName)=(Freeman Digital Solutions) already exists.\",\n    \"requestMethod\": \"POST\",\n    \"statusCode\": 422,\n    \"type\": \"unique violation\"\n}\n\n</code></pre>\n<h4 id=\"include-entity-validation\">Include Entity Validation</h4>\n<p>Below is a sample of a validation error when an unrelated or misspelled entity is included in the read endpoints.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"ValidationError\",\n    \"message\": \"Invalid entity provided in the include.\",\n    \"requestMethod\": \"GET\",\n    \"requestProperty\": \"query\",\n    \"statusCode\": 422\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"3368789","collectionId":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","publishedId":"T17CCpoA","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-03-28T18:13:54.000Z"},"item":[{"name":"Accesstokens (v2)","item":[{"name":"Create an Accesstoken","id":"6c3a2740-973e-42cb-be4c-060825fe950e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"clientId\": \"{{OAuthClientId}}\",\n    \"clientSecret\": \"{{OAuthClientSecret}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/accesstokens/v2","description":"<p>The OAuth2 endpoint that provides access tokens.</p>\n<h4 id=\"caching\">Caching</h4>\n<p>Access tokens should be cached and re-used until they expire. The exact expiration period is subject to change. There are four fields in the response that can be used to determine the actual expiration of the access.</p>\n<h4 id=\"response-body\"><strong>Response Body</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th>Data Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accessToken</td>\n<td>String</td>\n<td>The opaque access token.</td>\n</tr>\n<tr>\n<td>issuedAtTimestamp</td>\n<td>Integer</td>\n<td>A timestamp of exactly when the access token was generated/issued.</td>\n</tr>\n<tr>\n<td>expiresAtTimestamp</td>\n<td>Integer</td>\n<td>The expiration time of the token in seconds.</td>\n</tr>\n<tr>\n<td>minutesUntilExpiration</td>\n<td>Integer</td>\n<td>The number of minutes until the access token is expired.</td>\n</tr>\n<tr>\n<td>secondsUntilExpiration</td>\n<td>Integer</td>\n<td>The number of seconds until the access token is expired.</td>\n</tr>\n<tr>\n<td>isFromCache</td>\n<td>Boolean</td>\n<td>Whether or not the access token originated from cache or directly from the identity provider.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["accesstokens","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"d59b43f1-de46-45c3-9105-0b78a025dc92","name":"Create an Accesstoken","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"clientId\": \"{{OAuthClientId}}\",\n    \"clientSecret\": \"{{OAuthClientSecret}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/accesstokens/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Nov 2024 16:52:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1302"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"Tue Oct 29 2024 17:46:45 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"516-YUgckT6zbnMfBTY99Ip8KOfjtio\""}],"cookie":[],"responseTime":null,"body":"{\n    \"accessToken\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6InlYVEtmc1Z5U0dOWXpoTjhsMFFkRiJ9.eyJpc3MiOiJodHRwczovL2ZyZWVtYW4tc2FuZGJveC51cy5hdXRoMC5jb20vIiwic3ViIjoiYm1XSGN4MW5KUXdxalRwWmhVNVU0S0FlcTVsaDBnTlVAY2xpZW50cyIsImF1ZCI6Imh0dHBzOi8vYXBpLmZ1emlvbi1zdGFnZS5mcmVlbWFuLmNvbSIsImlhdCI6MTczMDczOTE0NSwiZXhwIjoxNzMwNzQyNzQ1LCJzY29wZSI6InJlYWQ6Y2xpZW50X2dyYW50cyBjcmVhdGU6Y2xpZW50X2dyYW50cyBkZWxldGU6Y2xpZW50X2dyYW50cyB1cGRhdGU6Y2xpZW50X2dyYW50cyByZWFkOnVzZXJzIHVwZGF0ZTp1c2VycyBkZWxldGU6dXNlcnMgY3JlYXRlOnVzZXJzIGNyZWF0ZTp1c2VyX3RpY2tldHMgcmVhZDp1c2VyX2lkcF90b2tlbnMgcmVhZDpjbGllbnRzIHVwZGF0ZTpjbGllbnRzIGRlbGV0ZTpjbGllbnRzIGNyZWF0ZTpjbGllbnRzIGNyZWF0ZTpzaWduaW5nX2tleXMgcmVhZDpzaWduaW5nX2tleXMgdXBkYXRlOnNpZ25pbmdfa2V5cyIsImd0eSI6ImNsaWVudC1jcmVkZW50aWFscyIsImF6cCI6ImJtV0hjeDFuSlF3cWpUcFpoVTVVNEtBZXE1bGgwZ05VIn0.PEgd2k3SHxUVtQRcimgoTaqfMh6Dx7bUevyHF7d5fcSzr4ziDHLm9mDiacqF4NB6DMgFCRk4nK-8lBPwNFRL1ieXXnzmDrM5EMm2B_EP9FP2PMNIshtSIB4vldk7U5zoSLSs5BsxKU_VxYrwXMONXvM_I0ytBXAKpuGqSUL9_J-v5lrxD7A-IH_llVvWwOYspTCpmd-53KWEGN8CJO3oj9HXMEl68Qh8Qctu4lUxHRcDoDlYcCsI0Yztt6Rb3bUYy4QZVmdks1DhSjfSU7ndOgq2RuQEfzOtUoodrznW7d911xmWsc7fp7InFk5Rv5yospVoDbsbBWAukE6X6r8Ruw\",\n    \"issuedAtTimestamp\": 1730739145,\n    \"expiresAtTimestamp\": 1730742745,\n    \"minutesUntilExpiration\": 60,\n    \"secondsUntilExpiration\": 3600,\n    \"isFromCache\": false\n}"}],"_postman_id":"6c3a2740-973e-42cb-be4c-060825fe950e"}],"id":"8b24293d-1b43-4606-8185-1f7173840dfa","description":"<p>The Fuzion API uses the OAuth 2.0 standard for authentication. To begin making requests to Fuzion, you must first obtain a client ID and client secret. This must be generated for you by a Fuzion administrator. The client secret is confidential and MUST transmitted and stored securely within client systems.</p>\n","_postman_id":"8b24293d-1b43-4606-8185-1f7173840dfa","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Events (v2)","item":[{"name":"List Events","id":"7ee26850-cb05-4d26-b31f-215a5d6b42fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/events/v2","description":"<p>Retrieve a collection of Event records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>organizationId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>shortName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>systemName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>website</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>timezoneOffsetInMinutes</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>freemanJobIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>isSandbox</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shortName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>systemName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>timezoneOffsetInMinutes</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isSandbox</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["events","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"9708392d-1fd9-470e-961f-11d673c7e63d","name":"List Events","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/events/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["events","v2"],"query":[{"key":"filter[eventId][eq]","value":"8935459d-3a85-4bfe-ae3e-af1a34f4036f","description":"filter events with id equal to \"8935459d-3a85-4bfe-ae3e-af1a34f4036f\"","disabled":true},{"key":"filter[freemanJobId][eq]","value":"null","description":"filter events where freemanJobId is null","disabled":true},{"key":"filter[freemanJobId][ne]","value":"null","description":"filter events where freemanJobId is not null","disabled":true},{"key":"filter[fullName][eq]","value":"Generic Shoes Summit May","description":"filter events with fullName equals to \"Generic Shoes Summit May\"","disabled":true},{"key":"filter[fullName][substring]","value":"ame","description":"filter events where fullName value has a substring of \"ame\"","disabled":true},{"key":"filter[fullName][startsWith]","value":"Generic","description":"filter events where fullName value starts with \"Generic\"","disabled":true},{"key":"filter[systemName][eq]","value":"industrial2022","description":"filter events where systemName equals to \"industrial2022\"","disabled":true},{"key":"filter[id][in][]","value":"78581b6e-c328-4d74-b3bf-4926c1a3e540","description":"filter events where id is one of [\"78581b6e-c328-4d74-b3bf-4926c1a3e540\"]. Pass more filter queries like that to add more ids into the array of possible ids","disabled":true},{"key":"filter[id][in][]","value":"4b688d51-d237-4d8b-99d9-f83ee7424499","description":"filter events where id is one of [\"a2f012d8-1f87-4350-bfc7-13e32748f48c\"]. Pass more filter queries like that to add more ids into the array of possible ids","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-07-12","description":"filter events with createdAt data being greater than or equals to 2022-07-12","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filter events with createdAt data being less than or equals to 2022-04-08","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filter events with createdAt data being less than 2022-04-12","disabled":true},{"key":"filter[id][eq]","value":"07830279-3257-46c2-a632-9b0502ec314b","description":"get the event with id equals to \"07830279-3257-46c2-a632-9b0502ec314b\"","disabled":true},{"key":"filter[website][ne]","value":"null","description":"filter events with website property defined (Not equals to null).","disabled":true},{"key":"filter[createdAt][eq]","value":"2022-07-13T02:46:59.869Z","description":"filter events with createdAt property equal to 2022-07-13T02:46:59.869Z","disabled":true},{"key":"filter[createdAt]","value":"2022-03-31T15:27:01.076Z","description":"filter events with createdAt property equal to 2022-03-31T15:27:01.076Z. If operation is not provided - equals operation will be assumed","disabled":true},{"key":"filter[website][is]","value":"null","description":"filter events with website property being null","disabled":true},{"key":"filter[isSandbox][eq]","value":"true","description":"filter events with isSandbox property equals true","disabled":true},{"key":"filter[website][like]","value":"http://%.com","description":"filter events with website like http://%.com","disabled":true},{"key":"filter[description][ne]","value":"null","description":"filter events where description is not null","disabled":true},{"key":"filter[createdAt][gt]","value":"2022-05-14T21:41:49.525Z","description":"filter events with createdAt greater than 2022-05-14T21:41:49.525Z","disabled":true},{"key":"page","value":"2","description":"get the second page of events","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 Jun 2023 20:29:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"53066"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 06 2023 18:08:39 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"cf4a-c9FGUcyebne1B5FnfR2Jr7+FNnY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"0b02e978-fcb5-44f7-8f47-50c4ad7dddf8\",\n            \"shortName\": \"Incredible Automotive Conference 2024\",\n            \"fullName\": \"Sleek Handcrafted Cotton Pizza Electronics Quarterly Meeting 2024\",\n            \"systemName\": \"incredibleautomotiveconference2024-58b4\",\n            \"website\": \"http://familiar-ingredient.org\",\n            \"description\": \"Extended next generation productivity empower web-enabled relationships\",\n            \"startsAt\": \"2023-02-28T13:30:00.000Z\",\n            \"endsAt\": \"2023-03-30T12:30:00.000Z\",\n            \"timezoneOffsetInMinutes\": 100,\n            \"freemanJobIdentifier\": \"0xcFa3EA2e7e\",\n            \"isSandbox\": true,\n            \"createdAt\": \"2022-09-23T16:22:07.503Z\",\n            \"updatedAt\": \"2023-06-07T15:53:36.974Z\",\n            \"organizationId\": \"c82c7999-3cf1-4f2b-b546-23f3925d3f47\"\n        },\n        {\n            \"id\": \"693650ec-566e-4812-828e-4664cf60071f\",\n            \"shortName\": \"Small Computers Tradeshow 2024\",\n            \"fullName\": \"Ergonomic Recycled Bronze Fish Baby Technical Overview 2024\",\n            \"systemName\": \"smallcomputerstradeshow2024-0df5\",\n            \"website\": \"www.special.event\",\n            \"description\": \"Exclusive composite capacity innovate bleeding-edge infrastructures\",\n            \"startsAt\": \"2022-09-29T06:00:00.000Z\",\n            \"endsAt\": \"2022-10-29T06:00:00.000Z\",\n            \"timezoneOffsetInMinutes\": 360,\n            \"freemanJobIdentifier\": \"null\",\n            \"isSandbox\": true,\n            \"createdAt\": \"2022-09-29T17:42:34.768Z\",\n            \"updatedAt\": \"2023-06-07T15:53:48.036Z\",\n            \"organizationId\": \"c82c7999-3cf1-4f2b-b546-23f3925d3f47\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"7ee26850-cb05-4d26-b31f-215a5d6b42fc"},{"name":"Read an Event","id":"fca5c2e2-d19f-4773-8aa4-9bcd6af1bb19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/events/v2/:eventId","description":"<p>Retrieve the single Event record of the supplied Event ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["events","v2",":eventId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Example: 0b02e978-fcb5-44f7-8f47-50c4ad7dddf8</p>\n","type":"text/plain"},"type":"any","value":"<Enter Event ID here>","key":"eventId"}]}},"response":[{"id":"0907c96a-0544-406f-a9a0-2d3151977882","name":"Read an Event","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/events/v2/:eventId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["events","v2",":eventId"],"variable":[{"key":"eventId","value":"0b02e978-fcb5-44f7-8f47-50c4ad7dddf8"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 Jun 2023 17:29:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"484"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 06 2023 18:08:39 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1e4-ooWAbKZ4gzsLpjKGneHbdt/ZCvE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0b02e978-fcb5-44f7-8f47-50c4ad7dddf8\",\n    \"shortName\": \"Small Industrial Tradeshow 2022\",\n    \"fullName\": \"Small Sleek Steel Keyboard Home Technical Overview 2022\",\n    \"systemName\": \"smallindustrialtradeshow2022-d7f8\",\n    \"website\": \"www.smallindustriesspecial.com\",\n    \"description\": \"null\",\n    \"startsAt\": \"2023-02-28T13:30:00.000Z\",\n    \"endsAt\": \"2023-03-30T12:30:00.000Z\",\n    \"timezoneOffsetInMinutes\": 100,\n    \"freemanJobIdentifier\": \"0x3c590F1D52\",\n    \"isSandbox\": false,\n    \"createdAt\": \"2022-09-23T16:22:07.503Z\",\n    \"updatedAt\": \"2023-06-07T15:53:36.974Z\",\n    \"organizationId\": \"c82c7999-3cf1-4f2b-b546-23f3925d3f47\"\n}"}],"_postman_id":"fca5c2e2-d19f-4773-8aa4-9bcd6af1bb19"}],"id":"24b5844f-0bea-4786-8b22-40e8c397e5d3","description":"<p>Events are defined as the experiences that Freeman is involved in producing. Events are any experience that gathers together and connects people in meaningful ways: tradeshows, conferences, annual summits, virtual experiences, corporate retreats, trainings, company meetings, expositions.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>organizationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Organization.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>String</td>\n<td>The full name of the Event.</td>\n</tr>\n<tr>\n<td>shortName</td>\n<td>String</td>\n<td>The shortened version of the Event. Typically an acronym.</td>\n</tr>\n<tr>\n<td>systemName</td>\n<td>String</td>\n<td>System-generated Event name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>Used to give descriptive detail about the Event.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>ISO-8601 formatted string</td>\n<td>When the Event starts.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>ISO-8601 formatted string</td>\n<td>When the Event ends.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td>Fully qualified domain name URL that provides information about the Event.</td>\n</tr>\n<tr>\n<td>timezoneOffsetInMinutes</td>\n<td>Integer</td>\n<td>Timezone offset in minutes. Can be positive or negative whole number.</td>\n</tr>\n<tr>\n<td>freemanJobIdentifier</td>\n<td>String</td>\n<td>Internal Freeman identifier (Salesforce)</td>\n</tr>\n<tr>\n<td>isSandbox</td>\n<td>Boolean</td>\n<td>Value to capture if the Event is ready for production usage. Sandbox events are used for testing the integration and verifying data.  <br />Default: false</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"24b5844f-0bea-4786-8b22-40e8c397e5d3","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Socialmediatypes (v2)","item":[{"name":"List Socialmediatypes","id":"18de31dd-fac0-4b27-b926-4418441246cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/socialmediatypes/v2","description":"<p>Retrieve a collection of socialmediatypes.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["socialmediatypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"7a8fd7c1-1e1d-40a5-8ef0-188fead2bdec","name":"List socialmediatypes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/socialmediatypes/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["socialmediatypes","v2"],"query":[{"key":"filter[domain][ne]","value":"linkedin.com","description":"domain not equal to \"linkedin.com\".","disabled":true},{"key":"filter[name][eq]","value":"linkedin","description":"name equals \"linkedin\".","disabled":true},{"key":"filter[deletedAt][eq]","value":"null","description":"deletedAt equals null. This filter can be used to list active records.","disabled":true},{"key":"filter[deletedAt][ne]","value":"null","description":"deletedAt not equal to null. This filter is used to list destroyed records. ","disabled":true},{"key":"page","value":"2","description":"page number to retrieve the records.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 21:59:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"822"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"336-O9wGbHmShRgCzsvoEo6ffwBRRig\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"name\": \"Twitter\",\n            \"domain\": \"twitter.com\",\n            \"createdAt\": \"2022-10-06T18:18:08.261Z\",\n            \"updatedAt\": \"2022-11-15T21:46:59.284Z\"\n        },\n        {\n            \"id\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"name\": \"Facebook\",\n            \"domain\": \"facebook.com\",\n            \"createdAt\": \"2022-10-21T20:27:46.328Z\",\n            \"updatedAt\": \"2022-10-21T20:27:46.328Z\"\n        },\n        {\n            \"id\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"name\": \"LinkedIn\",\n            \"domain\": \"linkedin.com\",\n            \"createdAt\": \"2022-10-21T20:29:05.963Z\",\n            \"updatedAt\": \"2022-10-21T20:29:05.963Z\"\n        },\n        {\n            \"id\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"name\": \"Instagram\",\n            \"domain\": \"instagram.com\",\n            \"createdAt\": \"2022-10-21T20:28:30.964Z\",\n            \"updatedAt\": \"2022-10-21T20:28:30.964Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 4,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 4\n    }\n}"}],"_postman_id":"18de31dd-fac0-4b27-b926-4418441246cf"},{"name":"Read a Socialmediatype","id":"b947672e-e84a-4b2a-90bd-1a65ceb00bf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/socialmediatypes/v2/:socialmediatypeId","description":"<p>Retrieve a single socialmediatype record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["socialmediatypes","v2",":socialmediatypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Socialmediatype ID.</p>\n","type":"text/plain"},"type":"any","value":"45ad0d90-9b94-4f6f-a894-3199e252d5d1","key":"socialmediatypeId"}]}},"response":[{"id":"b6d83b50-ef11-46b5-9ee1-6e728a5e22dd","name":"Read a socialmediatype","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/socialmediatypes/v2/45ad0d90-9b94-4f6f-a894-3199e252d5d1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"45ad0d90-9b94-4f6f-a894-3199e252d5d1\",\n    \"name\": \"LinkedIn\",\n    \"domain\": \"linkedin.com\",\n    \"createdAt\": \"2022-06-30T14:21:26.752Z\",\n    \"updatedAt\": \"2022-06-30T14:21:26.752Z\",\n    \"deletedAt\": null\n}"}],"_postman_id":"b947672e-e84a-4b2a-90bd-1a65ceb00bf0"},{"name":"Socialmediatype based on Speakers","id":"451f8093-5596-4e53-8010-c33600308fa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/socialmediatypes/v2?filter[speakerId][eq]=488a8bf3-15a5-417c-b1b5-26e47ff52dea","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the socialmediatype GET endpoint and applying the filter based on the speakerId to view all the social media handles tied to a speaker</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["socialmediatypes","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[speakerId][eq]","value":"488a8bf3-15a5-417c-b1b5-26e47ff52dea"}],"variable":[]}},"response":[{"id":"0d6da730-2010-4be8-92ee-7f06f3bea4c6","name":"Socialmedia Type based on Speakers","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/socialmediatypes/v2?filter[speakerId][eq]=488a8bf3-15a5-417c-b1b5-26e47ff52dea","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["socialmediatypes","v2"],"query":[{"key":"filter[speakerId][eq]","value":"488a8bf3-15a5-417c-b1b5-26e47ff52dea"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Aug 2022 15:10:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"825"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Aug 12 2022 16:34:10 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"339-org2S05uLDB7UYZl5d4fmwmxeQI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"3774c968-03c5-4f8c-bd6c-122f280612af\",\n            \"name\": \"LinkedIn\",\n            \"domain\": \"linkedin.com\",\n            \"createdAt\": \"2022-08-17T15:07:15.900Z\",\n            \"updatedAt\": \"2022-08-17T15:07:15.900Z\",\n            \"socialmedia\": [\n                {\n                    \"speakerId\": \"488a8bf3-15a5-417c-b1b5-26e47ff52dea\",\n                    \"handle\": \"Demo_Twitter\",\n                    \"socialmediatypeId\": \"3774c968-03c5-4f8c-bd6c-122f280612af\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ae0912ad-be0d-42a8-af67-a31316c5d27e\",\n            \"name\": \"Meta\",\n            \"domain\": \"facebook.com\",\n            \"createdAt\": \"2022-08-17T15:07:34.300Z\",\n            \"updatedAt\": \"2022-08-17T15:07:34.300Z\",\n            \"socialmedia\": [\n                {\n                    \"speakerId\": \"488a8bf3-15a5-417c-b1b5-26e47ff52dea\",\n                    \"handle\": \"Demo_FaceBook\",\n                    \"socialmediatypeId\": \"ae0912ad-be0d-42a8-af67-a31316c5d27e\"\n                }\n            ]\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"451f8093-5596-4e53-8010-c33600308fa2"}],"id":"ac06dcbe-91f3-4db7-afae-1355a16703ca","description":"<p>Collection of CRUD operations and options to interact with Socialmediatypes.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Socialmediatype ID (uuid).</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of a social media type.</td>\n</tr>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>Domain.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n<tr>\n<td>deletedAt</td>\n<td>iso formatted string</td>\n<td>Deleted timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ac06dcbe-91f3-4db7-afae-1355a16703ca","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Webhooksubscriptions (v2)","item":[{"name":"List Webhooksubscriptions","id":"763df263-4ea8-4596-bf67-0bd3f5c28431","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2","description":"<p>Retrieve a collection of Webhooksubscriptions.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["webhooksubscriptions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"1052fd92-590f-4e20-8b10-04da0aa72c65","name":"List webhooksubscriptions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["webhooksubscriptions","v2"],"query":[{"key":"filter[description][eq]","value":"Upgradable context-sensitive secured line harness plug-and-play communities","disabled":true},{"key":"filter[id][in][]","value":"744953fd-ea28-475e-a235-64cc3c6de0cf","disabled":true},{"key":"filter[integrationId][]","value":"null","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 23:03:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"55672"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"d978-SEumFGFLh5Me1GoA8xq+GCWs8Vo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"692a8dcf-5bfd-4ced-be6a-d3e006084b1d\",\n            \"organizationId\": null,\n            \"eventId\": \"693650ec-566e-4812-828e-4664cf60071f\",\n            \"integrationId\": \"d18dd463-879e-462e-b571-66416441517a\",\n            \"description\": \"QA Auth\",\n            \"subscribedTo\": [\n                \"events:create\",\n                \"events:update\"\n            ],\n            \"secret\": \"fVcqEx7lx+Ok8UIo9qe6/AjEfctVcnGhPiMxwnzkR4o=\",\n            \"url\": \"https://stage.fuzionapi.com/v2/webhook-captures/notifications/app/QAUth\",\n            \"isEnabled\": true,\n            \"createdAt\": \"2023-06-13T15:59:29.420Z\",\n            \"updatedAt\": \"2023-06-13T15:59:29.420Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"763df263-4ea8-4596-bf67-0bd3f5c28431"},{"name":"Create a Webhooksubscription","id":"1e18ad19-4228-427f-bc25-813c40eb0129","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"eventId\": \"693650ec-566e-4812-828e-4664cf60071f\",\r\n    \"integrationId\": \"9464ab54-d111-4d0d-8b2a-98e5fa04f6f1\",\r\n    \"organizationId\": null,\r\n    \"description\": \"Demo Webhooks subscription\",\r\n    \"url\": \"https://mycoolendpoint.requestcatcher.com\",\r\n    \"subscribedTo\": [\"sessions:update\",\"sessions:create\",\"sessions:destroy\"],\r\n    \"isEnabled\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2","description":"<p>Create a new subscription record</p>\n<p><code>Request Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Optional field.  <br />ID of the event that the subscription record is tied to (uuid).</td>\n</tr>\n<tr>\n<td>integrationId</td>\n<td>string</td>\n<td>Optional field.  <br />ID of the integration that the subscription record is tied to (uuid).</td>\n</tr>\n<tr>\n<td>organizationId</td>\n<td>string</td>\n<td>Optional field.  <br />ID of the organization that the subscription record is tied to (uuid).</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Required field.  <br />URL where the webhook notifications will be sent</td>\n</tr>\n<tr>\n<td>subscribedTo</td>\n<td>array</td>\n<td>Required field.  <br />Lists the set of entities and trigger (separated by a colon punctuation mark) combinations that the subscription is created for.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Required field.  <br />Description for the subscription record</td>\n</tr>\n<tr>\n<td>isEnabled</td>\n<td>boolean</td>\n<td>Optional field.  <br />Default: true  <br />Whether or not the webhooksubscription is enabled and should be actively delivering or not.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["webhooksubscriptions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"d11243ff-3243-4685-b64e-abd591227063","name":"Create a webhooksubscription","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"eventId\": \"693650ec-566e-4812-828e-4664cf60071f\",\r\n    \"integrationId\": \"9464ab54-d111-4d0d-8b2a-98e5fa04f6f1\",\r\n    \"organizationId\": \"7a10f9b5-35ad-4e71-b31f-8f48602b951e\",\r\n    \"description\": \"Demo Webhooks subscription\",\r\n    \"url\": \"https://mycoolendpoint.requestcatcher.com\",\r\n    \"subscribedTo\": [\"sessions:update\",\"sessions:create\",\"sessions:destroy\"],\r\n    \"isEnabled\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 23:06:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"453"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1c5-w3e5sjNA3SGAKP2cBk2Ke+DlnRQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"323fbf32-fc49-4044-9f12-c796e8a3c1c3\",\n    \"eventId\": \"693650ec-566e-4812-828e-4664cf60071f\",\n    \"description\": \"Demo Webhooks subscription\",\n    \"url\": \"https://mycoolendpoint.requestcatcher.com\",\n    \"subscribedTo\": [\n        \"sessions:update\",\n        \"sessions:create\",\n        \"sessions:destroy\"\n    ],\n    \"secret\": \"Q/YxzDanrux/Mz4M2BSKjOxPeVuB5CWZ1E3dXW1QajU=\",\n    \"updatedAt\": \"2023-06-20T23:06:32.074Z\",\n    \"createdAt\": \"2023-06-20T23:06:32.074Z\",\n    \"organizationId\": null,\n    \"integrationId\": \"9464ab54-d111-4d0d-8b2a-98e5fa04f6f1\",\n    \"isEnabled\": true\n}"}],"_postman_id":"1e18ad19-4228-427f-bc25-813c40eb0129"},{"name":"Read a Webhooksubscription","id":"8398af1d-5bb4-4afa-b9ea-03369ac678fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2/:webhooksubscriptionId","description":"<p>Retrieve a single Webhooksubscriptions record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["webhooksubscriptions","v2",":webhooksubscriptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"type":"any","value":"323fbf32-fc49-4044-9f12-c796e8a3c1c3","key":"webhooksubscriptionId"}]}},"response":[{"id":"5e70feda-ed22-4971-b583-8214edc36a2a","name":"Read a webhooksubscription","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2/:webhooksubscriptionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["webhooksubscriptions","v2",":webhooksubscriptionId"],"variable":[{"key":"webhooksubscriptionId","value":"323fbf32-fc49-4044-9f12-c796e8a3c1c3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 23:07:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"453"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1c5-Eb/t7knUGD/4rMtVmEIIb8Wvpu4\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"323fbf32-fc49-4044-9f12-c796e8a3c1c3\",\n    \"organizationId\": null,\n    \"eventId\": \"693650ec-566e-4812-828e-4664cf60071f\",\n    \"integrationId\": \"d18dd463-879e-462e-b571-66416441517a\",\n    \"description\": \"Demo Webhooks subscription\",\n    \"subscribedTo\": [\n        \"sessions:update\",\n        \"sessions:create\",\n        \"sessions:destroy\"\n    ],\n    \"secret\": \"Q/YxzDanrux/Mz4M2BSKjOxPeVuB5CWZ1E3dXW1QajU=\",\n    \"url\": \"https://mycoolendpoint.requestcatcher.com\",\n    \"isEnabled\": true,\n    \"createdAt\": \"2023-06-20T23:06:32.074Z\",\n    \"updatedAt\": \"2023-06-20T23:06:32.074Z\"\n}"}],"_postman_id":"8398af1d-5bb4-4afa-b9ea-03369ac678fd"},{"name":"Update a Webhooksubscription","id":"ca44280e-78e3-4942-9be4-882adc88251f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"Update Webhook description here\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2/:webhooksubscriptionId","description":"<p>Update an existing Webhooksubscription record</p>\n<p><code>Request Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>integrationId</td>\n<td>UUID</td>\n<td>Optional field.  <br />ID of the integration that the subscription record is tied to (uuid).</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional field.  <br />Description for the subscription record</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Optional field.  <br />URL where the webhook notifications will be sent</td>\n</tr>\n<tr>\n<td>subscribedTo</td>\n<td>array</td>\n<td>Optional field.  <br />Lists the set of entities and trigger (separated by a colon punctuation mark) combinations that the subscription is created for.</td>\n</tr>\n<tr>\n<td>isEnabled</td>\n<td>boolean</td>\n<td>Optional field.  <br />Default: true  <br />Whether or not the webhooksubscription is enabled and should be actively delivering webhook requests or not.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["webhooksubscriptions","v2",":webhooksubscriptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"type":"any","value":"323fbf32-fc49-4044-9f12-c796e8a3c1c3","key":"webhooksubscriptionId"}]}},"response":[{"id":"1988e006-f30c-4f59-9e81-67d9a71796e1","name":"Update a webhooksubscription","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"Update Webhook description here\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2/:webhooksubscriptionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["webhooksubscriptions","v2",":webhooksubscriptionId"],"variable":[{"key":"webhooksubscriptionId","value":"323fbf32-fc49-4044-9f12-c796e8a3c1c3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 23:09:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"458"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1ca-DjCr43GhG/bgNkL7snRqLTN55BM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"323fbf32-fc49-4044-9f12-c796e8a3c1c3\",\n    \"organizationId\": null,\n    \"eventId\": \"693650ec-566e-4812-828e-4664cf60071f\",\n    \"integrationId\": \"d18dd463-879e-462e-b571-66416441517a\",\n    \"description\": \"Update Webhook description here\",\n    \"subscribedTo\": [\n        \"sessions:update\",\n        \"sessions:create\",\n        \"sessions:destroy\"\n    ],\n    \"secret\": \"Q/YxzDanrux/Mz4M2BSKjOxPeVuB5CWZ1E3dXW1QajU=\",\n    \"url\": \"https://mycoolendpoint.requestcatcher.com\",\n    \"isEnabled\": true,\n    \"createdAt\": \"2023-06-20T23:06:32.074Z\",\n    \"updatedAt\": \"2023-06-20T23:09:17.087Z\"\n}"}],"_postman_id":"ca44280e-78e3-4942-9be4-882adc88251f"},{"name":"Destroy a Webhooksubscription","id":"37f66f93-62ae-4010-8315-a1bff1f26f02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2/:webhooksubscriptionId","description":"<p>Delete a webhook record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["webhooksubscriptions","v2",":webhooksubscriptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"type":"any","value":"323fbf32-fc49-4044-9f12-c796e8a3c1c3","key":"webhooksubscriptionId"}]}},"response":[{"id":"a606591a-b96b-4fd4-8eae-d6f422047d04","name":"Destroy a webhooksubscription","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/webhooksubscriptions/v2/:webhooksubscriptionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["webhooksubscriptions","v2",":webhooksubscriptionId"],"variable":[{"key":"webhooksubscriptionId","value":"323fbf32-fc49-4044-9f12-c796e8a3c1c3"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 23:09:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"458"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1ca-DjCr43GhG/bgNkL7snRqLTN55BM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"323fbf32-fc49-4044-9f12-c796e8a3c1c3\",\n    \"organizationId\": null,\n    \"eventId\": \"693650ec-566e-4812-828e-4664cf60071f\",\n    \"integrationId\": null,\n    \"description\": \"Update Webhook description here\",\n    \"subscribedTo\": [\n        \"sessions:update\",\n        \"sessions:create\",\n        \"sessions:destroy\"\n    ],\n    \"secret\": \"Q/YxzDanrux/Mz4M2BSKjOxPeVuB5CWZ1E3dXW1QajU=\",\n    \"url\": \"https://mycoolendpoint.requestcatcher.com\",\n    \"isEnabled\": true,\n    \"createdAt\": \"2023-06-20T23:06:32.074Z\",\n    \"updatedAt\": \"2023-06-20T23:09:17.087Z\"\n}"}],"_postman_id":"37f66f93-62ae-4010-8315-a1bff1f26f02"}],"id":"0ba0e2f4-396f-448f-b765-511e7ed64675","description":"<p>Collection of CRUD operations and options to interact with Webhook Subscriptions</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Subscription ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>ID of the event that the subscription record is tied to (uuid).</td>\n</tr>\n<tr>\n<td>integrationId</td>\n<td>string</td>\n<td>ID of the integration that the subscription record is tied to (uuid).</td>\n</tr>\n<tr>\n<td>organizationId</td>\n<td>string</td>\n<td>ID of the organization that the subscription record is tied to (uuid).</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>URL where the webhook notifications will be sent</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Secret tied to the subscription record</td>\n</tr>\n<tr>\n<td>subscribedTo</td>\n<td>array</td>\n<td>Lists the set of entities and trigger (separated by a colon punctuation mark) combinations that the subscription is created for</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description for the subscription record</td>\n</tr>\n<tr>\n<td>isEnabled</td>\n<td>boolean</td>\n<td>Whether or not the webhooksubscription is enabled and should be actively delivering or not.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0ba0e2f4-396f-448f-b765-511e7ed64675","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registration","item":[{"name":"Registrations (v2)","item":[{"name":"List Registrations","id":"d70af377-d352-4885-b156-c121140b3e6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2","description":"<p>Retrieve a collection of Registration records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>answeroptionId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>questionId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>registrationoptionId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>consentId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>membershiptypeId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>registrationtypeId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>answeroptionId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>answeroptionId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitorCompanyId</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>language</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>status</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>pronoun</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>ethnicity</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>title</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>email</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>occupation</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>mobilePhoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>credentials</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>region</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>isPreviousAttendee</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registeredAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>method</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>ssoIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>language</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>status</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>pronoun</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>ethnicity</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>title</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>email</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>occupation</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>mobilePhoneNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>credentials</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>region</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isPreviousAttendee</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>registeredAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>method</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"{{protocol}}","path":["registrations","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"775780c5-4f49-46d0-9026-7b61796bb1ec","name":"List Registrations","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"218153"},{"key":"ETag","value":"W/\"35429-E39ttfZgp03RqVqM/BbWmjIK9jI\""},{"key":"Date","value":"Fri, 17 Jan 2025 14:10:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\",\n            \"exhibitorCompanyId\": \"XCVG\",\n            \"producerRecordIdentifier\": \"8yz9b\",\n            \"language\": \"Kinyarwanda\",\n            \"status\": \"Balance Due\",\n            \"gender\": \"Man\",\n            \"pronoun\": \"Ze (or Zie)/ Hir/ Hirs\",\n            \"ethnicity\": null,\n            \"badgeIdentifier\": \"bxNiB\",\n            \"firstName\": \"Jakayla\",\n            \"middleName\": \"Quinn\",\n            \"lastName\": \"Purdy\",\n            \"prefix\": \"Mrs.\",\n            \"suffix\": \"MD\",\n            \"preferredName\": \"Elijah\",\n            \"title\": \"Corporate Interactions Producer\",\n            \"email\": \"Laurel.Price@hotmail.com\",\n            \"emailTwo\": \"Zakary_White94@hotmail.com\",\n            \"website\": \"https://well-groomed-command.info/\",\n            \"organization\": \"Producer\",\n            \"occupation\": \"Developer\",\n            \"phoneNumber\": \"1-776-304-4650\",\n            \"mobilePhoneNumber\": \"1-859-767-1755 x402\",\n            \"faxNumber\": \"(820) 919-6610 x588\",\n            \"otherPhoneNumber\": \"237-317-9172\",\n            \"degree\": \"Human Web Administrator\",\n            \"credentials\": \"International Group Consultant\",\n            \"region\": \"Michigan\",\n            \"dateOfBirth\": \"2024-11-15T14:04:50.992Z\",\n            \"customAttributes\": \"{\\\"registration_payment_status\\\":\\\"Pending\\\",\\\"pending_payment\\\":100}\",\n            \"isFirstTime\": false,\n            \"isPreviousAttendee\": false,\n            \"registeredAt\": \"2024-11-15T14:04:50.992Z\",\n            \"method\": \"Online\",\n            \"isVip\": false,\n            \"ssoIdentifier\": \"hhtlW\",\n            \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/723.jpg\",\n            \"createdAt\": \"2024-11-15T14:04:50.992Z\",\n            \"updatedAt\": \"2025-01-08T20:31:18.313Z\",\n            \"eventId\": \"086221c4-d992-4c5a-b3f7-1b4bc6db20ab\",\n            \"membershiptypeId\": \"1c9e4a01-7150-4055-83e7-2f3f192a44b4\",\n            \"registrationorderId\": \"d79df633-7018-4b49-ac1a-3f22a96378fb\",\n            \"registrationtypeId\": \"090bf65c-c258-4345-ad4a-7e151908865a\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/086221c4-d992-4c5a-b3f7-1b4bc6db20ab\"\n                    },\n                    \"membershiptype\": {\n                        \"href\": \"/membershiptypes/v2/1c9e4a01-7150-4055-83e7-2f3f192a44b4\"\n                    },\n                    \"registrationorder\": {\n                        \"href\": \"/registrationorders/v2/d79df633-7018-4b49-ac1a-3f22a96378fb\"\n                    },\n                    \"registrationtype\": {\n                        \"href\": \"/registrationtypes/v2/090bf65c-c258-4345-ad4a-7e151908865a\"\n                    }\n                },\n                \"children\": {\n                    \"registrationaddresses\": {\n                        \"href\": \"/registrationaddresses/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"admissions\": {\n                        \"href\": \"/admissions/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"registration-socialmediatype\": {\n                        \"href\": \"/registration-socialmediatype/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"registration-registrationoption\": {\n                        \"href\": \"/registration-registrationoption/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"consent-registration\": {\n                        \"href\": \"/consent-registration/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"answeroption-registration\": {\n                        \"href\": \"/answeroption-registration/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    }\n                },\n                \"siblings\": {\n                    \"socialmediatypes\": {\n                        \"href\": \"/socialmediatypes/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"registrationoptions\": {\n                        \"href\": \"/registrationoptions/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"consents\": {\n                        \"href\": \"/consents/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    },\n                    \"answeroptions\": {\n                        \"href\": \"/answeroptions/v2?filter[registrationId][eq]=164d337f-c1c2-4316-b9a1-c0a8eb4af7cd\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"82177948-3d9c-4f3c-a9a1-4066bd844f4c\",\n            \"exhibitorCompanyId\": null,\n            \"producerRecordIdentifier\": \"MMnLt\",\n            \"language\": \"Kuanyama\",\n            \"status\": \"Balance Due\",\n            \"gender\": \"Other\",\n            \"pronoun\": \"Prefer not to answer\",\n            \"ethnicity\": \"Hispanic or Latino\",\n            \"badgeIdentifier\": \"nqFNi\",\n            \"firstName\": \"Kenyon\",\n            \"middleName\": \"Parker\",\n            \"lastName\": \"Cronin\",\n            \"prefix\": \"Mrs.\",\n            \"suffix\": \"Jr.\",\n            \"preferredName\": \"Alexandrine\",\n            \"title\": \"Dynamic Directives Director\",\n            \"email\": \"Rene_Powlowski61@hotmail.com\",\n            \"emailTwo\": \"Isadore_Howell65@yahoo.com\",\n            \"website\": \"https://delectable-derrick.name\",\n            \"organization\": \"Coordinator\",\n            \"occupation\": \"Administrator\",\n            \"phoneNumber\": \"619.222.5099 x25418\",\n            \"mobilePhoneNumber\": \"1-585-799-0429 x6808\",\n            \"faxNumber\": \"(840) 325-0653 x9302\",\n            \"otherPhoneNumber\": \"973-283-8386 x143\",\n            \"degree\": \"Dynamic Assurance Consultant\",\n            \"credentials\": \"Customer Configuration Architect\",\n            \"region\": \"Delaware\",\n            \"dateOfBirth\": \"2024-11-15T14:04:50.880Z\",\n            \"customAttributes\": \"{\\\"registration_payment_status\\\":\\\"Pending\\\",\\\"pending_payment\\\":100}\",\n            \"isFirstTime\": true,\n            \"isPreviousAttendee\": true,\n            \"registeredAt\": \"2024-11-15T14:04:50.880Z\",\n            \"method\": \"Onsite\",\n            \"isVip\": false,\n            \"ssoIdentifier\": \"KYxdA\",\n            \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/837.jpg\",\n            \"createdAt\": \"2024-11-15T14:04:50.880Z\",\n            \"updatedAt\": \"2024-11-15T14:04:50.881Z\",\n            \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n            \"membershiptypeId\": \"cf0e1994-1e8d-4a9f-a820-7bb405a088e0\",\n            \"registrationorderId\": \"b6088de2-d087-41ba-9b55-2f91b5a95472\",\n            \"registrationtypeId\": \"d8eb796d-abe9-45b5-82ad-75fa06942eaa\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/06787de5-155b-4766-bbc7-60691b7de816\"\n                    },\n                    \"membershiptype\": {\n                        \"href\": \"/membershiptypes/v2/cf0e1994-1e8d-4a9f-a820-7bb405a088e0\"\n                    },\n                    \"registrationorder\": {\n                        \"href\": \"/registrationorders/v2/b6088de2-d087-41ba-9b55-2f91b5a95472\"\n                    },\n                    \"registrationtype\": {\n                        \"href\": \"/registrationtypes/v2/d8eb796d-abe9-45b5-82ad-75fa06942eaa\"\n                    }\n                },\n                \"children\": {\n                    \"registrationaddresses\": {\n                        \"href\": \"/registrationaddresses/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"admissions\": {\n                        \"href\": \"/admissions/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"registration-socialmediatype\": {\n                        \"href\": \"/registration-socialmediatype/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"registration-registrationoption\": {\n                        \"href\": \"/registration-registrationoption/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"consent-registration\": {\n                        \"href\": \"/consent-registration/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"answeroption-registration\": {\n                        \"href\": \"/answeroption-registration/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    }\n                },\n                \"siblings\": {\n                    \"socialmediatypes\": {\n                        \"href\": \"/socialmediatypes/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"registrationoptions\": {\n                        \"href\": \"/registrationoptions/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"consents\": {\n                        \"href\": \"/consents/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    },\n                    \"answeroptions\": {\n                        \"href\": \"/answeroptions/v2?filter[registrationId][eq]=82177948-3d9c-4f3c-a9a1-4066bd844f4c\"\n                    }\n                }\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 500,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/registrations/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"d70af377-d352-4885-b156-c121140b3e6c"},{"name":"Create a Registration","id":"e8d9bc47-1fe3-4d65-b3cc-1ae125a0a508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"f36b861e-1457-4094-bf8c-e7c569f8c9b0\",\n    \"exhibitorCompanyId\": \"XCVG\",\n    \"registrationtypeId\": \"14f08644-351e-46cd-a03d-7fcd2247d01a\",\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Shana\",\n    \"middleName\": \"Tonya\",\n    \"lastName\": \"Yannikov\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Shane\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"nyannikov0@yandex.ru\",\n    \"emailTwo\": \"nyannikov0@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"language\": \"Italian\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"status\": \"Cancelled\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2","description":"<p>Create a new Registration record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>membershiptypeId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Membershiptype.</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Registrationorder.</td>\n</tr>\n<tr>\n<td>registrationtypeId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Membershiptype.</td>\n</tr>\n<tr>\n<td>exhibitorCompanyId</td>\n<td>string</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>language</td>\n<td>ISO 639-1 formatted string</td>\n<td></td>\n<td>• Must be a value from the list of <a href=\"https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes\">ISO 639-1</a> language codes.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>pronoun</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>ethnicity</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>badgeIdentifier</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>occupation</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>mobilePhoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>credentials</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>region</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid Date.</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>isPreviousAttendee</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>registeredAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid Date.</td>\n</tr>\n<tr>\n<td>method</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>ssoIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.  <br />• Must utilize the https protocol.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-children-entities\">Includable Related Children Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>admissions</td>\n<td>registrationaddresses</td>\n<td>registration-socialmediatype</td>\n</tr>\n<tr>\n<td>consent-registration</td>\n<td>answeroption-registration</td>\n<td>registration-registrationoption</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrations","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"cba51375-89ee-4f03-b40f-fa9a1c632656","name":"Create a Registration","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"f36b861e-1457-4094-bf8c-e7c569f8c9b0\",\n    \"registrationtypeId\": \"14f08644-351e-46cd-a03d-7fcd2247d01a\",\n    \"exhibitorCompanyId\": \"XCVG\",\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Shana\",\n    \"middleName\": \"Tonya\",\n    \"lastName\": \"Yannikov\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Shane\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"nyannikov0@yandex.ru\",\n    \"emailTwo\": \"nyannikov0@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"language\": \"Italian\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"status\": \"Cancelled\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1246"},{"key":"ETag","value":"W/\"4de-+elyGHNirqq1ugW9uiSczgNEdKM\""},{"key":"Date","value":"Tue, 07 Nov 2023 19:46:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"37960bce-8777-45a8-9e5e-c2799015a70a\",\n    \"eventId\": \"f36b861e-1457-4094-bf8c-e7c569f8c9b0\",\n    \"registrationtypeId\": \"14f08644-351e-46cd-a03d-7fcd2247d01a\",\n    \"exhibitorCompanyId\": \"XCVG\",\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Shana\",\n    \"middleName\": \"Tonya\",\n    \"lastName\": \"Yannikov\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Shane\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"nyannikov0@yandex.ru\",\n    \"emailTwo\": \"nyannikov0@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"language\": \"Italian\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"status\": \"Cancelled\",\n    \"updatedAt\": \"2023-11-07T19:46:49.673Z\",\n    \"createdAt\": \"2023-11-07T19:46:49.673Z\",\n    \"customAttributes\": null,\n    \"membershiptypeId\": null,\n    \"registrationorderId\": null\n}"},{"id":"674cfa37-455e-4231-a94c-56fabe4e6392","name":"Create a Registration With Related Child Entities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n    \"registrationtypeId\": \"ac340d32-4344-484f-82b0-fad57b2c2600\",\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Dashawn\",\n    \"middleName\": \"Tasha\",\n    \"lastName\": \"Ahmed\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Dashawn\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"tasha@yandex.ru\",\n    \"emailTwo\": \"dashawn@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"language\": \"Italian\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"status\": \"Cancelled\",\n    \"admissions\": [\n        {\n            \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962-0242ac120002\",\n            \"type\": \"In-Person\",\n            \"admittedAt\": \"2025-05-06\"\n        }\n    ],\n    \"registrationaddresses\": [\n        {\n            \"producerRecordIdentifier\": \"1233\",\n            \"country\": \"US\",\n            \"type\": \"Business\",\n            \"isPrimary\": true,\n            \"lineOne\": \"Reanna Causeway\",\n            \"lineTwo\": \"78060 Mohammed Vista\",\n            \"cityLocality\": \"New Hiltonberg\",\n            \"stateProvince\": \"Tillman Group\",\n            \"countySubregion\": \"Wright\",\n            \"postalCode\": \"142806\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2177"},{"key":"ETag","value":"W/\"881-BzeNYUQB6T44w97h5GHjlIaeevs\""},{"key":"Date","value":"Wed, 07 May 2025 14:16:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1d39544a-191e-4132-997f-91eddc648e62\",\n    \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n    \"registrationtypeId\": \"ac340d32-4344-484f-82b0-fad57b2c2600\",\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Dashawn\",\n    \"middleName\": \"Tasha\",\n    \"lastName\": \"Ahmed\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Dashawn\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"tasha@yandex.ru\",\n    \"emailTwo\": \"dashawn@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"language\": \"Italian\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"status\": \"Cancelled\",\n    \"updatedAt\": \"2025-05-07T14:16:56.495Z\",\n    \"createdAt\": \"2025-05-07T14:16:56.495Z\",\n    \"exhibitorCompanyId\": null,\n    \"customAttributes\": null,\n    \"membershiptypeId\": null,\n    \"registrationorderId\": null,\n    \"admissions\": {\n        \"collection\": [\n            {\n                \"id\": \"e9f2ddfe-3164-4ee9-adcc-55c71321b05c\",\n                \"registrationId\": \"1d39544a-191e-4132-997f-91eddc648e62\",\n                \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n                \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962-0242ac120002\",\n                \"type\": \"In-Person\",\n                \"admittedAt\": \"2025-05-06T00:00:00.000Z\",\n                \"updatedAt\": \"2025-05-07T14:16:56.518Z\",\n                \"createdAt\": \"2025-05-07T14:16:56.518Z\"\n            }\n        ]\n    },\n    \"registrationaddresses\": {\n        \"collection\": [\n            {\n                \"id\": \"1c9a802b-6ec8-46ff-b843-cb7f7b02b0b7\",\n                \"registrationId\": \"1d39544a-191e-4132-997f-91eddc648e62\",\n                \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n                \"producerRecordIdentifier\": \"1233\",\n                \"country\": \"US\",\n                \"type\": \"Business\",\n                \"isPrimary\": true,\n                \"lineOne\": \"Reanna Causeway\",\n                \"lineTwo\": \"78060 Mohammed Vista\",\n                \"cityLocality\": \"New Hiltonberg\",\n                \"stateProvince\": \"Tillman Group\",\n                \"countySubregion\": \"Wright\",\n                \"postalCode\": \"142806\",\n                \"updatedAt\": \"2025-05-07T14:16:56.526Z\",\n                \"createdAt\": \"2025-05-07T14:16:56.526Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"e8d9bc47-1fe3-4d65-b3cc-1ae125a0a508"},{"name":"Read a Registration","id":"1b4872ee-5659-4f1f-ac3c-424fb779877b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId","description":"<p>Retrieve the single Registration record of the supplied Registration ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>socialmediatypes</td>\n<td>registration-socialmediatype</td>\n</tr>\n<tr>\n<td>membershiptypes</td>\n<td>registrationoptions</td>\n<td>registration-registrationoption</td>\n</tr>\n<tr>\n<td>registrationorders</td>\n<td>consents</td>\n<td>consent-registration</td>\n</tr>\n<tr>\n<td>registrationtypes</td>\n<td>answeroptions</td>\n<td>answeroption-registration</td>\n</tr>\n<tr>\n<td>registrationaddresses</td>\n<td>admissions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrations","v2",":registrationId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Example: 27952f34-135b-4f95-9045-51071166c4fc</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registration ID here>","key":"registrationId"}]}},"response":[{"id":"4dda7c31-39a4-448d-9e7f-396f789e80e2","name":"Read a Registration","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrations","v2",":registrationId"],"variable":[{"key":"registrationId","value":"27952f34-135b-4f95-9045-51071166c4fc","description":"Example: 27952f34-135b-4f95-9045-51071166c4fc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2985"},{"key":"ETag","value":"W/\"ba9-qMD/bFNomX2GYoSEP3AjoSrJWSo\""},{"key":"Date","value":"Wed, 27 Mar 2024 15:40:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n    \"exhibitorCompanyId\": \"XCVG\",\n    \"producerRecordIdentifier\": \"0jTMu\",\n    \"language\": \"Breton\",\n    \"status\": \"Cancelled\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"Ze (or Zie)/ Zir/ Zirs\",\n    \"ethnicity\": \"Hispanic or Latino\",\n    \"badgeIdentifier\": \"9gNW5\",\n    \"firstName\": \"Angel\",\n    \"middleName\": \"Addison\",\n    \"lastName\": \"Lynch\",\n    \"prefix\": \"Mr.\",\n    \"suffix\": \"IV\",\n    \"preferredName\": \"Walter\",\n    \"title\": \"Corporate Solutions Coordinator\",\n    \"email\": \"Amanda_Ernser87@gmail.com\",\n    \"emailTwo\": \"Carolyne.Beier3@gmail.com\",\n    \"website\": \"https://nifty-adult.org\",\n    \"organization\": \"Assistant\",\n    \"occupation\": \"Designer\",\n    \"phoneNumber\": \"723.518.0822 x3447\",\n    \"mobilePhoneNumber\": \"1-416-845-3088 x90511\",\n    \"faxNumber\": \"399-355-6309 x36435\",\n    \"otherPhoneNumber\": \"(438) 300-0561\",\n    \"degree\": \"Legacy Brand Supervisor\",\n    \"credentials\": \"Customer Group Director\",\n    \"region\": \"Montana\",\n    \"dateOfBirth\": \"2023-09-12T16:34:25.754Z\",\n    \"customAttributes\": \"{\\\"registration_payment_status\\\":\\\"Pending\\\",\\\"pending_payment\\\":100}\",\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-09-12T16:34:25.754Z\",\n    \"method\": \"Paper Form\",\n    \"isVip\": true,\n    \"ssoIdentifier\": \"LNEUR\",\n    \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/134.jpg\",\n    \"createdAt\": \"2023-09-12T16:34:25.754Z\",\n    \"updatedAt\": \"2023-09-12T16:34:25.755Z\",\n    \"eventId\": \"b3f99a9f-d7bb-4814-8dab-cd9c8376024f\",\n    \"membershiptypeId\": null,\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n    \"registrationtypeId\": \"46325315-7556-47b4-96d4-df50c1d2ebb1\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/b3f99a9f-d7bb-4814-8dab-cd9c8376024f\"\n            },\n            \"membershiptype\": {},\n            \"registrationorder\": {\n                \"href\": \"/registrationorders/v2/34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\"\n            },\n            \"registrationtype\": {\n                \"href\": \"/registrationtypes/v2/46325315-7556-47b4-96d4-df50c1d2ebb1\"\n            }\n        },\n        \"children\": {\n            \"registrationaddresses\": {\n                \"href\": \"/registrationaddresses/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"admissions\": {\n                \"href\": \"/admissions/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"registration-socialmediatype\": {\n                \"href\": \"/registration-socialmediatype/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"registration-registrationoption\": {\n                \"href\": \"/registration-registrationoption/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"consent-registration\": {\n                \"href\": \"/consent-registration/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"answeroption-registration\": {\n                \"href\": \"/answeroption-registration/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            }\n        },\n        \"siblings\": {\n            \"socialmediatypes\": {\n                \"href\": \"/socialmediatypes/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"registrationoptions\": {\n                \"href\": \"/registrationoptions/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"consents\": {\n                \"href\": \"/consents/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"answeroptions\": {\n                \"href\": \"/answeroptions/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            }\n        }\n    }\n}"},{"id":"e558d417-8478-4865-b4d4-2f8e39683cfc","name":"Read a Registration with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId?include=events,registrationaddresses,answeroptions,registration-registrationoption","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrations","v2",":registrationId"],"query":[{"key":"include","value":"events,registrationaddresses,answeroptions,registration-registrationoption"}],"variable":[{"key":"registrationId","value":"27952f34-135b-4f95-9045-51071166c4fc","description":"Example: 27952f34-135b-4f95-9045-51071166c4fc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"106771"},{"key":"ETag","value":"W/\"1a113-jLMDL1msBAz2wv9p0Z5MYDq7BmI\""},{"key":"Date","value":"Wed, 27 Mar 2024 15:44:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n    \"exhibitorCompanyId\": \"XCVG\",\n    \"producerRecordIdentifier\": \"0jTMu\",\n    \"language\": \"Breton\",\n    \"status\": \"Cancelled\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"Ze (or Zie)/ Zir/ Zirs\",\n    \"ethnicity\": \"Hispanic or Latino\",\n    \"badgeIdentifier\": \"9gNW5\",\n    \"firstName\": \"Angel\",\n    \"middleName\": \"Addison\",\n    \"lastName\": \"Lynch\",\n    \"prefix\": \"Mr.\",\n    \"suffix\": \"IV\",\n    \"preferredName\": \"Walter\",\n    \"title\": \"Corporate Solutions Coordinator\",\n    \"email\": \"Amanda_Ernser87@gmail.com\",\n    \"emailTwo\": \"Carolyne.Beier3@gmail.com\",\n    \"website\": \"https://nifty-adult.org\",\n    \"organization\": \"Assistant\",\n    \"occupation\": \"Designer\",\n    \"phoneNumber\": \"723.518.0822 x3447\",\n    \"mobilePhoneNumber\": \"1-416-845-3088 x90511\",\n    \"faxNumber\": \"399-355-6309 x36435\",\n    \"otherPhoneNumber\": \"(438) 300-0561\",\n    \"degree\": \"Legacy Brand Supervisor\",\n    \"credentials\": \"Customer Group Director\",\n    \"region\": \"Montana\",\n    \"dateOfBirth\": \"2023-09-12T16:34:25.754Z\",\n    \"customAttributes\": \"{\\\"registration_payment_status\\\":\\\"Pending\\\",\\\"pending_payment\\\":100}\",\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-09-12T16:34:25.754Z\",\n    \"method\": \"Paper Form\",\n    \"isVip\": true,\n    \"ssoIdentifier\": \"LNEUR\",\n    \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/134.jpg\",\n    \"createdAt\": \"2023-09-12T16:34:25.754Z\",\n    \"updatedAt\": \"2023-09-12T16:34:25.755Z\",\n    \"eventId\": \"b3f99a9f-d7bb-4814-8dab-cd9c8376024f\",\n    \"membershiptypeId\": null,\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n    \"registrationtypeId\": \"46325315-7556-47b4-96d4-df50c1d2ebb1\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"b3f99a9f-d7bb-4814-8dab-cd9c8376024f\",\n                \"shortName\": \"Recycled Clothing Review Meeting 2023\",\n                \"fullName\": \"Licensed Refined Metal Salad Clothing Review Meeting 2023\",\n                \"systemName\": \"recycledclothingreviewmeeting2023-1070\",\n                \"website\": \"https://drab-shin.info\",\n                \"description\": null,\n                \"startsAt\": \"2023-09-12T16:34:25.709Z\",\n                \"endsAt\": \"2023-09-16T16:34:25.706Z\",\n                \"timezoneOffsetInMinutes\": -752,\n                \"freemanJobIdentifier\": \"0xDC2E7C59CE\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-09-12T16:34:25.709Z\",\n                \"updatedAt\": \"2023-09-12T16:34:25.710Z\",\n                \"organizationId\": \"3ca6f3ef-2637-4bff-8223-150a36fdd8fc\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrationaddresses\": {\n        \"collection\": [\n            {\n                \"id\": \"8bad4426-f772-4179-b814-9a446f7c8e38\",\n                \"producerRecordIdentifier\": \"8d2f2114-13d6-4b5d-84b8-d591356b6f4d\",\n                \"country\": \"AR\",\n                \"type\": \"Work\",\n                \"isPrimary\": false,\n                \"lineOne\": \"826 Prosacco Springs\",\n                \"lineTwo\": \"Apt. 860\",\n                \"cityLocality\": \"South Whittier\",\n                \"stateProvince\": \"New York\",\n                \"countySubregion\": \"Cambridgeshire\",\n                \"postalCode\": \"53416-2568\",\n                \"createdAt\": \"2023-11-14T14:02:20.666Z\",\n                \"updatedAt\": \"2023-11-14T14:02:20.666Z\",\n                \"eventId\": \"b3f99a9f-d7bb-4814-8dab-cd9c8376024f\",\n                \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"answeroptions\": {\n        \"collection\": [\n            {\n                \"id\": \"800bb576-6699-4c0f-a676-e94260a25f75\",\n                \"eventId\": \"b3f99a9f-d7bb-4814-8dab-cd9c8376024f\",\n                \"questionId\": \"2b7d54dd-5ef3-49a2-ac20-8248f2f08f2b\",\n                \"producerRecordIdentifier\": \"lbH24\",\n                \"value\": \"SWyIN velit nostrum nisi\",\n                \"createdAt\": \"2023-09-12T16:34:28.734Z\",\n                \"updatedAt\": \"2023-09-12T16:34:28.734Z\",\n                \"answeroption-registration\": [\n                    {\n                        \"id\": \"e0d40b54-04fe-4464-a613-597d55289846\",\n                        \"answeroptionId\": \"800bb576-6699-4c0f-a676-e94260a25f75\",\n                        \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n                        \"value\": \"Agree\",\n                        \"createdAt\": \"2023-12-18T16:09:00.723Z\",\n                        \"updatedAt\": \"2023-12-18T16:09:00.723Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registration-registrationoption\": {\n        \"collection\": [\n            {\n                \"price\": 186,\n                \"id\": \"656e1039-9fbb-4fcf-81d8-fd8331c07503\",\n                \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n                \"registrationoptionId\": \"33719e8e-33c0-4d19-a9d1-7de991f875ed\",\n                \"currencyCode\": \"EUR\",\n                \"priceTier\": \"Investment Account\",\n                \"promoCode\": \"33323\",\n                \"createdAt\": \"2023-11-14T14:02:24.520Z\",\n                \"updatedAt\": \"2023-11-14T14:02:24.520Z\"\n            },\n            {\n                \"price\": 150,\n                \"id\": \"345361bb-4fdd-459a-80ff-9480c28f5cb7\",\n                \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n                \"registrationoptionId\": \"33719e8e-33c0-4d19-a9d1-7de991f875ed\",\n                \"currencyCode\": \"ZWL\",\n                \"priceTier\": \"Checking Account\",\n                \"promoCode\": \"65251\",\n                \"createdAt\": \"2023-09-12T16:34:29.913Z\",\n                \"updatedAt\": \"2023-09-12T16:34:29.913Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 2,\n            \"numberOfRecordsOnCurrentPage\": 2,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/b3f99a9f-d7bb-4814-8dab-cd9c8376024f\"\n            },\n            \"membershiptype\": {},\n            \"registrationorder\": {\n                \"href\": \"/registrationorders/v2/34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\"\n            },\n            \"registrationtype\": {\n                \"href\": \"/registrationtypes/v2/46325315-7556-47b4-96d4-df50c1d2ebb1\"\n            }\n        },\n        \"children\": {\n            \"registrationaddresses\": {\n                \"href\": \"/registrationaddresses/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"admissions\": {\n                \"href\": \"/admissions/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"registration-socialmediatype\": {\n                \"href\": \"/registration-socialmediatype/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"registration-registrationoption\": {\n                \"href\": \"/registration-registrationoption/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"consent-registration\": {\n                \"href\": \"/consent-registration/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"answeroption-registration\": {\n                \"href\": \"/answeroption-registration/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            }\n        },\n        \"siblings\": {\n            \"socialmediatypes\": {\n                \"href\": \"/socialmediatypes/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"registrationoptions\": {\n                \"href\": \"/registrationoptions/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"consents\": {\n                \"href\": \"/consents/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            },\n            \"answeroptions\": {\n                \"href\": \"/answeroptions/v2?filter[registrationId][eq]=27952f34-135b-4f95-9045-51071166c4fc\"\n            }\n        }\n    }\n}"}],"_postman_id":"1b4872ee-5659-4f1f-ac3c-424fb779877b"},{"name":"Update a Registration","id":"898456f8-72b8-490b-9722-aa82f85775f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"status\": \"Confirmed\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId","description":"<p>Modify one or more fields on the single Registration record of the supplied Registration ID.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>membershiptypeId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Membership Type.</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Registration Order.</td>\n</tr>\n<tr>\n<td>registrationtypeId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Membership Type.</td>\n</tr>\n<tr>\n<td>exhibitorCompanyId</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>language</td>\n<td>ISO 639-1 formatted string</td>\n<td></td>\n<td>The language of the registrant</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>pronoun</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>ethnicity</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>badgeIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>occupation</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>mobilePhoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>credentials</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>region</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid Date.</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>isPreviousAttendee</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>registeredAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid Date.</td>\n</tr>\n<tr>\n<td>method</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>ssoIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.  <br />• Must utilize the https protocol.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-children-entities\">Includable Related Children Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>admissions</td>\n<td>registrationaddresses</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrations","v2",":registrationId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"50db2794-fd7b-41eb-9946-879d7fa188fc","description":{"content":"<p>Example: 37960bce-8777-45a8-9e5e-c2799015a70a</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registration ID here>","key":"registrationId"}]}},"response":[{"id":"5730c8b6-1ce4-4589-9f48-34943ca69392","name":"Update a Registration","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"status\": \"Confirmed\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrations","v2",":registrationId"],"variable":[{"key":"registrationId","value":"37960bce-8777-45a8-9e5e-c2799015a70a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1246"},{"key":"ETag","value":"W/\"4de-bZ9F06XFnv14di1rRoe9dUMlPQ4\""},{"key":"Date","value":"Tue, 07 Nov 2023 19:48:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"37960bce-8777-45a8-9e5e-c2799015a70a\",\n    \"exhibitorCompanyId\": \"XCVG\",\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"language\": \"Italian\",\n    \"status\": \"Confirmed\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Shana\",\n    \"middleName\": \"Tonya\",\n    \"lastName\": \"Yannikov\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Shane\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"nyannikov0@yandex.ru\",\n    \"emailTwo\": \"nyannikov0@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"customAttributes\": null,\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"createdAt\": \"2023-11-07T19:46:49.673Z\",\n    \"updatedAt\": \"2023-11-07T19:48:48.664Z\",\n    \"eventId\": \"f36b861e-1457-4094-bf8c-e7c569f8c9b0\",\n    \"membershiptypeId\": null,\n    \"registrationorderId\": null,\n    \"registrationtypeId\": \"14f08644-351e-46cd-a03d-7fcd2247d01a\"\n}"},{"id":"561fd1e1-2552-4463-8b44-512720bdb07f","name":"Update a Registration With Related Child Entities","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"status\": \"Confirmed\",\n    \"admissions\": [\n        {\n            \"id\": \"e9f2ddfe-3164-4ee9-adcc-55c71321b05c\",\n            \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962\"\n        }\n    ],\n    \"registrationaddresses\": [\n        {\n            \"id\": \"1c9a802b-6ec8-46ff-b843-cb7f7b02b0b7\",\n            \"producerRecordIdentifier\": \"f1e2136c\"\n        }\n    ]\n\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrations","v2",":registrationId"],"variable":[{"key":"registrationId","value":"1d39544a-191e-4132-997f-91eddc648e62","description":"Example: 37960bce-8777-45a8-9e5e-c2799015a70a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2168"},{"key":"ETag","value":"W/\"878-zPXnVHk5+BCU9SXbetxCXnGI/J0\""},{"key":"Date","value":"Wed, 07 May 2025 14:29:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1d39544a-191e-4132-997f-91eddc648e62\",\n    \"exhibitorCompanyId\": null,\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"language\": \"Italian\",\n    \"status\": \"Confirmed\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Dashawn\",\n    \"middleName\": \"Tasha\",\n    \"lastName\": \"Ahmed\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Dashawn\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"tasha@yandex.ru\",\n    \"emailTwo\": \"dashawn@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"customAttributes\": null,\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"createdAt\": \"2025-05-07T14:16:56.495Z\",\n    \"updatedAt\": \"2025-05-07T14:29:02.325Z\",\n    \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n    \"membershiptypeId\": null,\n    \"registrationorderId\": null,\n    \"registrationtypeId\": \"ac340d32-4344-484f-82b0-fad57b2c2600\",\n    \"admissions\": {\n        \"collection\": [\n            {\n                \"id\": \"e9f2ddfe-3164-4ee9-adcc-55c71321b05c\",\n                \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962\",\n                \"type\": \"In-Person\",\n                \"admittedAt\": \"2025-05-06T00:00:00.000Z\",\n                \"createdAt\": \"2025-05-07T14:16:56.518Z\",\n                \"updatedAt\": \"2025-05-07T14:29:02.332Z\",\n                \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n                \"registrationId\": \"1d39544a-191e-4132-997f-91eddc648e62\"\n            }\n        ]\n    },\n    \"registrationaddresses\": {\n        \"collection\": [\n            {\n                \"id\": \"1c9a802b-6ec8-46ff-b843-cb7f7b02b0b7\",\n                \"producerRecordIdentifier\": \"f1e2136c\",\n                \"country\": \"US\",\n                \"type\": \"Business\",\n                \"isPrimary\": true,\n                \"lineOne\": \"Reanna Causeway\",\n                \"lineTwo\": \"78060 Mohammed Vista\",\n                \"cityLocality\": \"New Hiltonberg\",\n                \"stateProvince\": \"Tillman Group\",\n                \"countySubregion\": \"Wright\",\n                \"postalCode\": \"142806\",\n                \"createdAt\": \"2025-05-07T14:16:56.526Z\",\n                \"updatedAt\": \"2025-05-07T14:29:02.336Z\",\n                \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n                \"registrationId\": \"1d39544a-191e-4132-997f-91eddc648e62\"\n            }\n        ]\n    }\n}"}],"_postman_id":"898456f8-72b8-490b-9722-aa82f85775f3"},{"name":"Destroy a Registration","id":"b81db333-9a11-4ef6-851c-642c1a152dd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId","description":"<p>Permanently delete the Registration record of the supplied Registration ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrations","v2",":registrationId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"01def604-8314-4d8a-9373-d13f04837ea7","description":{"content":"<p>Example: 37960bce-8777-45a8-9e5e-c2799015a70a</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registration ID here>","key":"registrationId"}]}},"response":[{"id":"97a13664-a45b-4254-9795-fadb63c427fa","name":"Destroy a Registration","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrations/v2/:registrationId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrations","v2",":registrationId"],"variable":[{"key":"registrationId","value":"37960bce-8777-45a8-9e5e-c2799015a70a"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1246"},{"key":"ETag","value":"W/\"4de-bZ9F06XFnv14di1rRoe9dUMlPQ4\""},{"key":"Date","value":"Tue, 07 Nov 2023 19:49:17 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"37960bce-8777-45a8-9e5e-c2799015a70a\",\n    \"exhibitorCompanyId\": \"XCVG\",\n    \"producerRecordIdentifier\": \"aa01095e-61eb-4c22-bf4d-6e3ddd44f3d4\",\n    \"language\": \"Italian\",\n    \"status\": \"Confirmed\",\n    \"gender\": \"Woman\",\n    \"pronoun\": \"She/ Her/ Hers\",\n    \"ethnicity\": \"Not Hispanic or Latino\",\n    \"badgeIdentifier\": \"86083\",\n    \"firstName\": \"Shana\",\n    \"middleName\": \"Tonya\",\n    \"lastName\": \"Yannikov\",\n    \"prefix\": \"Dr\",\n    \"suffix\": \"II\",\n    \"preferredName\": \"Shane\",\n    \"title\": \"Chief Design Engineer\",\n    \"email\": \"nyannikov0@yandex.ru\",\n    \"emailTwo\": \"nyannikov0@gmail.ru\",\n    \"website\": \"http://squarespace.com\",\n    \"organization\": \"Jacobs Group\",\n    \"occupation\": \"Support\",\n    \"phoneNumber\": \"879-227-9302\",\n    \"mobilePhoneNumber\": \"941-740-1390\",\n    \"faxNumber\": \"516-376-0965\",\n    \"otherPhoneNumber\": \"621-935-1538\",\n    \"degree\": \"PHD\",\n    \"credentials\": \"RN\",\n    \"region\": \"EMEA\",\n    \"dateOfBirth\": \"1985-10-05T14:17:10.319Z\",\n    \"customAttributes\": null,\n    \"isFirstTime\": false,\n    \"isPreviousAttendee\": true,\n    \"registeredAt\": \"2023-06-05T14:17:10.319Z\",\n    \"method\": \"Onsite\",\n    \"isVip\": false,\n    \"ssoIdentifier\": \"146312\",\n    \"headshotUrl\": \"http://dummyimage.com/169x100.png/cc0000/ffffff\",\n    \"createdAt\": \"2023-11-07T19:46:49.673Z\",\n    \"updatedAt\": \"2023-11-07T19:48:48.664Z\",\n    \"eventId\": \"f36b861e-1457-4094-bf8c-e7c569f8c9b0\",\n    \"membershiptypeId\": null,\n    \"registrationorderId\": null,\n    \"registrationtypeId\": \"14f08644-351e-46cd-a03d-7fcd2247d01a\"\n}"}],"_postman_id":"b81db333-9a11-4ef6-851c-642c1a152dd8"}],"id":"e1056987-95b2-4e7e-a38c-7076e07690b7","description":"<p>Registrations are the record of people that are registered for an event. Registrations can include attendees, exhibitors, vendors, speakers, anyone who is attending the event. Registration includes the registrant details, addresses, options, orders, transactions, etc.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>membershiptypeId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Membershiptype.</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registrationorder.</td>\n</tr>\n<tr>\n<td>registrationtypeId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registrationtype.</td>\n</tr>\n<tr>\n<td>exhibitorCompanyId</td>\n<td>String</td>\n<td>The Exhibitor Company ID</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>language</td>\n<td>ISO 639-1 formatted string</td>\n<td>The language of the registrant.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>The registrants registration status.</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>String</td>\n<td>The gender of the registrant.</td>\n</tr>\n<tr>\n<td>pronoun</td>\n<td>String</td>\n<td>The pronouns of the registrant.</td>\n</tr>\n<tr>\n<td>ethnicity</td>\n<td>String</td>\n<td>The ethnicity of the registrant.</td>\n</tr>\n<tr>\n<td>badgeIdentifier</td>\n<td>String</td>\n<td>The badge number of the registrant.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>The first name of the registrant.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td>The middle name of the registrant.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>The last name of the registrant.</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td>The prefix of the registrant, typically Mr., Mrs., Ms., Dr., etc.</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td>The suffix of the registrant, typically Jr., Sr., II, III, etc.</td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>String</td>\n<td>The name the registrant prefers to referred by.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>The title of the registrant.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>The email of the registrant.</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td>Secondary or alternative email of the registrant.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td>The URL for the website of the registrant.</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>String</td>\n<td>The organization or company of the registrant.</td>\n</tr>\n<tr>\n<td>occupation</td>\n<td>String</td>\n<td>The occupation (or job role) of the registrant.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td>The primary phone number of the registrant.</td>\n</tr>\n<tr>\n<td>mobilePhoneNumber</td>\n<td>String</td>\n<td>The mobile/cellular phone number of the registrant.</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td>The fax number of the registrant.</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td>Additional or alternative phone number of the registrant.</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>String</td>\n<td>The degree of the registrant, typically M.D., P.H.D., etc.</td>\n</tr>\n<tr>\n<td>credentials</td>\n<td>String</td>\n<td>The credentials of the registrant, typically a qualification, certification or affiliation.</td>\n</tr>\n<tr>\n<td>region</td>\n<td>String</td>\n<td>The region of the registrant, typically AMER, APAC, AMEA, etc.</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td>ISO-8601 formatted string</td>\n<td>The date of birth of the registrant.</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>Boolean</td>\n<td>Denotes if this is the first time the registrant has attended this event.</td>\n</tr>\n<tr>\n<td>isPreviousAttendee</td>\n<td>Boolean</td>\n<td>Denotes if this registrant is a previous attendee.</td>\n</tr>\n<tr>\n<td>registeredAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the registrant registered for the event.</td>\n</tr>\n<tr>\n<td>method</td>\n<td>String</td>\n<td>How the registrant registered for the event.</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>Boolean</td>\n<td>Denotes if this registrant is a VIP.</td>\n</tr>\n<tr>\n<td>ssoIdentifier</td>\n<td>String</td>\n<td>The SSO (single-sign-on) identifier of the registrant.</td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>String</td>\n<td>The URL for the registrants headshot image.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e1056987-95b2-4e7e-a38c-7076e07690b7","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registrationtypes (v2)","item":[{"name":"List Registrationtypes","id":"bae6cbfe-e208-4531-8471-77ac4b4374f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2","description":"<p>Retrieve a collection of Registrationtype records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bae6cbfe-e208-4531-8471-77ac4b4374f2"},{"name":"Create a Registrationtype","id":"ba70fb4a-a8fa-44be-a8fb-3b8fb7d0a9a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"producerRecordIdentifier\": null,\n    \"name\": \"New test explicabo qui dolorem\",\n    \"description\": \"New test\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2","description":"<p>Create a new Registrationtype record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>1</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"ea6b8e1e-a49f-4716-a03b-afda9a89e4d8","name":"Create a Registrationtype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"producerRecordIdentifier\": null,\n    \"name\": \"New test explicabo qui dolorem\",\n    \"description\": \"New test\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e4c70d69-0501-490a-888c-cea596323463\",\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"producerRecordIdentifier\": null,\n    \"name\": \"New test explicabo qui dolorem\",\n    \"description\": \"New test\",\n    \"updatedAt\": \"2023-10-02T17:40:07.357Z\",\n    \"createdAt\": \"2023-10-02T17:40:07.357Z\"\n}"}],"_postman_id":"ba70fb4a-a8fa-44be-a8fb-3b8fb7d0a9a0"},{"name":"Read a Registrationtype","id":"29dbd199-c483-4cb6-8cba-81642bc07cb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2/:registrationtypeId","description":"<p>Retrieve the single Registrationtype record of the supplied Registrationtype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtypes","v2",":registrationtypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"e82108a9-02ca-4bfb-be68-da3d0cbb107a","description":{"content":"<p>Example: b0394583-f9ae-46d1-964d-fed134da7cfd</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationtype ID here>","key":"registrationtypeId"}]}},"response":[{"id":"92f4d6a9-f050-4792-bf6e-6520638b15ce","name":"Read a Registrationtype","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2/:registrationtypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationtypes","v2",":registrationtypeId"],"variable":[{"key":"registrationtypeId","value":"fdf65206-bf4f-4e17-ae2a-21eefc3a65b4"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fdf65206-bf4f-4e17-ae2a-21eefc3a65b4\",\n    \"eventId\": \"7fb4b281-6e35-43de-8782-38cda63a1dd9\",\n    \"producerRecordIdentifier\": \"Test123456\",\n    \"description\": \"This is a type of registration used for general attendees who are able to attend the full conference.\",\n    \"name\": \"Full Conference\",\n    \"createdAt\": \"2023-09-07T05:17:40.238Z\",\n    \"updatedAt\": \"2023-09-07T05:17:40.238Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/7fb4b281-6e35-43de-8782-38cda63a1dd9\"\n            }\n        },\n        \"children\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[registrationtypeId][eq]=fdf65206-bf4f-4e17-ae2a-21eefc3a65b4\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"},{"id":"5068cbcc-2b52-40fe-8d59-5420c819f765","name":"Read a Registrationtype with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2/:registrationtypeId?include=events,registrations","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationtypes","v2",":registrationtypeId"],"query":[{"key":"include","value":"events,registrations"}],"variable":[{"key":"registrationtypeId","value":"82b86e08-6e95-4063-9e77-f456f413e61b"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1420"},{"key":"ETag","value":"W/\"58c-bNyiwVcd60lmS64A0QFZELdwz2s\""},{"key":"Date","value":"Mon, 08 Apr 2024 16:19:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"82b86e08-6e95-4063-9e77-f456f413e61b\",\n    \"eventId\": \"dab9fd14-13b7-46d1-9c0e-1d7675f41af8\",\n    \"producerRecordIdentifier\": \"gCFLG\",\n    \"description\": null,\n    \"name\": \"B6gm7 distinctio iure sint\",\n    \"createdAt\": \"2023-05-31T14:05:14.869Z\",\n    \"updatedAt\": \"2023-05-31T14:05:14.869Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"dab9fd14-13b7-46d1-9c0e-1d7675f41af8\",\n                \"shortName\": \"Small Tools Quarterly Meeting 2026\",\n                \"fullName\": \"Ergonomic Fantastic Granite Table Music Quarterly Meeting 2026\",\n                \"systemName\": \"smalltoolsquarterlymeeting2026-5a3f\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-05-31T14:05:14.853Z\",\n                \"endsAt\": \"2023-06-03T14:05:14.775Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"ab2322a\",\n                \"isSandbox\": true,\n                \"createdAt\": \"2023-05-31T14:05:14.853Z\",\n                \"updatedAt\": \"2023-05-31T14:05:14.853Z\",\n                \"organizationId\": \"145c8497-af88-4989-824a-ff0d6dccd5fc\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/dab9fd14-13b7-46d1-9c0e-1d7675f41af8\"\n            }\n        },\n        \"children\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[registrationtypeId][eq]=82b86e08-6e95-4063-9e77-f456f413e61b\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"29dbd199-c483-4cb6-8cba-81642bc07cb8"},{"name":"Update a Registrationtype","id":"f4e533d2-42d7-4fbd-a82a-5851f7df294c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"959\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2/:registrationtypeId","description":"<p>Modify one or more fields on the single Registrationtype record of the supplied Registrationtype ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>Yes</td>\n<td>1</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtypes","v2",":registrationtypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"ec2b4055-e08e-444e-b561-04c20a0eaceb","description":{"content":"<p>Example: 2faaf34d-69c0-4137-9405-876524cd3e03</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationtype ID here>","key":"registrationtypeId"}]}},"response":[{"id":"b0c845be-0ff4-4868-9f44-9f8070e48c4c","name":"Update a Registrationtype","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"722\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2/:registrationtypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationtypes","v2",":registrationtypeId"],"variable":[{"key":"registrationtypeId","value":"2faaf34d-69c0-4137-9405-876524cd3e03"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2faaf34d-69c0-4137-9405-876524cd3e03\",\n    \"eventId\": \"99a21ecd-20bc-4fd6-ad20-89d07d7192e4\",\n    \"producerRecordIdentifier\": \"948\",\n    \"description\": \"Testing adding a description\",\n    \"name\": \"New test replace explicabo qui dolorem\",\n    \"createdAt\": \"2023-05-31T14:05:14.893Z\",\n    \"updatedAt\": \"2023-06-01T14:55:59.285Z\"\n}"}],"_postman_id":"f4e533d2-42d7-4fbd-a82a-5851f7df294c"},{"name":"Destroy a Registrationtype","id":"e2f6722c-4d01-4f12-bbc5-2f2c3832c337","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationtypes/v2/:registrationtypeId","description":"<p>Permanently delete the Registrationtype record of the supplied Registrationtype ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtypes","v2",":registrationtypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"6f9f3617-1d86-40dd-b5f9-bc448fc445eb","description":{"content":"<p>Example: b0394583-f9ae-46d1-964d-fed134da7cfd</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationtype ID here>","key":"registrationtypeId"}]}},"response":[{"id":"c38e7dbe-33fc-45da-b457-881c30060834","name":"Destroy a Registrationtype","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.fuzion.freeman.com/registrationtypes/v2/:registrationtypeId","protocol":"https","host":["api","fuzion","freeman","com"],"path":["registrationtypes","v2",":registrationtypeId"],"variable":[{"key":"registrationtypeId","value":"504462ef-34cb-4fa8-b014-8ed1dd783f65"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 18:46:16 GMT"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"787"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"313-932ATcsmMjmhuFnZAyCKrxPkDPQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"504462ef-34cb-4fa8-b014-8ed1dd783f65\",\n    \"eventId\": \"8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\",\n    \"producerRecordIdentifier\": null,\n    \"description\": \"Testing adding a description\",\n    \"name\": \"New test explicabo qui dolorem\",\n    \"createdAt\": \"2023-06-01T14:52:00.493Z\",\n    \"updatedAt\": \"2023-06-01T14:53:58.991Z\"\n}"}],"_postman_id":"e2f6722c-4d01-4f12-bbc5-2f2c3832c337"}],"id":"68be27ec-70aa-4c35-8bae-7d69d1848686","description":"<p>Registrationtypes represent the various types of registrants for an Event, who they are and what they can access at an Event. Typically Registrationtypes are defined as Attendees, Full Conference, Exhibit Hall Only, Exhibitor Full Conference, Speakers, Staff, etc.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name, title, or label for the Registrationtype.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>Used to give descriptive detail about the Registrationtype.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"68be27ec-70aa-4c35-8bae-7d69d1848686","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Membershiptypes (v2)","item":[{"name":"List Membershiptypes","id":"8c5589a0-2888-44a7-8dd0-2130371e1f67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2","description":"<p>Retrieve a collection of Membershiptype records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["membershiptypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"fd198852-96b4-42bd-9298-03d6efc9a11d","name":"List Membershiptypes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["membershiptypes","v2"],"query":[{"key":"filter[id][in][]","value":"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323","type":"text","description":"filter membershiptypes where id matches one of the values provided.  Pass more filter queries like that to pass more items to the array. See example.","disabled":true},{"key":"filter[eventId][eq]","value":"501725a3-93df-4eab-ad70-66e70246d179","type":"text","description":"get membershiptypes with eventId \"501725a3-93df-4eab-ad70-66e70246d179\".","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"14aa3bc7-5032-4631-9e8d-0bf55e1addde","type":"text","description":"filter membershiptypes where producerRecordIdentifier equals to 14aa3bc7-5032-4631-9e8d-0bf55e1addde.","disabled":true},{"key":"filter[name][endsWith]","value":"Member","type":"text","description":"filter membershiptypes where name ends with \"Member\".","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","type":"text","description":"filter membershiptypes that have been created on or after 2022-04-01 using greater than or equal operator.","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","description":"filter membershiptypes that have been updated before 2022-04-12 using less than operator","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","description":"sort membershiptypes by created on time in ascending order.","disabled":true},{"key":"page","value":"1","type":"text","description":"get the first page of membershiptypes records using page query param","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"46071"},{"key":"ETag","value":"W/\"b3f7-/QwpNU9IIDpRiut/BkkyvufUwm0\""},{"key":"Date","value":"Mon, 23 Oct 2023 13:44:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323\",\n            \"eventId\": \"501725a3-93df-4eab-ad70-66e70246d179\",\n            \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n            \"name\": \"Professional Member\",\n            \"createdAt\": \"2023-09-12T16:34:25.652Z\",\n            \"updatedAt\": \"2023-09-12T16:34:25.652Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/501725a3-93df-4eab-ad70-66e70246d179\"\n                    }\n                },\n                \"children\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[membershiptypeId][eq]=fdc54ea1-9e30-44d4-b4e6-ba41cc51a323\"\n                    }\n                },\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"24cfa468-263c-44a4-8207-0a9ec3735154\",\n            \"eventId\": \"52c67437-36d5-46ec-9bbc-592981da6cb5\",\n            \"producerRecordIdentifier\": \"deef406b-932a-4cab-9ad1-5d885fb8c55a\",\n            \"name\": \"Student Member\",\n            \"createdAt\": \"2023-09-12T16:34:25.723Z\",\n            \"updatedAt\": \"2023-09-12T16:34:25.723Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/52c67437-36d5-46ec-9bbc-592981da6cb5\"\n                    }\n                },\n                \"children\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[membershiptypeId][eq]=24cfa468-263c-44a4-8207-0a9ec3735154\"\n                    }\n                },\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/membershiptypes/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"8c5589a0-2888-44a7-8dd0-2130371e1f67"},{"name":"Create a Membershiptype","id":"d3e97b2c-1661-4149-94d4-1f46168e8463","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"501725a3-93df-4eab-ad70-66e70246d179\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Professional Member\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2","description":"<p>Create a new Membershiptype record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["membershiptypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"67b37fff-1b2c-4b39-9d08-708d8b7e6627","name":"Create a Membershiptype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"501725a3-93df-4eab-ad70-66e70246d179\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Professional Member\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"267"},{"key":"ETag","value":"W/\"10b-5P9QfYM3HtubCdeSeqhZ/7CQOnM\""},{"key":"Date","value":"Mon, 23 Oct 2023 13:51:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323\",\n    \"eventId\": \"501725a3-93df-4eab-ad70-66e70246d179\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Professional Member\",\n    \"updatedAt\": \"2023-10-23T13:51:20.481Z\",\n    \"createdAt\": \"2023-10-23T13:51:20.481Z\"\n}"}],"_postman_id":"d3e97b2c-1661-4149-94d4-1f46168e8463"},{"name":"Read a Membershiptype","id":"8d34968d-ed8e-4a1c-9c6f-63b5a7d0cac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2/:membershiptypeId","description":"<p>Retrieve the single Membershiptype record of the supplied Membershiptype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["membershiptypes","v2",":membershiptypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"4544be27-b8f8-4696-8801-6155daf3b7f4","description":{"content":"<p>Example: fdc54ea1-9e30-44d4-b4e6-ba41cc51a323</p>\n","type":"text/plain"},"type":"any","value":"<Enter Membershiptype ID here>","key":"membershiptypeId"}]}},"response":[{"id":"e53f9a8e-2ede-4734-8c2b-b3f62c7216e2","name":"Read a Membershiptype","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2/:membershiptypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["membershiptypes","v2",":membershiptypeId"],"variable":[{"key":"membershiptypeId","value":"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323","description":"Example: fdc54ea1-9e30-44d4-b4e6-ba41cc51a323"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"495"},{"key":"ETag","value":"W/\"1ef-LQzKtFlMbVQXlt4uInmQg04+LR8\""},{"key":"Date","value":"Mon, 23 Oct 2023 13:57:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323\",\n    \"eventId\": \"501725a3-93df-4eab-ad70-66e70246d179\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Professional Member\",\n    \"createdAt\": \"2023-10-23T13:51:20.481Z\",\n    \"updatedAt\": \"2023-10-23T13:51:20.481Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/501725a3-93df-4eab-ad70-66e70246d179\"\n            }\n        },\n        \"children\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[membershiptypeId][eq]=fdc54ea1-9e30-44d4-b4e6-ba41cc51a323\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"},{"id":"e0fa9951-85e1-4572-9cd2-aa8e002c228e","name":"Read a Membershiptype with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2/:membershiptypeId?include=events,registrations","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["membershiptypes","v2",":membershiptypeId"],"query":[{"key":"include","value":"events,registrations"}],"variable":[{"key":"membershiptypeId","value":"414e501b-70d5-4487-862a-65d9040ed2f9","description":"Example: fdc54ea1-9e30-44d4-b4e6-ba41cc51a323"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1391"},{"key":"ETag","value":"W/\"56f-N31ZLfJKiT0srjDsSH3Y9igMrKo\""},{"key":"Date","value":"Mon, 08 Apr 2024 18:23:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"414e501b-70d5-4487-862a-65d9040ed2f9\",\n    \"eventId\": \"2a6089bc-489b-4e95-993d-8a619acd20b4\",\n    \"producerRecordIdentifier\": \"ouyTx\",\n    \"name\": \"Computers Type\",\n    \"createdAt\": \"2023-07-06T21:17:12.674Z\",\n    \"updatedAt\": \"2023-07-06T21:17:12.674Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"2a6089bc-489b-4e95-993d-8a619acd20b4\",\n                \"shortName\": \"Recycled Games Quarterly Meeting 2025\",\n                \"fullName\": \"Awesome Elegant Wooden Ball Clothing Quarterly Meeting 2025\",\n                \"systemName\": \"recycledgamesquarterlymeeting2025-fef6\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-07-06T21:17:12.672Z\",\n                \"endsAt\": \"2023-07-07T21:17:12.669Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"0x3AD25\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-07-06T21:17:12.672Z\",\n                \"updatedAt\": \"2023-07-06T21:17:12.672Z\",\n                \"organizationId\": \"26cdf115-9255-4a94-af7e-edadc3b9bb44\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/2a6089bc-489b-4e95-993d-8a619acd20b4\"\n            }\n        },\n        \"children\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[membershiptypeId][eq]=414e501b-70d5-4487-862a-65d9040ed2f9\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"8d34968d-ed8e-4a1c-9c6f-63b5a7d0cac9"},{"name":"Update a Membershiptype","id":"fe650a28-431d-4be0-b84e-1c2584b40ccf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Student Member\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2/:membershiptypeId","description":"<p>Modify one or more fields on the single Membershiptype record of the supplied Membershiptype ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["membershiptypes","v2",":membershiptypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"9e1fffaa-9945-42f4-9796-fcc49e4c0fda","description":{"content":"<p>Example: fdc54ea1-9e30-44d4-b4e6-ba41cc51a323</p>\n","type":"text/plain"},"type":"any","value":"<Enter Membershiptype ID here>","key":"membershiptypeId"}]}},"response":[{"id":"c7d9f7f0-6e65-4d3b-b051-14aa56b052fa","name":"Update a Membershiptype","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Student Member\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2/:membershiptypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["membershiptypes","v2",":membershiptypeId"],"variable":[{"key":"membershiptypeId","value":"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323","description":"Example: fdc54ea1-9e30-44d4-b4e6-ba41cc51a323"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"262"},{"key":"ETag","value":"W/\"106-fek2p9U6etb5hXE/G7XS3hynBBM\""},{"key":"Date","value":"Mon, 23 Oct 2023 13:58:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323\",\n    \"eventId\": \"501725a3-93df-4eab-ad70-66e70246d179\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Student Member\",\n    \"createdAt\": \"2023-10-23T13:51:20.481Z\",\n    \"updatedAt\": \"2023-10-23T13:58:50.909Z\"\n}"}],"_postman_id":"fe650a28-431d-4be0-b84e-1c2584b40ccf"},{"name":"Destroy a Membershiptype","id":"3f829afe-d109-4caa-9302-8780607479c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2/:membershiptypeId","description":"<p>Permanently delete the Membershiptype record of the supplied Membershiptype ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["membershiptypes","v2",":membershiptypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"cc07c9b6-acf8-41da-8177-08fd2cdc9dde","description":{"content":"<p>Example: fdc54ea1-9e30-44d4-b4e6-ba41cc51a323</p>\n","type":"text/plain"},"type":"any","value":"<Enter Membershiptype ID here>","key":"membershiptypeId"}]}},"response":[{"id":"e0415e30-82fb-49dd-9973-90a9418eeec5","name":"Destroy a Membershiptype","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/membershiptypes/v2/:membershiptypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["membershiptypes","v2",":membershiptypeId"],"variable":[{"key":"membershiptypeId","value":"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323","description":"Example: fdc54ea1-9e30-44d4-b4e6-ba41cc51a323"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"262"},{"key":"ETag","value":"W/\"106-fek2p9U6etb5hXE/G7XS3hynBBM\""},{"key":"Date","value":"Mon, 23 Oct 2023 14:01:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323\",\n    \"eventId\": \"501725a3-93df-4eab-ad70-66e70246d179\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Student Member\",\n    \"createdAt\": \"2023-10-23T13:51:20.481Z\",\n    \"updatedAt\": \"2023-10-23T13:58:50.909Z\"\n}"}],"_postman_id":"3f829afe-d109-4caa-9302-8780607479c5"}],"id":"a6afbbea-0145-44cf-b234-02c64a759d5a","description":"<p>Membershiptypes are used by organizations that have memberships. These Membershiptypes can be used to determine what access or what pricing a Registration receives at the event.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name of the Membershiptype.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a6afbbea-0145-44cf-b234-02c64a759d5a","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Admissions (v2)","item":[{"name":"List Admissions","id":"dc06ed55-dca5-46ca-8fd3-f627f75c38f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/admissions/v2","description":"<p>Retrieve a collection of Admission records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>type</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>admittedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>admittedAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["admissions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c9fbc8f7-6819-4cd8-b35d-e109283260cc","name":"List Admissions","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/admissions/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"21089"},{"key":"ETag","value":"W/\"5261-WD9zDtHxYP0kuIMGGy0X9jYeZrA\""},{"key":"Date","value":"Thu, 19 Oct 2023 12:53:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"c2ceafe7-2317-4571-9b6f-82c8847f8e9a\",\n            \"producerRecordIdentifier\": \"4d98b48e-5436-4054-8b95-16daea102169\",\n            \"type\": \"Virtual\",\n            \"admittedAt\": \"2023-09-08T14:04:47.573Z\",\n            \"createdAt\": \"2023-09-08T14:04:47.573Z\",\n            \"updatedAt\": \"2023-09-08T14:04:47.573Z\",\n            \"eventId\": \"00a7d5ce-25f8-48d7-8739-0ce07a70f353\",\n            \"registrationId\": \"b729b9eb-157a-43f9-bbbb-14415e8718b9\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/00a7d5ce-25f8-48d7-8739-0ce07a70f353\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/b729b9eb-157a-43f9-bbbb-14415e8718b9\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"b14f101d-627b-49c6-84a0-591f40bffc56\",\n            \"producerRecordIdentifier\": \"dd8f30bc-b62b-4e2e-8c0c-1c3a2df24334\",\n            \"type\": \"In-Person\",\n            \"admittedAt\": \"2023-09-08T14:04:47.868Z\",\n            \"createdAt\": \"2023-09-08T14:04:47.868Z\",\n            \"updatedAt\": \"2023-09-08T14:04:47.868Z\",\n            \"eventId\": \"7c61fcd5-f36c-40f7-abc9-dda3cd0edcf6\",\n            \"registrationId\": \"eaea5235-ba14-46f7-9713-2e7bf45d3fa9\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/7c61fcd5-f36c-40f7-abc9-dda3cd0edcf6\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/eaea5235-ba14-46f7-9713-2e7bf45d3fa9\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/admissions/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"dc06ed55-dca5-46ca-8fd3-f627f75c38f2"},{"name":"Create an Admission","id":"73d6da06-f8e4-489e-81f8-bc2e9052e448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{   \n    \"eventId\": \"00a7d5ce-25f8-48d7-8739-0ce07a70f353\",\n    \"registrationId\": \"b729b9eb-157a-43f9-bbbb-14415e8718b9\",\n    \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962-0242ac120002\",\n    \"type\": \"In-Person\",\n    \"admittedAt\": \"2023-10-23T15:23:07Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/admissions/v2","description":"<p>Create a new Admission record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values: Virtual, In-Person.</td>\n</tr>\n<tr>\n<td>admittedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>Yes</td>\n<td>• Must be a valid date.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["admissions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"b035ff5f-6ce4-4ef2-a15e-9252285a8cbc","name":"Create an Admission","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{   \n    \"eventId\": \"00a7d5ce-25f8-48d7-8739-0ce07a70f353\",\n    \"registrationId\": \"b729b9eb-157a-43f9-bbbb-14415e8718b9\",\n    \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962-0242ac120002\",\n    \"type\": \"In-Person\",\n    \"admittedAt\": \"2023-10-23T15:23:07Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/admissions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"353"},{"key":"ETag","value":"W/\"161-/xAQ9k9qtteyga6ZdtubTW0YWpg\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:05:06 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"09d59e63-c463-4194-a5f8-8fcbd2829e6e\",\n    \"eventId\": \"00a7d5ce-25f8-48d7-8739-0ce07a70f353\",\n    \"registrationId\": \"b729b9eb-157a-43f9-bbbb-14415e8718b9\",\n    \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962-0242ac120002\",\n    \"type\": \"In-Person\",\n    \"admittedAt\": \"2023-10-23T15:23:07.000Z\",\n    \"updatedAt\": \"2023-10-19T13:05:06.337Z\",\n    \"createdAt\": \"2023-10-19T13:05:06.337Z\"\n}"}],"_postman_id":"73d6da06-f8e4-489e-81f8-bc2e9052e448"},{"name":"Read an Admission","id":"97743ad4-32c2-4be8-b799-b059428e4186","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/admissions/v2/:admissionId","description":"<p>Retrieve the single Admission record of the supplied Admission ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["admissions","v2",":admissionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"0807e4f4-8a2a-4baf-b2ba-a5852336cecd","description":{"content":"<p>Example: 09d59e63-c463-4194-a5f8-8fcbd2829e6e</p>\n","type":"text/plain"},"type":"any","value":"<Enter Admission ID here>","key":"admissionId"}]}},"response":[{"id":"e2827108-bfdc-45b6-ad00-9611e9788b6e","name":"Read an Admission","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/admissions/v2/:admissionsId","protocol":"http","host":["localhost"],"port":"5050","path":["admissions","v2",":admissionsId"],"variable":[{"key":"admissionsId","value":"09d59e63-c463-4194-a5f8-8fcbd2829e6e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"552"},{"key":"ETag","value":"W/\"228-YnyMfUNNd8jwXRyzzj3leiPYjZk\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:10:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"09d59e63-c463-4194-a5f8-8fcbd2829e6e\",\n    \"producerRecordIdentifier\": \"f1e2136c-6e7f-11ee-b962-0242ac120002\",\n    \"type\": \"In-Person\",\n    \"admittedAt\": \"2023-10-23T15:23:07.000Z\",\n    \"createdAt\": \"2023-10-19T13:05:06.337Z\",\n    \"updatedAt\": \"2023-10-19T13:05:06.337Z\",\n    \"eventId\": \"00a7d5ce-25f8-48d7-8739-0ce07a70f353\",\n    \"registrationId\": \"b729b9eb-157a-43f9-bbbb-14415e8718b9\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/00a7d5ce-25f8-48d7-8739-0ce07a70f353\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/b729b9eb-157a-43f9-bbbb-14415e8718b9\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"71f8f37d-ae30-498c-8c6e-b0ab84afaba4","name":"Read an Admission with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/admissions/v2/:admissionId?include=events,registrations","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["admissions","v2",":admissionId"],"query":[{"key":"include","value":"events,registrations"}],"variable":[{"key":"admissionId","value":"e0530b1c-ea8b-4076-99ee-9e1813e2177f","description":"Example: 09d59e63-c463-4194-a5f8-8fcbd2829e6e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3049"},{"key":"ETag","value":"W/\"be9-0cV93TPM4XTx2ilEyaX0TLyEZgM\""},{"key":"Date","value":"Mon, 08 Apr 2024 16:23:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e0530b1c-ea8b-4076-99ee-9e1813e2177f\",\n    \"producerRecordIdentifier\": \"QBFD2\",\n    \"type\": \"In-Person\",\n    \"admittedAt\": \"2023-07-06T21:17:12.878Z\",\n    \"createdAt\": \"2023-07-06T21:17:12.878Z\",\n    \"updatedAt\": \"2023-07-06T21:17:12.878Z\",\n    \"eventId\": \"06d008a4-303c-499f-b045-442222d0f9bf\",\n    \"registrationId\": \"f4e9d721-5a39-4daf-ac57-9391d7920148\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"06d008a4-303c-499f-b045-442222d0f9bf\",\n                \"shortName\": \"Luxurious Beauty Tradeshow 2025\",\n                \"fullName\": \"Handcrafted Practical Steel Ball Books Tradeshow 2025\",\n                \"systemName\": \"luxuriousbeautytradeshow2025-46a3\",\n                \"website\": \"https://admired-neurobiologist.info/\",\n                \"description\": \"Devolved mobile initiative enable extensible solutions\",\n                \"startsAt\": \"2023-07-06T21:17:12.863Z\",\n                \"endsAt\": \"2023-07-09T21:17:12.861Z\",\n                \"timezoneOffsetInMinutes\": -637,\n                \"freemanJobIdentifier\": \"5749a7f\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-07-06T21:17:12.863Z\",\n                \"updatedAt\": \"2023-07-06T21:17:12.863Z\",\n                \"organizationId\": \"cdbc12be-7ac9-4312-afee-fc725f7349fb\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [\n            {\n                \"id\": \"f4e9d721-5a39-4daf-ac57-9391d7920148\",\n                \"producerRecordIdentifier\": \"O7dUQ\",\n                \"language\": null,\n                \"status\": null,\n                \"gender\": null,\n                \"pronoun\": null,\n                \"ethnicity\": null,\n                \"badgeIdentifier\": \"qTQtd\",\n                \"firstName\": \"Elna\",\n                \"middleName\": \"Alex\",\n                \"lastName\": \"Prosacco\",\n                \"prefix\": \"Miss\",\n                \"suffix\": \"IV\",\n                \"preferredName\": \"Furman\",\n                \"title\": \"Principal Accounts Orchestrator\",\n                \"email\": \"Merlin.Rosenbaum-Okuneva@gmail.com\",\n                \"emailTwo\": \"Daryl.Swift@hotmail.com\",\n                \"website\": \"https://welcome-zombie.com/\",\n                \"organization\": \"Producer\",\n                \"occupation\": \"Architect\",\n                \"phoneNumber\": \"1-292-691-3804\",\n                \"mobilePhoneNumber\": \"(743) 655-0132\",\n                \"faxNumber\": \"921.542.5778\",\n                \"otherPhoneNumber\": \"281-946-6607 x9112\",\n                \"degree\": \"National Functionality Administrator\",\n                \"credentials\": \"Product Quality Technician\",\n                \"region\": \"Louisiana\",\n                \"dateOfBirth\": \"2023-07-06T21:17:12.875Z\",\n                \"customAttributes\": \"{\\\"foo\\\":8395363945807872,\\\"bar\\\":8222213727584256,\\\"bike\\\":4278733955399680,\\\"a\\\":3633647940796416,\\\"b\\\":2865426289655808,\\\"name\\\":1433875362349056,\\\"prop\\\":\\\"5v`!;c?:CZ\\\"}\",\n                \"isFirstTime\": false,\n                \"isPreviousAttendee\": false,\n                \"registeredAt\": \"2023-07-06T21:17:12.875Z\",\n                \"method\": \"Onsite\",\n                \"isVip\": false,\n                \"ssoIdentifier\": \"LnFKH\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/143.jpg\",\n                \"createdAt\": \"2023-07-06T21:17:12.875Z\",\n                \"updatedAt\": \"2023-07-06T21:17:12.876Z\",\n                \"eventId\": \"e0585bd4-8f50-43dc-b674-ff7f1dce3204\",\n                \"membershiptypeId\": null,\n                \"registrationorderId\": \"65935cae-8c2a-4f3c-8b2e-fef79114650f\",\n                \"registrationtypeId\": \"e818da0d-1680-4df5-9151-272812f5a4ad\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/06d008a4-303c-499f-b045-442222d0f9bf\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/f4e9d721-5a39-4daf-ac57-9391d7920148\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"97743ad4-32c2-4be8-b799-b059428e4186"},{"name":"Update an Admission","id":"d6b75e56-ba30-4bbe-bd5b-4aac826e3f54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\",\n    \"type\": \"Virtual\",\n    \"admittedAt\": \"2023-10-23T15:23:07.000Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/admissions/v2/:admissionId","description":"<p>Modify one or more fields on the single Admission record of the supplied Admission ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: Virtual, In-Person.</td>\n</tr>\n<tr>\n<td>admittedAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["admissions","v2",":admissionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"238601c7-da93-48aa-8893-bcf056fec5aa","description":{"content":"<p>Example: 09d59e63-c463-4194-a5f8-8fcbd2829e6e</p>\n","type":"text/plain"},"type":"any","value":"<Enter Admission ID here>","key":"admissionId"}]}},"response":[{"id":"dd573b5c-5d1e-4016-a495-1123d97df2a7","name":"Update an Admission","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\",\n    \"type\": \"Virtual\",\n    \"admittedAt\": \"2023-10-23T15:23:07.000Z\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/admissions/v2/:admissionsId","protocol":"http","host":["localhost"],"port":"5050","path":["admissions","v2",":admissionsId"],"variable":[{"key":"admissionsId","value":"09d59e63-c463-4194-a5f8-8fcbd2829e6e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"351"},{"key":"ETag","value":"W/\"15f-+QyZ0WvoRxKXFZT7lDk2xC9Brjs\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:17:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"09d59e63-c463-4194-a5f8-8fcbd2829e6e\",\n    \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\",\n    \"type\": \"Virtual\",\n    \"admittedAt\": \"2023-10-23T15:23:07.000Z\",\n    \"createdAt\": \"2023-10-19T13:05:06.337Z\",\n    \"updatedAt\": \"2023-10-19T13:17:38.918Z\",\n    \"eventId\": \"00a7d5ce-25f8-48d7-8739-0ce07a70f353\",\n    \"registrationId\": \"b729b9eb-157a-43f9-bbbb-14415e8718b9\"\n}"}],"_postman_id":"d6b75e56-ba30-4bbe-bd5b-4aac826e3f54"},{"name":"Destroy an Admission","id":"5bb3187f-5f23-458d-bda0-e9717fbcf44c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/admissions/v2/:admissionId","description":"<p>Permanently delete the Admission record of the supplied Admission ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["admissions","v2",":admissionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"15b41211-4e74-4771-a42a-87267fce6939","description":{"content":"<p>Example: c2ceafe7-2317-4571-9b6f-82c8847f8e9a</p>\n","type":"text/plain"},"type":"any","value":"<Enter Admission ID here>","key":"admissionId"}]}},"response":[{"id":"109074f6-cf4c-4a3b-bcf0-fdec13790c18","name":"Destroy an Admission","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/admissions/v2/:admissionsId","protocol":"http","host":["localhost"],"port":"5050","path":["admissions","v2",":admissionsId"],"variable":[{"key":"admissionsId","value":"c2ceafe7-2317-4571-9b6f-82c8847f8e9a"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"322"},{"key":"ETag","value":"W/\"142-yi0DdOb21aTclhJg2dxioY+31LQ\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:21:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c2ceafe7-2317-4571-9b6f-82c8847f8e9a\",\n    \"producerRecordIdentifier\": \"BtcRL\",\n    \"type\": \"In-Person\",\n    \"admittedAt\": \"2023-09-08T14:04:47.573Z\",\n    \"createdAt\": \"2023-09-08T14:04:47.573Z\",\n    \"updatedAt\": \"2023-09-08T14:04:47.573Z\",\n    \"eventId\": \"00a7d5ce-25f8-48d7-8739-0ce07a70f353\",\n    \"registrationId\": \"b729b9eb-157a-43f9-bbbb-14415e8718b9\"\n}"}],"_postman_id":"5bb3187f-5f23-458d-bda0-e9717fbcf44c"}],"id":"13dd75f9-0088-4b5b-b52f-ffa0b619479c","description":"<p>Admissions are the recorded dates/times of a registrant being admitted to the event, be it in person or virtually. Admissions can be used for verification, COA, CE purposes.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registration.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>The type of admission recorded for the registrant.</td>\n</tr>\n<tr>\n<td>admittedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time at which the registrant was admitted.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"13dd75f9-0088-4b5b-b52f-ffa0b619479c","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registrationaddresses (v2)","item":[{"name":"List Registrationaddresses","id":"28bd5d55-07b9-4ad4-b205-443c54e8b718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationaddresses/v2","description":"<p>Retrieve a collection of Registrationaddress records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>country</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>type</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>line Two</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>type</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationaddresses","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"15a1d91b-49ba-4190-805e-0d14ce2ab39f","name":"List Registrationaddresses","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/registrationaddresses/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"29254"},{"key":"ETag","value":"W/\"7246-Q7yxvlhFHT/MdR2PK4NOttuhr8Y\""},{"key":"Date","value":"Mon, 16 Oct 2023 12:41:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"12e329ab-05cf-4b04-9f7c-b8cb57682a90\",\n            \"producerRecordIdentifier\": \"69a29adf-7f33-419b-bc4e-10a850bdff0c\",\n            \"country\": \"United States\",\n            \"type\": \"Business\",\n            \"isPrimary\": true,\n            \"lineOne\": \"486 Hanson Park\",\n            \"lineTwo\": \"PO Box 4873\",\n            \"cityLocality\": \"Monticello\",\n            \"stateProvince\": \"Minnesota\",\n            \"countySubregion\": \"Bedfordshire\",\n            \"postalCode\": \"70374\",\n            \"createdAt\": \"2023-09-08T14:04:41.891Z\",\n            \"updatedAt\": \"2023-09-08T14:04:41.891Z\",\n            \"eventId\": \"f8fc6a1b-0472-4881-a2e0-66e9c4aee3c6\",\n            \"registrationId\": \"82455991-b215-484f-9a8e-817d4de2c88b\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/f8fc6a1b-0472-4881-a2e0-66e9c4aee3c6\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/82455991-b215-484f-9a8e-817d4de2c88b\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"4c997ecc-c3aa-41b3-8545-f54eb8cad6d2\",\n            \"producerRecordIdentifier\": \"dbe6c0e1-20ad-41ba-af24-d81f28e1d9b8\",\n            \"country\": \"United States\",\n            \"type\": \"Home\",\n            \"isPrimary\": true,\n            \"lineOne\": \"52823 Murazik Mission\",\n            \"lineTwo\": \"Suite 299\",\n            \"cityLocality\": \"North Earnestine\",\n            \"stateProvince\": \"Kentucky\",\n            \"countySubregion\": \"Borders\",\n            \"postalCode\": \"92879\",\n            \"createdAt\": \"2023-09-08T14:04:42.287Z\",\n            \"updatedAt\": \"2023-09-08T14:04:42.287Z\",\n            \"eventId\": \"001c1362-4d85-4f6f-8016-f68fa33a2df7\",\n            \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/001c1362-4d85-4f6f-8016-f68fa33a2df7\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/5b681e70-e8de-4462-b858-3e936a2aeea3\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n        \n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/registrationaddresses/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"28bd5d55-07b9-4ad4-b205-443c54e8b718"},{"name":"Create a Registrationaddress","id":"431e119b-6009-456f-8261-3ffb77895bb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"producerRecordIdentifier\": null,\n    \"country\": \"US\",\n    \"type\": \"Business\",\n    \"isPrimary\": true,\n    \"lineOne\": \"Reanna Causeway\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationaddresses/v2","description":"<p>Create a new Registrationaddress record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\">ISO 3166-1 Alpha-2 Code</a>.</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.  <br />• Default value: true</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 2 chacters and a maximum of 14 characters.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationaddresses","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"bcee21a0-1fb7-46d8-b081-91486493cd8c","name":"Create a Registrationaddress","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"producerRecordIdentifier\": null,\n    \"country\": \"US\",\n    \"type\": \"Business\",\n    \"isPrimary\": true,\n    \"lineOne\": \"Reanna Causeway\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuzion.freeman.com:443/registrationaddresses/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"590"},{"key":"ETag","value":"W/\"24e-i4J+fUzuahGQDH28vOSbplviqms\""},{"key":"Date","value":"Wed, 18 Oct 2023 12:34:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"800abccf-ed34-4371-8864-8d1714c964da\",\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"producerRecordIdentifier\": null,\n    \"country\": \"US\",\n    \"type\": \"Business\",\n    \"isPrimary\": true,\n    \"lineOne\": \"Reanna Causeway\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"updatedAt\": \"2023-10-18T12:34:03.043Z\",\n    \"createdAt\": \"2023-10-18T12:34:03.043Z\"\n}"}],"_postman_id":"431e119b-6009-456f-8261-3ffb77895bb4"},{"name":"Read a Registrationaddress","id":"1aca8bb7-fc77-47bf-8b79-b436b78cb163","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationaddresses/v2/:registrationaddressId","description":"<p>Retrieve the single Registrationaddress record of the supplied Registrationaddress ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationaddresses","v2",":registrationaddressId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"37081757-23c5-4787-8acb-0d5c0c1e41c2","description":{"content":"<p>Example: 800abccf-ed34-4371-8864-8d1714c964da</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationaddress ID here>","key":"registrationaddressId"}]}},"response":[{"id":"cac00e24-68a3-4165-a3e7-872e01bc56d6","name":"Read a Registrationaddress","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/registrationaddresses/v2/:registrationaddressesId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationaddresses","v2",":registrationaddressesId"],"variable":[{"key":"registrationaddressesId","value":"800abccf-ed34-4371-8864-8d1714c964da"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"789"},{"key":"ETag","value":"W/\"315-eg4r4YwQ3jQdxLV5fqfzwOwS7ic\""},{"key":"Date","value":"Wed, 18 Oct 2023 12:35:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"800abccf-ed34-4371-8864-8d1714c964da\",\n    \"producerRecordIdentifier\": null,\n    \"country\": \"US\",\n    \"type\": \"Business\",\n    \"isPrimary\": true,\n    \"lineOne\": \"Reanna Causeway\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"createdAt\": \"2023-10-18T12:34:03.043Z\",\n    \"updatedAt\": \"2023-10-18T12:34:03.043Z\",\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/5638e9ca-ea8c-47f4-9f89-caf9cad36514\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/5b681e70-e8de-4462-b858-3e936a2aeea3\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"378ea467-d35a-4df1-982c-1f0b3780b471","name":"Read a Registrationaddress with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationaddresses/v2/:registrationaddressId?include=events,registrations","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationaddresses","v2",":registrationaddressId"],"query":[{"key":"include","value":"events,registrations"}],"variable":[{"key":"registrationaddressId","value":"a4479863-afe6-4ddc-b4d5-51fb1c042264","description":"Example: 800abccf-ed34-4371-8864-8d1714c964da"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3160"},{"key":"ETag","value":"W/\"c58-mbCPMSwxxWWkuaT24tYvmesv7e8\""},{"key":"Date","value":"Mon, 08 Apr 2024 16:27:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a4479863-afe6-4ddc-b4d5-51fb1c042264\",\n    \"producerRecordIdentifier\": \"79cdbb21-db42-4d7a-99ae-469b822d4305\",\n    \"country\": \"SN\",\n    \"type\": \"Home\",\n    \"isPrimary\": false,\n    \"lineOne\": \"7180 Nikolas Springs\",\n    \"lineTwo\": \"Suite 489\",\n    \"cityLocality\": \"Pflugerville\",\n    \"stateProvince\": \"Hawaii\",\n    \"countySubregion\": \"Cambridgeshire\",\n    \"postalCode\": \"37738\",\n    \"createdAt\": \"2023-12-05T02:14:41.693Z\",\n    \"updatedAt\": \"2023-12-05T02:14:41.693Z\",\n    \"eventId\": \"532c9551-3db8-416e-9b19-0ee47c59f404\",\n    \"registrationId\": \"e92b6819-773d-4251-8be7-c54ba22bb0db\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"532c9551-3db8-416e-9b19-0ee47c59f404\",\n                \"shortName\": \"Awesome Garden Show 2024\",\n                \"fullName\": \"Practical Electronic Fresh Salad Electronics Show 2024\",\n                \"systemName\": \"awesomegardenshow2024-c27f\",\n                \"website\": null,\n                \"description\": \"Multi-layered discrete toolset synergize plug-and-play channels\",\n                \"startsAt\": \"2023-12-05T02:14:41.573Z\",\n                \"endsAt\": \"2023-12-07T02:14:41.563Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"aabc55f\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-12-05T02:14:41.573Z\",\n                \"updatedAt\": \"2023-12-05T02:14:41.573Z\",\n                \"organizationId\": \"83ddf919-dd6e-40d1-b071-7084852be33a\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [\n            {\n                \"id\": \"e92b6819-773d-4251-8be7-c54ba22bb0db\",\n                \"producerRecordIdentifier\": \"bLEoB\",\n                \"language\": \"Swati\",\n                \"status\": \"Balance Due\",\n                \"gender\": \"None\",\n                \"pronoun\": \"She/ Her/ Hers\",\n                \"ethnicity\": \"Hispanic or Latino\",\n                \"badgeIdentifier\": \"dxZB3\",\n                \"firstName\": \"Romaine\",\n                \"middleName\": \"Harper\",\n                \"lastName\": \"Monahan\",\n                \"prefix\": \"Ms.\",\n                \"suffix\": \"IV\",\n                \"preferredName\": \"Jaron\",\n                \"title\": \"Central Response Strategist\",\n                \"email\": \"Twila92@gmail.com\",\n                \"emailTwo\": \"Zachariah_Fisher@hotmail.com\",\n                \"website\": \"https://plastic-dial.biz\",\n                \"organization\": \"Officer\",\n                \"occupation\": \"Assistant\",\n                \"phoneNumber\": \"1-646-215-1039 x52533\",\n                \"mobilePhoneNumber\": \"(936) 624-4464 x987\",\n                \"faxNumber\": \"(509) 665-4586\",\n                \"otherPhoneNumber\": \"749.957.2990 x44900\",\n                \"degree\": \"Investor Communications Architect\",\n                \"credentials\": \"Global Quality Developer\",\n                \"region\": \"West Virginia\",\n                \"dateOfBirth\": \"2023-12-05T02:14:41.676Z\",\n                \"customAttributes\": \"{\\\"registration_payment_status\\\":\\\"Pending\\\",\\\"pending_payment\\\":100}\",\n                \"isFirstTime\": false,\n                \"isPreviousAttendee\": true,\n                \"registeredAt\": \"2023-12-05T02:14:41.676Z\",\n                \"method\": \"Onsite\",\n                \"isVip\": false,\n                \"ssoIdentifier\": \"3zPCF\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/310.jpg\",\n                \"createdAt\": \"2023-12-05T02:14:41.676Z\",\n                \"updatedAt\": \"2023-12-05T02:14:41.676Z\",\n                \"eventId\": \"e1a244d1-548d-4297-ae34-a090d24b90f4\",\n                \"membershiptypeId\": \"895afefe-7473-4dcd-a0a5-a4493a83abf7\",\n                \"registrationorderId\": \"3098286f-bdc1-471b-b512-b1c4d7ac1e98\",\n                \"registrationtypeId\": \"7c16358b-b668-4989-acde-e7e7cb597bc5\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/532c9551-3db8-416e-9b19-0ee47c59f404\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/e92b6819-773d-4251-8be7-c54ba22bb0db\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"1aca8bb7-fc77-47bf-8b79-b436b78cb163"},{"name":"Update a Registrationaddress","id":"4d413347-4b5b-4b8d-bda6-66d171414cbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"country\": \"US\",\n    \"type\": \"Work\",\n    \"lineOne\": \"4700 Keele St\",\n    \"lineTwo\":\"Apt 1099\",\n    \"cityLocality\":\"North York\",\n    \"stateProvince\":\"MN\",\n    \"postalCode\": \"142806\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationaddresses/v2/:registrationaddressId","description":"<p>Modify one or more fields on the single Registrationaddress record of the supplied Registrationaddress ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\">ISO 3166-1 Alpha-2 Code</a>.</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 2 chacters and a maximum of 14 characters.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationaddresses","v2",":registrationaddressId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"40f9b7d9-3423-475e-a9a5-5becf3a9714a","description":{"content":"<p>Example: 800abccf-ed34-4371-8864-8d1714c964da</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationaddress ID here>","key":"registrationaddressId"}]}},"response":[{"id":"efd15c51-27b8-4684-9c89-e32007041e25","name":"Update a Registrationaddress","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"country\": \"US\",\n    \"type\": \"Work\",\n    \"lineOne\": \"4700 Keele St\",\n    \"lineTwo\":\"Apt 1099\",\n    \"cityLocality\":\"North York\",\n    \"stateProvince\":\"MN\",\n    \"postalCode\": \"142806\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/registrationaddresses/v2/:registrationaddressesId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationaddresses","v2",":registrationaddressesId"],"variable":[{"key":"registrationaddressesId","value":"800abccf-ed34-4371-8864-8d1714c964da"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"557"},{"key":"ETag","value":"W/\"22d-oIdTq3rFoSnjws/hgU9dxoRKQ14\""},{"key":"Date","value":"Wed, 18 Oct 2023 12:37:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"800abccf-ed34-4371-8864-8d1714c964da\",\n    \"producerRecordIdentifier\": null,\n    \"country\": \"US\",\n    \"type\": \"Work\",\n    \"isPrimary\": true,\n    \"lineOne\": \"4700 Keele St\",\n    \"lineTwo\": \"Apt 1099\",\n    \"cityLocality\": \"North York\",\n    \"stateProvince\": \"MN\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"createdAt\": \"2023-10-18T12:34:03.043Z\",\n    \"updatedAt\": \"2023-10-18T12:37:22.123Z\",\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\"\n}"}],"_postman_id":"4d413347-4b5b-4b8d-bda6-66d171414cbf"},{"name":"Destroy a Registrationaddress","id":"0f13d51f-bcf0-4d27-b7a3-3ec88469a4be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationaddresses/v2/:registrationaddressId","description":"<p>Permanently delete the Registrationaddress record of the supplied Registrationaddress ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationaddresses","v2",":registrationaddressId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"d5c34a06-eee9-474e-a210-244773501974","description":{"content":"<p>Example: 4382cf58-abb5-458b-a9a1-00f8b1b11bde</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationaddress ID here>","key":"registrationaddressId"}]}},"response":[{"id":"316646ad-c0a5-4d1d-8979-80ea8fe10d15","name":"Destroy a Registrationaddress","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/registrationaddresses/v2/:registrationaddressesId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationaddresses","v2",":registrationaddressesId"],"variable":[{"key":"registrationaddressesId","value":"4382cf58-abb5-458b-a9a1-00f8b1b11bde"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"508"},{"key":"ETag","value":"W/\"1fc-0bjMoSVK7NpasifCA8Rx0iwCU6E\""},{"key":"Date","value":"Mon, 16 Oct 2023 13:26:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4382cf58-abb5-458b-a9a1-00f8b1b11bde\",\n    \"producerRecordIdentifier\": null,\n    \"country\": \"US\",\n    \"type\": null,\n    \"isPrimary\": false,\n    \"lineOne\": \"Kozey Throughway\",\n    \"lineTwo\": \"47030 Goyette Roads\",\n    \"cityLocality\": \"Hauckstad\",\n    \"stateProvince\": \"Torphy, Christiansen and Hoeger\",\n    \"countySubregion\": null,\n    \"postalCode\": null,\n    \"createdAt\": \"2023-10-16T13:12:56.315Z\",\n    \"updatedAt\": \"2023-10-16T13:23:28.328Z\",\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\"\n}"}],"_postman_id":"0f13d51f-bcf0-4d27-b7a3-3ec88469a4be"}],"id":"9dd1ed0d-8778-40fc-881d-9e7e05d25b83","description":"<p>Registration addresses are the physical addresses of the registrant, a registrant can have multiple addresses.</p>\n<h4 id=\"response-body\"><strong>Response Body</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registration.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>ISO 3166-1 Alpha-2 Code, two letter code string</td>\n<td>The country of the address being supplied.</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>String</td>\n<td>The first line in a street address and belongs below the \"Recipient\" line. Line one should contain the building or house number, predirectionals, street name/PO Box, postdirectionals, and street suffix.</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>String</td>\n<td>The city or locality of the address being supplied.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td>Denotes that the address provided is the primary address of the registrant.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>The type, if multiple addresses are provided. Typically Home, Office.</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>String</td>\n<td>Line two field allows users to add secondary address information, such as numbers for apartments, suites, PO Boxes, and other address designators.</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>String</td>\n<td>The state or province of the address being supplied.</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>String</td>\n<td>The county or sub region of the address being supplied.</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String</td>\n<td>Postal code or zip code of the address being supplied.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9dd1ed0d-8778-40fc-881d-9e7e05d25b83","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Consents (v2)","item":[{"name":"List Consents","id":"bc5ac3d0-c5ba-4214-9b1e-1593e09bafd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/consents/v2","description":"<p>Retrieve a collection of Consent records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consents","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"1fbe6e64-971a-49da-a16b-0c0023e6e4fc","name":"List Consents","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/consents/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"44417"},{"key":"ETag","value":"W/\"ad81-WrSOtozI1OUAUbr0Muy4L/sa+4k\""},{"key":"Date","value":"Mon, 16 Oct 2023 15:15:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"5f822b21-768e-404e-b6df-753715a963ab\",\n            \"eventId\": \"9d58fa19-fc86-4d54-91fa-0f20bb6e8728\",\n            \"name\": \"Networking Opt-In\",\n            \"createdAt\": \"2023-09-08T14:04:50.882Z\",\n            \"updatedAt\": \"2023-09-08T14:04:50.882Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/9d58fa19-fc86-4d54-91fa-0f20bb6e8728\"\n                    }\n                },\n                \"children\": {\n                    \"consent-registration\": {\n                        \"href\": \"/consent-registration/v2?filter[consentId][eq]=5f822b21-768e-404e-b6df-753715a963ab\"\n                    }\n                },\n                \"siblings\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[consentId][eq]=5f822b21-768e-404e-b6df-753715a963ab\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8fb3c5d0-1f29-4542-b8df-bac742bb16b8\",\n            \"eventId\": \"c4aefbcb-3dd3-4667-b1e0-2df4fff1ebd8\",\n            \"name\": \"Marketing Opt-In\",\n            \"createdAt\": \"2023-09-08T14:04:50.946Z\",\n            \"updatedAt\": \"2023-09-08T14:04:50.946Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/c4aefbcb-3dd3-4667-b1e0-2df4fff1ebd8\"\n                    }\n                },\n                \"children\": {\n                    \"consent-registration\": {\n                        \"href\": \"/consent-registration/v2?filter[consentId][eq]=8fb3c5d0-1f29-4542-b8df-bac742bb16b8\"\n                    }\n                },\n                \"siblings\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[consentId][eq]=8fb3c5d0-1f29-4542-b8df-bac742bb16b8\"\n                    }\n                }\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/consents/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"bc5ac3d0-c5ba-4214-9b1e-1593e09bafd9"},{"name":"Create a Consent","id":"c613abba-300b-4a54-9965-359fa11ffb0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"a70ea603-7a9d-40bb-a228-9c1ba50964d7\",\n    \"name\": \"Lead Retrieval Opt-Out\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/consents/v2","description":"<p>Create a new Consent record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consents","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"9257c4fe-a546-49c3-af30-90050594b8a5","name":"Create a Consent","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"a70ea603-7a9d-40bb-a228-9c1ba50964d7\",\n    \"name\": \"Lead Retrieval Opt-Out\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/consents/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"204"},{"key":"ETag","value":"W/\"cc-XF7nxFaoy3Au9ahMTFRX/zj/jAc\""},{"key":"Date","value":"Wed, 18 Oct 2023 12:01:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6c066726-2083-463a-981a-98ffca3c7808\",\n    \"eventId\": \"a70ea603-7a9d-40bb-a228-9c1ba50964d7\",\n    \"name\": \"Lead Retrieval Opt-Out\",\n    \"updatedAt\": \"2023-10-18T12:01:11.274Z\",\n    \"createdAt\": \"2023-10-18T12:01:11.274Z\"\n}"}],"_postman_id":"c613abba-300b-4a54-9965-359fa11ffb0b"},{"name":"Read a Consent","id":"4e0117cb-3beb-40cb-a7b4-dd903d67a958","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/consents/v2/:consentId","description":"<p>Retrieve the single Consent record of the supplied Consent ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td>consent-registration</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consents","v2",":consentId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"a1c15ace-d214-43b1-aa26-ab5042ce05af","description":{"content":"<p>Example: 6c066726-2083-463a-981a-98ffca3c7808</p>\n","type":"text/plain"},"type":"any","value":"<Enter Consent ID here>","key":"consentId"}]}},"response":[{"id":"5e773109-4f53-4c03-abf7-3778d0437b2f","name":"Read a Consent","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/consents/v2/:consentId","protocol":"http","host":["localhost"],"port":"5050","path":["consents","v2",":consentId"],"variable":[{"key":"consentId","value":"6c066726-2083-463a-981a-98ffca3c7808"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"542"},{"key":"ETag","value":"W/\"21e-j4JW6mcbMp5UtdeQOAHMpqxmofc\""},{"key":"Date","value":"Wed, 18 Oct 2023 12:02:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6c066726-2083-463a-981a-98ffca3c7808\",\n    \"eventId\": \"a70ea603-7a9d-40bb-a228-9c1ba50964d7\",\n    \"name\": \"Lead Retrieval Opt-Out\",\n    \"createdAt\": \"2023-10-18T12:01:11.274Z\",\n    \"updatedAt\": \"2023-10-18T12:01:11.274Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/a70ea603-7a9d-40bb-a228-9c1ba50964d7\"\n            }\n        },\n        \"children\": {\n            \"consent-registration\": {\n                \"href\": \"/consent-registration/v2?filter[consentId][eq]=6c066726-2083-463a-981a-98ffca3c7808\"\n            }\n        },\n        \"siblings\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[consentId][eq]=6c066726-2083-463a-981a-98ffca3c7808\"\n            }\n        }\n    }\n}"},{"id":"106ae91a-9378-4d36-898e-241bb2c8f9ef","name":"Read a Consent with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/consents/v2/:consentId?include=events,registrations,consent-registration","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["consents","v2",":consentId"],"query":[{"key":"include","value":"events,registrations,consent-registration"}],"variable":[{"key":"consentId","value":"feba6049-405a-4855-909d-e72ff5c27f31","description":"Example: 6c066726-2083-463a-981a-98ffca3c7808"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1666"},{"key":"ETag","value":"W/\"682-qVQI3xYQpybCX8K1gYMRIRldzqE\""},{"key":"Date","value":"Mon, 08 Apr 2024 16:31:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"feba6049-405a-4855-909d-e72ff5c27f31\",\n    \"eventId\": \"0d352acc-45df-4c7b-819d-324518a27630\",\n    \"name\": \"Solutions eligendi ut a\",\n    \"createdAt\": \"2023-06-14 14:43:29.168 +00:00\",\n    \"updatedAt\": \"2023-06-14 14:43:29.168 +00:00\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"0d352acc-45df-4c7b-819d-324518a27630\",\n                \"shortName\": \"Generic Outdoors Summit 2023\",\n                \"fullName\": \"Oriental Small Fresh Computer Shoes Summit 2023\",\n                \"systemName\": \"genericoutdoorssummit2023-9063\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-06-14T14:43:29.165Z\",\n                \"endsAt\": \"2023-06-16T14:43:29.162Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"0x07452Ad5E\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-06-14T14:43:29.165Z\",\n                \"updatedAt\": \"2023-06-14T14:43:29.165Z\",\n                \"organizationId\": \"2e5a8c59-290e-41ff-b56b-a29ff90641f1\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"consent-registration\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/0d352acc-45df-4c7b-819d-324518a27630\"\n            }\n        },\n        \"children\": {\n            \"consent-registration\": {\n                \"href\": \"/consent-registration/v2?filter[consentId][eq]=feba6049-405a-4855-909d-e72ff5c27f31\"\n            }\n        },\n        \"siblings\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[consentId][eq]=feba6049-405a-4855-909d-e72ff5c27f31\"\n            }\n        }\n    }\n}"}],"_postman_id":"4e0117cb-3beb-40cb-a7b4-dd903d67a958"},{"name":"Update a Consent","id":"5d4e696e-1c7c-4d21-af19-2c3474ee8f85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Lead Retrieval Opt-Out\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/consents/v2/:consentId","description":"<p>Modify one or more fields on the single Consent record of the supplied Consent ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consents","v2",":consentId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"14a7da34-bed9-42aa-ac8e-d19d0034bc27","description":{"content":"<p>Example: 6c066726-2083-463a-981a-98ffca3c7808</p>\n","type":"text/plain"},"type":"any","value":"<Enter Consent ID here>","key":"consentId"}]}},"response":[{"id":"e9b0b94b-7342-46ea-8dbf-dc0b04e4d0a4","name":"Update a Consent","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Lead Retrieval Opt-Out\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/consents/v2/:consentId","protocol":"http","host":["localhost"],"port":"5050","path":["consents","v2",":consentId"],"variable":[{"key":"consentId","value":"6c066726-2083-463a-981a-98ffca3c7808"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"212"},{"key":"ETag","value":"W/\"d4-Wa2XaYzn3N1k+2r3E53JmCJlCGQ\""},{"key":"Date","value":"Wed, 18 Oct 2023 12:04:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6c066726-2083-463a-981a-98ffca3c7808\",\n    \"eventId\": \"a70ea603-7a9d-40bb-a228-9c1ba50964d7\",\n    \"name\": \"Lead Retrieval Opt-Out\",\n    \"createdAt\": \"2023-10-18T12:01:11.274Z\",\n    \"updatedAt\": \"2023-10-18T12:04:43.318Z\"\n}"}],"_postman_id":"5d4e696e-1c7c-4d21-af19-2c3474ee8f85"},{"name":"Destroy a Consent","id":"1a891dae-aba9-48d9-8b0f-6e94f45e3801","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/consents/v2/:consentId","description":"<p>Permanently delete the Consent record of the supplied Consent ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consents","v2",":consentId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"e9b979cf-e40c-481c-8e51-bb4bde75d550","description":{"content":"<p>Example: e9eebadf-853f-42c9-a630-794e31037a76</p>\n","type":"text/plain"},"type":"any","value":"<Enter Consent ID here>","key":"consentId"}]}},"response":[{"id":"eb87f994-6405-4bc5-8818-1ca58821e47f","name":"Destroy a Consent","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/consents/v2/:consentId","protocol":"http","host":["localhost"],"port":"5050","path":["consents","v2",":consentId"],"variable":[{"key":"consentId","value":"e9eebadf-853f-42c9-a630-794e31037a76"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"201"},{"key":"ETag","value":"W/\"c9-rhvU8htGNLPtS7cnKIPC53WL9us\""},{"key":"Date","value":"Mon, 16 Oct 2023 15:22:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e9eebadf-853f-42c9-a630-794e31037a76\",\n    \"eventId\": \"a70ea603-7a9d-40bb-a228-9c1ba50964d7\",\n    \"name\": \"Analytics Opt-In\",\n    \"createdAt\": \"2023-10-16T15:18:58.019Z\",\n    \"updatedAt\": \"2023-10-16T15:21:51.762Z\"\n}"}],"_postman_id":"1a891dae-aba9-48d9-8b0f-6e94f45e3801"}],"id":"e751cda5-d3ad-42d8-90d3-707e658ff4bc","description":"<p>Consents represent opt in, the affirmative action a user takes to allow the processing of their personal data. Consents are typically used for networking, marketing, lead retrieval, etc.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name of the consent, what the user has opted in to.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e751cda5-d3ad-42d8-90d3-707e658ff4bc","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Consent-Registration (v2)","item":[{"name":"List Consent-Registration relationships","id":"af67a9d7-d73d-4d5d-a30d-2658d201f0f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2","description":"<p>Retrieve a collection of Consent-Registration relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>consentId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>consentedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consent-registration","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"d4e0e52a-0f0c-4dad-9514-2cbaf4b6c7b8","name":"List Consent-Registration relationships","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/consent-registration/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"47843"},{"key":"ETag","value":"W/\"bae3-Am/9y4GJi8pv2hAS2w5zQ2PBS6s\""},{"key":"Date","value":"Fri, 27 Oct 2023 17:19:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"47fd9425-2485-4c34-8906-d358d4056c1f\",\n            \"consentId\": \"e2e75fe3-d002-41e0-908b-c7429d0bbd7b\",\n            \"registrationId\": \"23bc4c41-f6e1-4233-843e-b8c0f85ae4d1\",\n            \"consentedAt\": \"2023-07-11T18:57:53.918Z\",\n            \"createdAt\": \"2023-07-11T18:57:53.918Z\",\n            \"updatedAt\": \"2023-07-11T18:57:53.918Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"consent\": {\n                        \"href\": \"/consents/v2/e2e75fe3-d002-41e0-908b-c7429d0bbd7b\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/23bc4c41-f6e1-4233-843e-b8c0f85ae4d1\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"5f218e28-7232-476b-ae2b-fdbf0777d4d1\",\n            \"consentId\": \"23b7c825-2a94-4dd6-81a3-d43ab7b5f873\",\n            \"registrationId\": \"77eca8b3-9a82-4e47-b4a2-6009efaeb0e3\",\n            \"consentedAt\": \"2023-07-11T18:57:53.972Z\",\n            \"createdAt\": \"2023-07-11T18:57:53.972Z\",\n            \"updatedAt\": \"2023-07-11T18:57:53.972Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"consent\": {\n                        \"href\": \"/consents/v2/23b7c825-2a94-4dd6-81a3-d43ab7b5f873\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/77eca8b3-9a82-4e47-b4a2-6009efaeb0e3\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 2,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 160,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/consent-registration/v2?page=1\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"/consent-registration/v2?page=2\"\n            },\n            \"last\": {\n                \"href\": \"/consent-registration/v2?page=2\"\n            }\n        }\n    }\n}"}],"_postman_id":"af67a9d7-d73d-4d5d-a30d-2658d201f0f9"},{"name":"Create a Consent-Registration relationship","id":"41349c33-f693-4134-b039-a123880632be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"registrationId\": \"8187e828-9fb1-43af-9892-0e1188050e4a\",\n    \"consentId\": \"75ecb5b4-b702-4d57-9420-45ad05f2e7bb\",\n    \"consentedAt\": \"2023-06-21T14:48:01.259Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2","description":"<p>Create a new Consent-Registration relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>consentId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Consent.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>consentedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>Yes</td>\n<td>• Must be a valid date.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>consentId</code> and <code>registrationId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consent-registration","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"d4059f0c-4cdf-4bbc-b67f-5059b409b948","name":"Create a Consent-Registration relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"registrationId\": \"03192e25-210a-4e5a-98b2-66a905370fe0\",\n    \"consentId\": \"75ecb5b4-b702-4d57-9420-45ad05f2e7bb\",\n    \"consentedAt\": \"2023-06-21T14:48:01.259Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"271"},{"key":"ETag","value":"W/\"10f-eQOteQntbPA0pr5ZAVToHAkjK6w\""},{"key":"Date","value":"Fri, 27 Oct 2023 17:20:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a1d4e64f-37db-42cf-ba2b-8216f15ef1f9\",\n    \"registrationId\": \"03192e25-210a-4e5a-98b2-66a905370fe0\",\n    \"consentId\": \"75ecb5b4-b702-4d57-9420-45ad05f2e7bb\",\n    \"consentedAt\": \"2023-06-21T14:48:01.259Z\",\n    \"updatedAt\": \"2023-10-27T17:20:49.053Z\",\n    \"createdAt\": \"2023-10-27T17:20:49.053Z\"\n}"}],"_postman_id":"41349c33-f693-4134-b039-a123880632be"},{"name":"Read a Consent-Registration relationship","id":"8f212a5a-0cca-41a6-8ff3-7d0cc19c2925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2/:id","description":"<p>Retrieve the single Consent-Registration relationship record of the supplied Consent-Registration ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>consents</td>\n<td>registrations</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consent-registration","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"d47188cb-cc1c-46df-b6f1-7bb80ee6c2ed","description":{"content":"<p>Example: 28dd7d46-4279-4bfc-9534-b1312685ea85</p>\n","type":"text/plain"},"type":"any","value":"<Enter Consent-Registration ID here>","key":"id"}]}},"response":[{"id":"5e2c2d6b-8f6c-4ab0-9dc6-d66535e5acbd","name":"Read a Consent-Registration relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["consent-registration","v2",":id"],"variable":[{"key":"id","value":"<Enter Consent-Registration ID here>","description":"Example: 28dd7d46-4279-4bfc-9534-b1312685ea85"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"474"},{"key":"ETag","value":"W/\"1da-1ZznKjC35SWQfgWAh01siDrV4FU\""},{"key":"Date","value":"Fri, 27 Oct 2023 17:21:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a1d4e64f-37db-42cf-ba2b-8216f15ef1f9\",\n    \"consentId\": \"75ecb5b4-b702-4d57-9420-45ad05f2e7bb\",\n    \"registrationId\": \"03192e25-210a-4e5a-98b2-66a905370fe0\",\n    \"consentedAt\": \"2023-06-21T14:48:01.259Z\",\n    \"createdAt\": \"2023-10-27T17:20:49.053Z\",\n    \"updatedAt\": \"2023-10-27T17:20:49.053Z\",\n    \"_links\": {\n        \"parents\": {\n            \"consent\": {\n                \"href\": \"/consents/v2/75ecb5b4-b702-4d57-9420-45ad05f2e7bb\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/03192e25-210a-4e5a-98b2-66a905370fe0\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"034b5939-1ad6-4fd8-b113-78783eb2cc3f","name":"Read a Consent-Registration relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2/:id?include=consents,registrations","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["consent-registration","v2",":id"],"query":[{"key":"include","value":"consents,registrations"}],"variable":[{"key":"id","value":"7d734ab4-a336-4f55-8c23-796128078c5b","description":"Example: 28dd7d46-4279-4bfc-9534-b1312685ea85"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2704"},{"key":"ETag","value":"W/\"a90-NCyEnE9fc21yVcOg6M6U7UD4SxQ\""},{"key":"Date","value":"Mon, 08 Apr 2024 16:33:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7d734ab4-a336-4f55-8c23-796128078c5b\",\n    \"consentId\": \"36981377-cc3e-48a8-a585-0141d7573ed5\",\n    \"registrationId\": \"61a2d54c-8099-4ac0-9f5d-3923d30e2959\",\n    \"consentedAt\": \"2023-07-13T16:18:52.972Z\",\n    \"createdAt\": \"2023-07-13T16:18:52.972Z\",\n    \"updatedAt\": \"2023-07-13T16:18:52.972Z\",\n    \"consents\": {\n        \"collection\": [\n            {\n                \"id\": \"36981377-cc3e-48a8-a585-0141d7573ed5\",\n                \"eventId\": \"32a3f0f3-6935-46aa-b8b5-0bf017274daa\",\n                \"name\": \"Accountability ipsam asperiores sint\",\n                \"createdAt\": \"2023-07-13 16:18:52.921 +00:00\",\n                \"updatedAt\": \"2023-07-13 16:18:52.921 +00:00\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [\n            {\n                \"id\": \"61a2d54c-8099-4ac0-9f5d-3923d30e2959\",\n                \"producerRecordIdentifier\": \"R1bfp\",\n                \"language\": \"Telugu\",\n                \"status\": \"Balance Due\",\n                \"gender\": \"Prefer not to answer\",\n                \"pronoun\": \"Ze (or Zie)/ Zir/ Zirs\",\n                \"ethnicity\": null,\n                \"badgeIdentifier\": \"hZEkp\",\n                \"firstName\": \"Montana\",\n                \"middleName\": \"Avery\",\n                \"lastName\": \"Halvorson\",\n                \"prefix\": \"Miss\",\n                \"suffix\": \"DVM\",\n                \"preferredName\": \"Dorris\",\n                \"title\": \"Regional Optimization Liaison\",\n                \"email\": \"Santa.Smitham38@hotmail.com\",\n                \"emailTwo\": \"Darrell10@gmail.com\",\n                \"website\": \"https://soupy-address.info\",\n                \"organization\": \"Manager\",\n                \"occupation\": \"Manager\",\n                \"phoneNumber\": \"752-729-4222 x80293\",\n                \"mobilePhoneNumber\": \"819.875.9806 x09345\",\n                \"faxNumber\": \"1-878-450-4750 x320\",\n                \"otherPhoneNumber\": \"462.307.4625 x49393\",\n                \"degree\": \"Forward Metrics Administrator\",\n                \"credentials\": \"Investor Accounts Architect\",\n                \"region\": \"Vermont\",\n                \"dateOfBirth\": \"2023-07-13T16:18:52.968Z\",\n                \"customAttributes\": \"{\\\"foo\\\":1157794468200448,\\\"bar\\\":\\\"]5P\\\\\\\":^KXhX\\\",\\\"bike\\\":\\\"bvKqk\\\\\\\\&Lk!\\\",\\\"a\\\":\\\"DZ:8aW\\\\\\\\,u!\\\",\\\"b\\\":\\\"`g=zL=_cb]\\\",\\\"name\\\":5521785453805568,\\\"prop\\\":2827141374803968}\",\n                \"isFirstTime\": false,\n                \"isPreviousAttendee\": false,\n                \"registeredAt\": \"2023-07-13T16:18:52.968Z\",\n                \"method\": \"Online\",\n                \"isVip\": false,\n                \"ssoIdentifier\": \"aPBki\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/129.jpg\",\n                \"createdAt\": \"2023-07-13T16:18:52.968Z\",\n                \"updatedAt\": \"2023-07-13T16:18:52.968Z\",\n                \"eventId\": \"8ea20fda-73f5-4639-8dec-7a2848f4b4b7\",\n                \"membershiptypeId\": \"b3b675de-ef66-480e-9cae-8dc90a49d8f1\",\n                \"registrationorderId\": \"01492964-827b-4652-8fc0-3dc04578b6a1\",\n                \"registrationtypeId\": \"98964209-afc9-4d21-81e4-5868ed839749\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"consent\": {\n                \"href\": \"/consents/v2/36981377-cc3e-48a8-a585-0141d7573ed5\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/61a2d54c-8099-4ac0-9f5d-3923d30e2959\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"8f212a5a-0cca-41a6-8ff3-7d0cc19c2925"},{"name":"Destroy a Consent-Registration relationship","id":"5d436d29-3a41-4c0e-889b-02e9bc5d05dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2/:id","description":"<p>Permanently delete the Consent-Registration relationship record of the supplied Consent-Registration ID. Destroying a relationship record will not destroy the supplied Registration or the supplied Consent, it will instead cause the supplied Registration and Consent to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["consent-registration","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"773104f8-7d7e-4b50-a735-c91eb0623daf","description":{"content":"<p>Example: 28dd7d46-4279-4bfc-9534-b1312685ea85</p>\n","type":"text/plain"},"type":"any","value":"<Enter Consent-Registration ID here>","key":"id"}]}},"response":[{"id":"f812013b-051f-4f5d-8012-b5080eedc670","name":"Destroy a Consent-Registration relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/consent-registration/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["consent-registration","v2",":id"],"variable":[{"key":"id","value":"<Enter Consent-Registration ID here>","description":"Example: 28dd7d46-4279-4bfc-9534-b1312685ea85"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"271"},{"key":"ETag","value":"W/\"10f-F9xo7yOr7UJpEfBqLGShIVDb5Fk\""},{"key":"Date","value":"Fri, 27 Oct 2023 17:21:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a1d4e64f-37db-42cf-ba2b-8216f15ef1f9\",\n    \"consentId\": \"75ecb5b4-b702-4d57-9420-45ad05f2e7bb\",\n    \"registrationId\": \"03192e25-210a-4e5a-98b2-66a905370fe0\",\n    \"consentedAt\": \"2023-06-21T14:48:01.259Z\",\n    \"createdAt\": \"2023-10-27T17:20:49.053Z\",\n    \"updatedAt\": \"2023-10-27T17:20:49.053Z\"\n}"}],"_postman_id":"5d436d29-3a41-4c0e-889b-02e9bc5d05dd"}],"id":"a21df75c-3c49-4bc1-89cf-e8755068316f","description":"<p>The Consent-Registration entity provides a way to interact with the relationships between Consent and Registration. A single Registration can have many Consents. Examples of consents are marketing, LRS, networking etc.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>consentId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Consent record.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registration record.</td>\n</tr>\n<tr>\n<td>consentedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the registrant consented.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a21df75c-3c49-4bc1-89cf-e8755068316f","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Questions (v2)","item":[{"name":"List Questions","id":"8cfc5b7e-f46d-4257-8a6c-eb5e1d69a1fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/questions/v2","description":"<p>Retrieve a collection of Question records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>value</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["questions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"62b7c914-3655-4620-9e7f-40f3b0699a68","name":"List Questions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/questions/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["questions","v2"],"query":[{"key":"filter[id][in][]","value":"fdc54ea1-9e30-44d4-b4e6-ba41cc51a323","type":"text","description":"filter questions where id matches one of the values provided.  Pass more filter queries like that to pass more items to the array. See example.","disabled":true},{"key":"filter[eventId][eq]","value":"501725a3-93df-4eab-ad70-66e70246d179","type":"text","description":"get membershiptypes with eventId \"501725a3-93df-4eab-ad70-66e70246d179\".","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"1","type":"text","description":"filter questions where producerRecordIdentifier equals to 1.","disabled":true},{"key":"filter[value][endsWith]","value":"positive","type":"text","description":"filter questions where value ends with \"positive\".","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","type":"text","description":"filter questions that have been created on or after 2022-04-01 using greater than or equal operator.","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","description":"filter questions that have been updated before 2022-04-12 using less than operator","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","description":"sort questions by created on time in ascending order.","disabled":true},{"key":"page","value":"1","type":"text","description":"get the first page of questions records using page query param","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"47142"},{"key":"ETag","value":"W/\"b826-aGsJcyG4uhIJkVIupEkTYoB2ZUk\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:13:17 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"84369520-dc01-4cb0-b974-1f7b8d939c3c\",\n            \"eventId\": \"0132d86f-6d44-447e-958d-1e1bcba3a34c\",\n            \"producerRecordIdentifier\": \"1\",\n            \"value\": \"Into which industry group does your company fall?\",\n            \"createdAt\": \"2023-09-12T16:34:28.630Z\",\n            \"updatedAt\": \"2023-09-12T16:34:28.630Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/0132d86f-6d44-447e-958d-1e1bcba3a34c\"\n                    }\n                },\n                \"children\": {\n                    \"answeroptions\": {\n                        \"href\": \"/answeroptions/v2?filter[questionId][eq]=84369520-dc01-4cb0-b974-1f7b8d939c3c\"\n                    }\n                },\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"d99137e4-7622-4278-82da-7f10e6723ff8\",\n            \"eventId\": \"88ce9d65-029c-4eb7-acd0-1f9c7e06841b\",\n            \"producerRecordIdentifier\": \"2\",\n            \"value\": \"Is this your first time attending the event?\",\n            \"createdAt\": \"2023-09-12T16:34:28.638Z\",\n            \"updatedAt\": \"2023-09-12T16:34:28.638Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/88ce9d65-029c-4eb7-acd0-1f9c7e06841b\"\n                    }\n                },\n                \"children\": {\n                    \"answeroptions\": {\n                        \"href\": \"/answeroptions/v2?filter[questionId][eq]=d99137e4-7622-4278-82da-7f10e6723ff8\"\n                    }\n                },\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/questions/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"8cfc5b7e-f46d-4257-8a6c-eb5e1d69a1fc"},{"name":"Create a Question","id":"5beb19f9-9ccb-44f7-9b53-3544262b2d03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"0132d86f-6d44-447e-958d-1e1bcba3a34c\",\n    \"producerRecordIdentifier\": \"1\",\n    \"value\": \"Into which industry group does your company fall?\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/questions/v2","description":"<p>Create a new Question record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>value</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["questions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"ed51655b-65d5-453f-b95e-55832cbed5d6","name":"Create a Question","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"0132d86f-6d44-447e-958d-1e1bcba3a34c\",\n    \"producerRecordIdentifier\": \"1\",\n    \"value\": \"Into which industry group does your company fall?\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/questions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"263"},{"key":"ETag","value":"W/\"107-zgX4NmTk+qGMBwvcBOSMcRXf1a0\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:18:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"84369520-dc01-4cb0-b974-1f7b8d939c3c\",\n    \"eventId\": \"0132d86f-6d44-447e-958d-1e1bcba3a34c\",\n    \"producerRecordIdentifier\": \"1\",\n    \"value\": \"Into which industry group does your company fall?\",\n    \"updatedAt\": \"2023-10-23T17:18:59.411Z\",\n    \"createdAt\": \"2023-10-23T17:18:59.411Z\"\n}"}],"_postman_id":"5beb19f9-9ccb-44f7-9b53-3544262b2d03"},{"name":"Read a Question","id":"37638d52-68a7-48c6-8949-f080f37f525d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/questions/v2/:questionId","description":"<p>Retrieve the single Question record of the supplied Question ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>answeroptions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["questions","v2",":questionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"6a8b2c8c-8148-403b-81ef-6751750fdc10","description":{"content":"<p>Example: 84369520-dc01-4cb0-b974-1f7b8d939c3c</p>\n","type":"text/plain"},"type":"any","value":"<Enter Question ID here>","key":"questionId"}]}},"response":[{"id":"9499bbfc-47d6-4e11-99a6-1638d4639ef6","name":"Read a Question","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/questions/v2/:questionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["questions","v2",":questionId"],"variable":[{"key":"questionId","value":"84369520-dc01-4cb0-b974-1f7b8d939c3c","description":"Example: 84369520-dc01-4cb0-b974-1f7b8d939c3c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"485"},{"key":"ETag","value":"W/\"1e5-YCz/G/EHLBP6lmV/FPyaCgJsOws\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:20:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"84369520-dc01-4cb0-b974-1f7b8d939c3c\",\n    \"eventId\": \"0132d86f-6d44-447e-958d-1e1bcba3a34c\",\n    \"producerRecordIdentifier\": \"1\",\n    \"value\": \"Into which industry group does your company fall?\",\n    \"createdAt\": \"2023-10-23T17:18:59.411Z\",\n    \"updatedAt\": \"2023-10-23T17:18:59.411Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/0132d86f-6d44-447e-958d-1e1bcba3a34c\"\n            }\n        },\n        \"children\": {\n            \"answeroptions\": {\n                \"href\": \"/answeroptions/v2?filter[questionId][eq]=84369520-dc01-4cb0-b974-1f7b8d939c3c\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"},{"id":"fef2cc0d-4bbf-4558-980a-760f6d206829","name":"Read a Question with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/questions/v2/:questionId?include=events,answeroptions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["questions","v2",":questionId"],"query":[{"key":"include","value":"events,answeroptions"}],"variable":[{"key":"questionId","value":"88ade2c2-4781-47ce-a8aa-1653c71a03c6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1411"},{"key":"ETag","value":"W/\"583-Zs4i3g/Epc9fftrqTDypYS/scR8\""},{"key":"Date","value":"Mon, 08 Apr 2024 16:47:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"88ade2c2-4781-47ce-a8aa-1653c71a03c6\",\n    \"eventId\": \"d5ee93a3-be8f-41d1-acea-2bc4b4fb3d5f\",\n    \"producerRecordIdentifier\": \"Z9Mjr\",\n    \"value\": \"ozDRn voluptates ex blanditiis\",\n    \"createdAt\": \"2023-06-08T16:58:53.510Z\",\n    \"updatedAt\": \"2023-06-08T16:58:53.510Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"d5ee93a3-be8f-41d1-acea-2bc4b4fb3d5f\",\n                \"shortName\": \"Intelligent Outdoors Review Meeting 2026\",\n                \"fullName\": \"Sleek Incredible Granite Chicken Clothing Review Meeting 2026\",\n                \"systemName\": \"intelligentoutdoorsreviewmeeting2026-e0e7\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-06-08T16:58:53.508Z\",\n                \"endsAt\": \"2023-06-09T16:58:53.505Z\",\n                \"timezoneOffsetInMinutes\": 31,\n                \"freemanJobIdentifier\": \"7d86ce2\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-06-08T16:58:53.508Z\",\n                \"updatedAt\": \"2023-06-08T16:58:53.508Z\",\n                \"organizationId\": \"1d1109a0-cb92-46b5-98c1-650a9e7918b6\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"answeroptions\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/d5ee93a3-be8f-41d1-acea-2bc4b4fb3d5f\"\n            }\n        },\n        \"children\": {\n            \"answeroptions\": {\n                \"href\": \"/answeroptions/v2?filter[questionId][eq]=88ade2c2-4781-47ce-a8aa-1653c71a03c6\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"37638d52-68a7-48c6-8949-f080f37f525d"},{"name":"Update a Question","id":"2415a4d0-4c85-4234-a5c9-9785b3f32460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"value\": \"Is this your first time attending the event?\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/questions/v2/:questionId","description":"<p>Modify one or more fields on the single Question record of the supplied Question ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>value</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["questions","v2",":questionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"bba0eb2b-ad7d-49fe-b12f-f13791c17838","description":{"content":"<p>Example: 84369520-dc01-4cb0-b974-1f7b8d939c3c</p>\n","type":"text/plain"},"type":"any","value":"<Enter Question ID here>","key":"questionId"}]}},"response":[{"id":"3136d395-deed-4a4e-93ae-5a098961ba43","name":"Update a Question","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"value\": \"Is this your first time attending the event?\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/questions/v2/:questionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["questions","v2",":questionId"],"variable":[{"key":"questionId","value":"84369520-dc01-4cb0-b974-1f7b8d939c3c","description":"Example: 84369520-dc01-4cb0-b974-1f7b8d939c3c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"258"},{"key":"ETag","value":"W/\"102-XOX9ZB8ionUap4huaNl+wKcu2EU\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:22:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"84369520-dc01-4cb0-b974-1f7b8d939c3c\",\n    \"eventId\": \"0132d86f-6d44-447e-958d-1e1bcba3a34c\",\n    \"producerRecordIdentifier\": \"1\",\n    \"value\": \"Is this your first time attending the event?\",\n    \"createdAt\": \"2023-10-23T17:18:59.411Z\",\n    \"updatedAt\": \"2023-10-23T17:22:07.069Z\"\n}"}],"_postman_id":"2415a4d0-4c85-4234-a5c9-9785b3f32460"},{"name":"Destroy a Question","id":"f59050b6-b2e5-4abc-aced-be25c746b60c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/questions/v2/:questionId","description":"<p>Permanently delete the Question record of the supplied Question ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["questions","v2",":questionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"4a9f83bb-b951-4fb4-8835-fb6ccd62675e","description":{"content":"<p>Example: 84369520-dc01-4cb0-b974-1f7b8d939c3c</p>\n","type":"text/plain"},"type":"any","value":"<Enter Question ID here>","key":"questionId"}]}},"response":[{"id":"415c4811-c48b-43b3-adfb-c4f9eda30425","name":"Destroy a Question","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/questions/v2/:questionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["questions","v2",":questionId"],"variable":[{"key":"questionId","value":"84369520-dc01-4cb0-b974-1f7b8d939c3c","description":"Example: 84369520-dc01-4cb0-b974-1f7b8d939c3c"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"258"},{"key":"ETag","value":"W/\"102-XOX9ZB8ionUap4huaNl+wKcu2EU\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:23:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"84369520-dc01-4cb0-b974-1f7b8d939c3c\",\n    \"eventId\": \"0132d86f-6d44-447e-958d-1e1bcba3a34c\",\n    \"producerRecordIdentifier\": \"1\",\n    \"value\": \"Is this your first time attending the event?\",\n    \"createdAt\": \"2023-10-23T17:18:59.411Z\",\n    \"updatedAt\": \"2023-10-23T17:22:07.069Z\"\n}"}],"_postman_id":"f59050b6-b2e5-4abc-aced-be25c746b60c"}],"id":"677d4a1c-7060-4cd1-b294-9c1a4a089246","description":"<p>Questions is the listing of any questions asked of the registrants during the registration process, these typically refer to demographic questions asked of registrants that are used to categorized registrants or provide information to Exhibitors about the registrants.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td>The spelled out question being asked of the registrant.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"677d4a1c-7060-4cd1-b294-9c1a4a089246","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Answeroptions (v2)","item":[{"name":"List Answeroptions","id":"da56bba2-aaec-4fa8-9bed-5ea89c4fcb0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/answeroptions/v2","description":"<p>Retrieve a collection of Answeroption records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>questionId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>value</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroptions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"006f6d55-5ed6-4cef-8b3d-bac49f84521e","name":"List Answeroptions","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/answeroptions/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"73272"},{"key":"ETag","value":"W/\"11e38-Yc+qK+aN3ujvdeZt612v+fX3DO8\""},{"key":"Date","value":"Wed, 18 Oct 2023 15:20:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"2a3052fd-09f9-4593-832d-d450c0bf67ee\",\n            \"eventId\": \"c703cf6e-d1bc-46dd-8deb-4ecbd5bd5cc1\",\n            \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n            \"producerRecordIdentifier\": \"1A\",\n            \"value\": \"Clothing\",\n            \"createdAt\": \"2023-06-13T15:36:22.321Z\",\n            \"updatedAt\": \"2023-06-13T15:36:22.321Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/c703cf6e-d1bc-46dd-8deb-4ecbd5bd5cc1\"\n                    },\n                    \"question\": {\n                        \"href\": \"/questions/v2/ed0c9477-6815-4aee-a49a-9dc8016f2b96\"\n                    }\n                },\n                \"children\": {\n                    \"answeroption-registration\": {\n                        \"href\": \"/answeroption-registration/v2?filter[answeroptionId][eq]=2a3052fd-09f9-4593-832d-d450c0bf67ee\"\n                    }\n                },\n                \"siblings\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[answeroptionId][eq]=2a3052fd-09f9-4593-832d-d450c0bf67ee\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3d8c86c5-69c4-4d06-8c78-8d2ab57a755b\",\n            \"eventId\": \"eab5160f-76e6-4aaf-9467-5690573ecb76\",\n            \"questionId\": \"c7e4a991-0f8b-4f52-9224-a650c6597053\",\n            \"producerRecordIdentifier\": \"1B\",\n            \"value\": \"Gifts\",\n            \"createdAt\": \"2023-06-13T15:36:22.370Z\",\n            \"updatedAt\": \"2023-06-13T15:36:22.370Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/eab5160f-76e6-4aaf-9467-5690573ecb76\"\n                    },\n                    \"question\": {\n                        \"href\": \"/questions/v2/c7e4a991-0f8b-4f52-9224-a650c6597053\"\n                    }\n                },\n                \"children\": {\n                    \"answeroption-registration\": {\n                        \"href\": \"/answeroption-registration/v2?filter[answeroptionId][eq]=3d8c86c5-69c4-4d06-8c78-8d2ab57a755b\"\n                    }\n                },\n                \"siblings\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[answeroptionId][eq]=3d8c86c5-69c4-4d06-8c78-8d2ab57a755b\"\n                    }\n                }\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 5,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 410,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/answeroptions/v2?page=1\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"/answeroptions/v2?page=2\"\n            },\n            \"last\": {\n                \"href\": \"/answeroptions/v2?page=5\"\n            }\n        }\n    }\n}"}],"_postman_id":"da56bba2-aaec-4fa8-9bed-5ea89c4fcb0d"},{"name":"Create an Answeroption","id":"6f64d593-6667-4334-9ae2-8ea74266e1ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"0136fb9b-4128-4332-8a53-e70915dea338\",\n    \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n    \"producerRecordIdentifier\": \"fMTEst1lJN\",\n    \"value\": \"Test Create Answeroption\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/answeroptions/v2","description":"<p>Create a new Answeroption record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>questionId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Question.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code>, <code>questionId</code> and <code>value</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroptions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"32bfa653-d2f8-42a5-8b76-86b9117b9d56","name":"Create an Answeroption","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"0136fb9b-4128-4332-8a53-e70915dea338\",\n    \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n    \"producerRecordIdentifier\": \"fMTEst1lJN\",\n    \"value\": \"Test Create Answeroption\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/answeroptions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"299"},{"key":"ETag","value":"W/\"12b-1+RO3D7wmueUAUCAxjrR8Ge3Qhs\""},{"key":"Date","value":"Wed, 18 Oct 2023 15:44:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"40c71323-6750-4ba6-b21e-51ce402075df\",\n    \"eventId\": \"0136fb9b-4128-4332-8a53-e70915dea338\",\n    \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n    \"producerRecordIdentifier\": \"1C\",\n    \"value\": \"Software\",\n    \"updatedAt\": \"2023-10-18T15:44:02.402Z\",\n    \"createdAt\": \"2023-10-18T15:44:02.402Z\"\n}"}],"_postman_id":"6f64d593-6667-4334-9ae2-8ea74266e1ce"},{"name":"Read an Answeroption","id":"d0c91d97-d33a-47f0-9258-958661d4bd88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/answeroptions/v2/:answeroptionId","description":"<p>Retrieve the single Answeroption record of the supplied Answeroption ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td>questions</td>\n</tr>\n<tr>\n<td>answeroption-registration</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroptions","v2",":answeroptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"23f48e6d-ab6a-4360-ae82-0100192266d8","description":{"content":"<p>Example: e7e5e017-8d2a-4368-b554-3c39c6b37416</p>\n","type":"text/plain"},"type":"any","value":"<Enter Answeroption ID here> ","key":"answeroptionId"}]}},"response":[{"id":"2d3c4ff5-8670-4cf8-b4ec-7009c1e28ea1","name":"Read an Answeroption","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/answeroptions/v2/:answeroptionId","protocol":"http","host":["localhost"],"port":"5050","path":["answeroptions","v2",":answeroptionId"],"variable":[{"key":"answeroptionId","value":"e7e5e017-8d2a-4368-b554-3c39c6b37416","description":"Example: e7e5e017-8d2a-4368-b554-3c39c6b37416"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"730"},{"key":"ETag","value":"W/\"2da-0oUE5ipq76H6dDA1z4d18YGLScI\""},{"key":"Date","value":"Wed, 18 Oct 2023 16:27:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e7e5e017-8d2a-4368-b554-3c39c6b37416\",\n    \"eventId\": \"0136fb9b-4128-4332-8a53-e70915dea338\",\n    \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n    \"producerRecordIdentifier\": \"1C\",\n    \"value\": \"Software\",\n    \"createdAt\": \"2023-10-18T16:25:33.071Z\",\n    \"updatedAt\": \"2023-10-18T16:25:33.071Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/0136fb9b-4128-4332-8a53-e70915dea338\"\n            },\n            \"question\": {\n                \"href\": \"/questions/v2/ed0c9477-6815-4aee-a49a-9dc8016f2b96\"\n            }\n        },\n        \"children\": {\n            \"answeroption-registration\": {\n                \"href\": \"/answeroption-registration/v2?filter[answeroptionId][eq]=e7e5e017-8d2a-4368-b554-3c39c6b37416\"\n            }\n        },\n        \"siblings\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[answeroptionId][eq]=e7e5e017-8d2a-4368-b554-3c39c6b37416\"\n            }\n        }\n    }\n}"},{"id":"9c20994b-fdbb-46d7-864c-bb5f13a7da45","name":"Read an Answeroption with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/answeroptions/v2/:answeroptionId?include=events,registrations,questions,answeroption-registration","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["answeroptions","v2",":answeroptionId"],"query":[{"key":"include","value":"events,registrations,questions,answeroption-registration"}],"variable":[{"key":"answeroptionId","value":"2a3052fd-09f9-4593-832d-d450c0bf67ee","description":"Example: e7e5e017-8d2a-4368-b554-3c39c6b37416"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2317"},{"key":"ETag","value":"W/\"90d-aU5ikTo8eBhQ8ilLJ48mDKbz1oE\""},{"key":"Date","value":"Mon, 08 Apr 2024 16:54:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2a3052fd-09f9-4593-832d-d450c0bf67ee\",\n    \"eventId\": \"c703cf6e-d1bc-46dd-8deb-4ecbd5bd5cc1\",\n    \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n    \"producerRecordIdentifier\": \"fMlJN\",\n    \"value\": \"xO7KG blanditiis ratione explicabo\",\n    \"createdAt\": \"2023-06-13T15:36:22.321Z\",\n    \"updatedAt\": \"2023-06-13T15:36:22.321Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"c703cf6e-d1bc-46dd-8deb-4ecbd5bd5cc1\",\n                \"shortName\": \"Ergonomic Books Tradeshow 2023\",\n                \"fullName\": \"Electronic Unbranded Granite Ball Automotive Tradeshow 2023\",\n                \"systemName\": \"ergonomicbookstradeshow2023-f2ae\",\n                \"website\": \"https://itchy-supporter.name\",\n                \"description\": null,\n                \"startsAt\": \"2023-06-13T15:36:22.307Z\",\n                \"endsAt\": \"2023-06-16T15:36:22.304Z\",\n                \"timezoneOffsetInMinutes\": -692,\n                \"freemanJobIdentifier\": null,\n                \"isSandbox\": true,\n                \"createdAt\": \"2023-06-13T15:36:22.307Z\",\n                \"updatedAt\": \"2023-06-13T15:36:22.307Z\",\n                \"organizationId\": \"3093f17c-e24b-4390-b048-9fb843ddf031\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"questions\": {\n        \"collection\": [\n            {\n                \"id\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n                \"eventId\": \"9e13553c-62f5-4aac-bfe4-a1c68d796e8f\",\n                \"producerRecordIdentifier\": \"4IwrD\",\n                \"value\": \"xWg3F dicta hic unde\",\n                \"createdAt\": \"2023-06-13T15:36:22.318Z\",\n                \"updatedAt\": \"2023-06-13T15:36:22.318Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"answeroption-registration\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/c703cf6e-d1bc-46dd-8deb-4ecbd5bd5cc1\"\n            },\n            \"question\": {\n                \"href\": \"/questions/v2/ed0c9477-6815-4aee-a49a-9dc8016f2b96\"\n            }\n        },\n        \"children\": {\n            \"answeroption-registration\": {\n                \"href\": \"/answeroption-registration/v2?filter[answeroptionId][eq]=2a3052fd-09f9-4593-832d-d450c0bf67ee\"\n            }\n        },\n        \"siblings\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[answeroptionId][eq]=2a3052fd-09f9-4593-832d-d450c0bf67ee\"\n            }\n        }\n    }\n}"}],"_postman_id":"d0c91d97-d33a-47f0-9258-958661d4bd88"},{"name":"Update an Answeroption","id":"e895707d-2374-425a-b7ed-4d02dfbb98f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"fMTEst3lJN\",\n    \"value\": \"Test Update Answeroption\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/answeroptions/v2/:answeroptionId","description":"<p>Modify one or more fields on the single Answeroption record of the supplied Answeroption ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>questionId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Question.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> , <code>questionId</code> and <code>value</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroptions","v2",":answeroptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"88b60f09-76fb-49c4-aa0c-45cde7197a74","description":{"content":"<p>Example: 303c3624-d31c-4474-a002-dde510187ed3</p>\n","type":"text/plain"},"type":"any","value":"<Enter Answeroption ID here>","key":"answeroptionId"}]}},"response":[{"id":"9e9223c3-de7e-4767-b846-876b9ea2edce","name":"Update an Answeroption","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"fMTEst3lJN\",\n    \"value\": \"Test Update Answeroption\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/answeroptions/v2/:answeroptionId","protocol":"http","host":["localhost"],"port":"5050","path":["answeroptions","v2",":answeroptionId"],"variable":[{"key":"answeroptionId","value":"40c71323-6750-4ba6-b21e-51ce402075df"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"299"},{"key":"ETag","value":"W/\"12b-BKvug3qoURodP3T1Rjxv2m+km68\""},{"key":"Date","value":"Wed, 18 Oct 2023 15:57:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"40c71323-6750-4ba6-b21e-51ce402075df\",\n    \"eventId\": \"0136fb9b-4128-4332-8a53-e70915dea338\",\n    \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n    \"producerRecordIdentifier\": \"1D\",\n    \"value\": \"Other\",\n    \"createdAt\": \"2023-10-18T15:44:02.402Z\",\n    \"updatedAt\": \"2023-10-18T15:57:14.740Z\"\n}"}],"_postman_id":"e895707d-2374-425a-b7ed-4d02dfbb98f7"},{"name":"Destroy an Answeroption","id":"16d5e798-acb3-4b48-9ccf-a9e927aa51cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/answeroptions/v2/:answeroptionId","description":"<p>Permanently delete the Answeroption record of the supplied Answeroption ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroptions","v2",":answeroptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"2c9acd10-9e9c-4e8a-a63d-b74ebf324d28","description":{"content":"<p>Example: 303c3624-d31c-4474-a002-dde510187ed3</p>\n","type":"text/plain"},"type":"any","value":"<Enter Answeroption ID here>","key":"answeroptionId"}]}},"response":[{"id":"73fd0ae7-3c92-4e01-a823-0fdf1f3a4979","name":"Destroy an Answeroption","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/answeroptions/v2/:answeroptionId","protocol":"http","host":["localhost"],"port":"5050","path":["answeroptions","v2",":answeroptionId"],"variable":[{"key":"answeroptionId","value":"40c71323-6750-4ba6-b21e-51ce402075df","description":"Example: 303c3624-d31c-4474-a002-dde510187ed3"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"299"},{"key":"ETag","value":"W/\"12b-BKvug3qoURodP3T1Rjxv2m+km68\""},{"key":"Date","value":"Wed, 18 Oct 2023 16:21:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"40c71323-6750-4ba6-b21e-51ce402075df\",\n    \"eventId\": \"0136fb9b-4128-4332-8a53-e70915dea338\",\n    \"questionId\": \"ed0c9477-6815-4aee-a49a-9dc8016f2b96\",\n    \"producerRecordIdentifier\": \"1D\",\n    \"value\": \"Other\",\n    \"createdAt\": \"2023-10-18T15:44:02.402Z\",\n    \"updatedAt\": \"2023-10-18T15:57:14.740Z\"\n}"}],"_postman_id":"16d5e798-acb3-4b48-9ccf-a9e927aa51cb"}],"id":"f7a92b10-21e0-4e15-a1b9-c71f94d3b210","description":"<p>Answeroptions are the lists of available options to each question that is asked of the registrants during the registration process.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>questionId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Question.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td>The answer option for the associated question.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f7a92b10-21e0-4e15-a1b9-c71f94d3b210","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Answeroption-Registration (v2)","item":[{"name":"List Answeroption-Registration relationships","id":"1a90f2f6-1964-47e4-a49a-58d09866ec3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/answeroption-registration/v2","description":"<p>Retrieve a collection of Answeroption-Registration relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>answeroptionId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>value</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroption-registration","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"2c37b8d9-8a16-42ee-8545-09a181cf5437","name":"List Answeroption_Registration relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/answeroption-registration/v2","protocol":"http","host":["localhost"],"port":"5050","path":["answeroption-registration","v2"],"query":[{"key":"filter[id][in][]","value":"ae466c1f-a009-407f-8a6d-0b2aeee7b6a7","type":"text","description":"filter answeroption-registration where id matches one of the values provided.  Pass more filter queries like that to pass more items to the array. See example.","disabled":true},{"key":"filter[answeroptionId][eq]","value":"b2006391-71a1-46bc-b147-68b0be0df74d","type":"text","description":"get answeroption-registration with answeroptionId \"b2006391-71a1-46bc-b147-68b0be0df74d\".","disabled":true},{"key":"filter[registrationId][eq]","value":"44108c61-e8f9-409c-ae8e-0c366a6aec21","type":"text","description":"filter answeroption-registration records where registrationId equals to \"44108c61-e8f9-409c-ae8e-0c366a6aec21\".","disabled":true},{"key":"filter[value][endsWith]","value":"Yes","type":"text","description":"filter answeroption-registration where value ends with \"account\".","disabled":true},{"key":"filter[createdAt][gt]","value":"2022-01-01","type":"text","description":"filter answeroption-registration that has been created after 2022-01-01 using greater than operator.","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","description":"filter answeroption-registration that has been updated before 2022-04-12 using less than operator.","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","description":"sort answeroption-registration by created on time in ascending order.","disabled":true},{"key":"page","value":"1","type":"text","description":"get the first page of answeroption-registration records using page query param","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"19774"},{"key":"ETag","value":"W/\"4d3e-tRjoHP23oHINsK2LDFa95H9ueRc\""},{"key":"Date","value":"Mon, 16 Oct 2023 15:33:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"999346ee-05bc-4ac3-8c59-b4e5efcb4cb4\",\n            \"answeroptionId\": \"861735d5-8188-4f13-87e4-696dd4a54863\",\n            \"registrationId\": \"2e0cce3e-21df-4c6a-9157-5d349118f459\",\n            \"value\": \"Yes\",\n            \"createdAt\": \"2023-09-12T16:34:31.063Z\",\n            \"updatedAt\": \"2023-09-12T16:34:31.063Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"answeroption\": {\n                        \"href\": \"/answeroptions/v2/861735d5-8188-4f13-87e4-696dd4a54863\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/2e0cce3e-21df-4c6a-9157-5d349118f459\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"7e18f945-bb3a-43e3-a9a2-365693be452f\",\n            \"answeroptionId\": \"df58bb71-5d6d-4117-bd87-2006bebbab12\",\n            \"registrationId\": \"b6129d7c-7e73-45aa-b936-71fe0e047519\",\n            \"value\": \"No\",\n            \"createdAt\": \"2023-09-12T16:34:31.136Z\",\n            \"updatedAt\": \"2023-09-12T16:34:31.136Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"answeroption\": {\n                        \"href\": \"/answeroptions/v2/df58bb71-5d6d-4117-bd87-2006bebbab12\"\n                    },\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/b6129d7c-7e73-45aa-b936-71fe0e047519\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/answeroption-registration/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"1a90f2f6-1964-47e4-a49a-58d09866ec3f"},{"name":"Create an Answeroption-Registration relationship","id":"af1d0188-1b2e-4817-85b0-04413f2766b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"answeroptionId\": \"861735d5-8188-4f13-87e4-696dd4a54863\",\n    \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n    \"value\":\"Agree\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/answeroption-registration/v2","description":"<p>Create a new Answeroption-Registration relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>answeroptionId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Answeroption.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>answeroptionId</code> and <code>registrationId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroption-registration","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"a641658e-775f-4c2c-9a70-5722b8f0c755","name":"Create a Answeroption-Registration relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"answeroptionId\": \"861735d5-8188-4f13-87e4-696dd4a54863\",\n    \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n    \"value\": \"Agree\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/answeroption-registration/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"264"},{"key":"ETag","value":"W/\"108-8+klREr8tQ526Y8P4YCIo3V+Coo\""},{"key":"Date","value":"Mon, 16 Oct 2023 15:58:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"28dd7d46-4279-4bfc-9534-b1312685ea85\",\n    \"answeroptionId\": \"861735d5-8188-4f13-87e4-696dd4a54863\",\n    \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n    \"value\": \"Agree\",\n    \"updatedAt\": \"2023-10-16T15:58:02.652Z\",\n    \"createdAt\": \"2023-10-16T15:58:02.652Z\"\n}"}],"_postman_id":"af1d0188-1b2e-4817-85b0-04413f2766b1"},{"name":"Read an Answeroption-Registration relationship","id":"b85c9487-0e1f-4b82-9445-80e2e46ea982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/answeroption-registration/v2/:id","description":"<p>Retrieve the single Answeroption-Registration relationship record of the supplied Answeroption-Registration ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>answeroptions</td>\n<td>registrations</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroption-registration","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"2790737c-5d22-4e54-beb3-6b257f4af486","description":{"content":"<p>Example: 28dd7d46-4279-4bfc-9534-b1312685ea85</p>\n","type":"text/plain"},"type":"any","value":"<Enter Answeroption-Registration ID here>","key":"id"}]}},"response":[{"id":"98371ae8-9cf4-48c7-a4ea-59a77c32ce53","name":"Read a Answeroption-Registration relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/answeroption-registration/v2/:id","protocol":"http","host":["localhost"],"port":"5050","path":["answeroption-registration","v2",":id"],"variable":[{"key":"id","value":"28dd7d46-4279-4bfc-9534-b1312685ea85","description":"Example: 28dd7d46-4279-4bfc-9534-b1312685ea85"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"477"},{"key":"ETag","value":"W/\"1dd-20CItEJ0sTtlMC0z9sl2WCdhrIs\""},{"key":"Date","value":"Mon, 16 Oct 2023 16:11:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"28dd7d46-4279-4bfc-9534-b1312685ea85\",\n    \"answeroptionId\": \"861735d5-8188-4f13-87e4-696dd4a54863\",\n    \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n    \"value\": \"Yes\",\n    \"createdAt\": \"2023-10-16T15:58:02.652Z\",\n    \"updatedAt\": \"2023-10-16T15:58:02.652Z\",\n    \"_links\": {\n        \"parents\": {\n            \"answeroption\": {\n                \"href\": \"/answeroptions/v2/861735d5-8188-4f13-87e4-696dd4a54863\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/27952f34-135b-4f95-9045-51071166c4fc\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"3bb8d43f-b5ba-4b74-b995-69c6449f723a","name":"Read an Answeroption-Registration relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/answeroption-registration/v2/:id?include=registrations,answeroptions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["answeroption-registration","v2",":id"],"query":[{"key":"include","value":"registrations,answeroptions"}],"variable":[{"key":"id","value":"261c8bf6-5463-4fd0-a2f8-8c085e9d3bc2","description":"Example: 28dd7d46-4279-4bfc-9534-b1312685ea85"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2668"},{"key":"ETag","value":"W/\"a6c-X7nidJP+3YsundIM/Z2mUb1ZHDg\""},{"key":"Date","value":"Mon, 08 Apr 2024 18:07:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"261c8bf6-5463-4fd0-a2f8-8c085e9d3bc2\",\n    \"answeroptionId\": \"69b68a9d-582d-4f57-b37a-b799ff44fea0\",\n    \"registrationId\": \"99fcd645-85a7-494b-83ec-60a7dffcaa20\",\n    \"value\": \"piAqZ beatae doloribus quaerat\",\n    \"createdAt\": \"2023-09-05T15:08:31.776Z\",\n    \"updatedAt\": \"2023-09-05T15:08:31.776Z\",\n    \"registrations\": {\n        \"collection\": [\n            {\n                \"id\": \"99fcd645-85a7-494b-83ec-60a7dffcaa20\",\n                \"producerRecordIdentifier\": \"n1D1a\",\n                \"language\": \"Fijian\",\n                \"status\": \"Confirmed\",\n                \"gender\": \"Other\",\n                \"pronoun\": \"They/ Them/ Theirs\",\n                \"ethnicity\": \"Hispanic or Latino\",\n                \"badgeIdentifier\": \"BxIs1\",\n                \"firstName\": \"Hazle\",\n                \"middleName\": \"Kai\",\n                \"lastName\": \"Murphy\",\n                \"prefix\": \"Miss\",\n                \"suffix\": \"Jr.\",\n                \"preferredName\": \"Juston\",\n                \"title\": \"Global Directives Agent\",\n                \"email\": \"Adrain_Kautzer-Wyman26@hotmail.com\",\n                \"emailTwo\": \"Joana_Terry@yahoo.com\",\n                \"website\": \"https://incomparable-skeleton.biz\",\n                \"organization\": \"Manager\",\n                \"occupation\": \"Producer\",\n                \"phoneNumber\": \"1-460-392-0187 x3917\",\n                \"mobilePhoneNumber\": \"1-332-622-7645 x1995\",\n                \"faxNumber\": \"373.209.4475 x68454\",\n                \"otherPhoneNumber\": \"(784) 645-8957 x5097\",\n                \"degree\": \"Future Intranet Director\",\n                \"credentials\": \"Chief Web Developer\",\n                \"region\": \"Michigan\",\n                \"dateOfBirth\": \"2023-09-05T15:08:31.773Z\",\n                \"customAttributes\": \"{\\\"registration_payment_status\\\":\\\"Pending\\\",\\\"pending_payment\\\":100}\",\n                \"isFirstTime\": false,\n                \"isPreviousAttendee\": false,\n                \"registeredAt\": \"2023-09-05T15:08:31.773Z\",\n                \"method\": \"Onsite\",\n                \"isVip\": true,\n                \"ssoIdentifier\": \"GkOyJ\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/893.jpg\",\n                \"createdAt\": \"2023-09-05T15:08:31.773Z\",\n                \"updatedAt\": \"2023-09-05T15:08:31.773Z\",\n                \"eventId\": \"cfd1d3a9-1b20-45b5-93c7-7a293800bc42\",\n                \"membershiptypeId\": \"57410811-dd20-465d-8e8e-27cd4f8fb3f8\",\n                \"registrationorderId\": \"830f0cf6-f1df-4164-8410-af4c0a105f77\",\n                \"registrationtypeId\": \"da81af5b-0cf0-4520-be9b-5d03b1b484ab\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"answeroptions\": {\n        \"collection\": [\n            {\n                \"id\": \"69b68a9d-582d-4f57-b37a-b799ff44fea0\",\n                \"eventId\": \"441bee26-e655-492f-bb75-94b87e5c92fa\",\n                \"questionId\": \"02c0b06b-eb9a-457d-bf15-90cf59ffe2c2\",\n                \"producerRecordIdentifier\": \"30RB1\",\n                \"value\": \"vhs2w ab magni ducimus\",\n                \"createdAt\": \"2023-09-05T15:08:31.745Z\",\n                \"updatedAt\": \"2023-09-05T15:08:31.745Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"answeroption\": {\n                \"href\": \"/answeroptions/v2/69b68a9d-582d-4f57-b37a-b799ff44fea0\"\n            },\n            \"registration\": {\n                \"href\": \"/registrations/v2/99fcd645-85a7-494b-83ec-60a7dffcaa20\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"b85c9487-0e1f-4b82-9445-80e2e46ea982"},{"name":"Delete an Answeroption-Registration relationship","id":"6f291020-af15-46e0-b7e8-d51829f340dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/answeroption-registration/v2/:id","description":"<p>Permanently delete the Answeroption-Registration relationship record of the supplied Answeroption-Registration ID. Destroying a relationship record will not destroy the supplied Registration or the supplied Answeroption, it will instead cause the supplied Registration and Answeroption to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["answeroption-registration","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"67305e4d-99d2-4022-97f3-d6ae73af4b61","description":{"content":"<p>Example: 28dd7d46-4279-4bfc-9534-b1312685ea85</p>\n","type":"text/plain"},"type":"any","value":"<Enter Answeroption-Registration ID here>","key":"id"}]}},"response":[{"id":"22fe5222-1072-4a87-a170-5aba41f722df","name":"Delete a Answeroption-Registration relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/answeroption-registration/v2/:id","protocol":"http","host":["localhost"],"port":"5050","path":["answeroption-registration","v2",":id"],"variable":[{"key":"id","value":"28dd7d46-4279-4bfc-9534-b1312685ea85","description":"Example: 28dd7d46-4279-4bfc-9534-b1312685ea85"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"264"},{"key":"ETag","value":"W/\"108-rjeIbChov8z3T8r1DJxHIpU//0c\""},{"key":"Date","value":"Mon, 16 Oct 2023 16:13:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"28dd7d46-4279-4bfc-9534-b1312685ea85\",\n    \"answeroptionId\": \"861735d5-8188-4f13-87e4-696dd4a54863\",\n    \"registrationId\": \"27952f34-135b-4f95-9045-51071166c4fc\",\n    \"value\": \"Yes\",\n    \"createdAt\": \"2023-10-16T15:58:02.652Z\",\n    \"updatedAt\": \"2023-10-16T15:58:02.652Z\"\n}"}],"_postman_id":"6f291020-af15-46e0-b7e8-d51829f340dc"}],"id":"92cf1576-cd94-4dc9-8031-9edad22cd98d","description":"<p>The Answeroption-Registration entity provides a way to interact with the relationships between Answeroption and Registration. A single Answeroption can have many Registrations and a single Registration can belong to many Answeroptions. This entity connects the Registration with their Answeroption for any Question that is asked during the registration process. Typically these are the answers to any demographic questions that are being obtained by the show organizer.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>answeroptionId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Answeroption.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registration.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td>The value for any “Other” options and open text field answers.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"92cf1576-cd94-4dc9-8031-9edad22cd98d","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registrationoptions (v2)","item":[{"name":"List Registrationoptions","id":"8679a46a-29c3-407c-b745-53299527eb77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationoptions/v2","description":"<p>Retrieve a collection of Registrationoption records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>code</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationoptions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"d9158d8c-0dea-44cd-aeb1-1c3a550e7de0","name":"List Registrationoptions","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/registrationoptions/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"81421"},{"key":"ETag","value":"W/\"13e0d-cWoq+yrdu0R+wmPA1TGjBgis8xo\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:26:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"ab377e1e-4e64-4d15-9b88-3ea9e8d77ad2\",\n            \"eventId\": \"de706d61-7894-4345-b45d-49d7ac4e6ae3\",\n            \"producerRecordIdentifier\": \"Jiij7\",\n            \"description\": \"3D Workshop\",\n            \"code\": \"3DW\",\n            \"customAttributes\": {\n                \"a\": 2946167354687488,\n                \"b\": \"V%#6L.39;U\",\n                \"bar\": 1712772551278592,\n                \"foo\": \"3XgMDv:9;w\",\n                \"bike\": 6156426881794048,\n                \"name\": 6833984883392512,\n                \"prop\": 3697409553072128\n            },\n            \"createdAt\": \"2023-08-04T13:19:36.484Z\",\n            \"updatedAt\": \"2023-08-04T13:19:36.484Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/de706d61-7894-4345-b45d-49d7ac4e6ae3\"\n                    }\n                },\n                \"children\": {\n                    \"registration-registrationoption\": {\n                        \"href\": \"/registration-registrationoption/v2?filter[registrationoptionId][eq]=ab377e1e-4e64-4d15-9b88-3ea9e8d77ad2\"\n                    }\n                },\n                \"siblings\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[registrationoptionId][eq]=ab377e1e-4e64-4d15-9b88-3ea9e8d77ad2\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3ca22c5c-447c-4998-bb18-788ddcd37ed0\",\n            \"eventId\": \"ccd8466a-9e1b-4a50-ba3b-c499eee4a694\",\n            \"producerRecordIdentifier\": \"88x0u\",\n            \"description\": \"IMT 2022 Conference - 1 day Tuesday\",\n            \"code\": \"TU\",\n            \"customAttributes\": {\n                \"a\": 409638881198080,\n                \"b\": 1151522224209920,\n                \"bar\": \"$v96F)Ies_\",\n                \"foo\": 7622889056501760,\n                \"bike\": \"e`8;Qt>\\\\[(\",\n                \"name\": \"W>8\\\"\\\"A01@[\",\n                \"prop\": \"ZXe/xO$.|#\"\n            },\n            \"createdAt\": \"2023-08-04T13:19:36.489Z\",\n            \"updatedAt\": \"2023-08-04T13:19:36.489Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/ccd8466a-9e1b-4a50-ba3b-c499eee4a694\"\n                    }\n                },\n                \"children\": {\n                    \"registration-registrationoption\": {\n                        \"href\": \"/registration-registrationoption/v2?filter[registrationoptionId][eq]=3ca22c5c-447c-4998-bb18-788ddcd37ed0\"\n                    }\n                },\n                \"siblings\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[registrationoptionId][eq]=3ca22c5c-447c-4998-bb18-788ddcd37ed0\"\n                    }\n                }\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 3,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 260,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/registrationoptions/v2?page=1\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"/registrationoptions/v2?page=2\"\n            },\n            \"last\": {\n                \"href\": \"/registrationoptions/v2?page=3\"\n            }\n        }\n    }\n}"}],"_postman_id":"8679a46a-29c3-407c-b745-53299527eb77"},{"name":"Create a Registrationoption","id":"6057be3b-f874-4cac-b3e3-a8000a47e7d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\",\n    \"producerRecordIdentifier\": null,\n    \"description\": null,\n    \"code\": \"New test explicabo qui dolorem\",\n    \"customAttributes\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationoptions/v2","description":"<p>Create a new Registrationoption record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>code</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationoptions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"d29f1649-4f0e-42ca-b2b7-efc7b090e586","name":"Create a Registrationoption","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\",\n    \"producerRecordIdentifier\": null,\n    \"description\": null,\n    \"code\": \"New test explicabo qui dolorem\",\n    \"customAttributes\": null\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/registrationoptions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"287"},{"key":"ETag","value":"W/\"11f-5if60Tmk8ZaN0OHsvkEENpMJKWU\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:36:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e1174ad7-952f-4549-9adc-05c62ce9db87\",\n    \"eventId\": \"8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\",\n    \"producerRecordIdentifier\": null,\n    \"description\": \"3D Workshop\",\n    \"code\": \"3DW\",\n    \"customAttributes\": null,\n    \"updatedAt\": \"2023-10-19T13:36:37.270Z\",\n    \"createdAt\": \"2023-10-19T13:36:37.270Z\"\n}"}],"_postman_id":"6057be3b-f874-4cac-b3e3-a8000a47e7d3"},{"name":"Read a Registrationoption","id":"ea3aed9e-38a7-43fc-a53c-e99da5ab82a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationoptions/v2/:registrationoptionId","description":"<p>Retrieve the single Registrationoption record of the supplied Registrationoption ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td>registration-registrationoption</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationoptions","v2",":registrationoptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"393767d9-d790-4539-ad3f-f7aa122ec289","description":{"content":"<p>Example: e1174ad7-952f-4549-9adc-05c62ce9db87</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationoption ID here>","key":"registrationoptionId"}]}},"response":[{"id":"49ffc0fe-91be-4f60-a87b-a80c4d37c8f6","name":"Read a Registrationoption","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationoptions/v2/:registrationoptionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationoptions","v2",":registrationoptionId"],"variable":[{"key":"registrationoptionId","value":"e1174ad7-952f-4549-9adc-05c62ce9db87","description":"Example: e1174ad7-952f-4549-9adc-05c62ce9db87"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"669"},{"key":"ETag","value":"W/\"29d-2d8edlQzJuTmiOKxaJdk3BT2kuY\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:39:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e1174ad7-952f-4549-9adc-05c62ce9db87\",\n    \"eventId\": \"8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\",\n    \"producerRecordIdentifier\": null,\n    \"description\": \"IMT 2022 Conference - 1 day Tuesday\",\n    \"code\": \"TU\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-10-19T13:36:37.270Z\",\n    \"updatedAt\": \"2023-10-19T13:36:37.270Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\"\n            }\n        },\n        \"children\": {\n            \"registration-registrationoption\": {\n                \"href\": \"/registration-registrationoption/v2?filter[registrationoptionId][eq]=e1174ad7-952f-4549-9adc-05c62ce9db87\"\n            }\n        },\n        \"siblings\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[registrationoptionId][eq]=e1174ad7-952f-4549-9adc-05c62ce9db87\"\n            }\n        }\n    }\n}"},{"id":"bb7e4119-161a-4464-b4d6-7235c48b73fa","name":"Read a Registrationoption with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationoptions/v2/:registrationoptionId?include=events,registrations,registration-registrationoption","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationoptions","v2",":registrationoptionId"],"query":[{"key":"include","value":"events,registrations,registration-registrationoption"}],"variable":[{"key":"registrationoptionId","value":"ab377e1e-4e64-4d15-9b88-3ea9e8d77ad2","description":"Example: e1174ad7-952f-4549-9adc-05c62ce9db87"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2114"},{"key":"ETag","value":"W/\"842-aS/yHSOvvb0tjoKt1L1+J6WsqhI\""},{"key":"Date","value":"Mon, 08 Apr 2024 18:09:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ab377e1e-4e64-4d15-9b88-3ea9e8d77ad2\",\n    \"eventId\": \"de706d61-7894-4345-b45d-49d7ac4e6ae3\",\n    \"producerRecordIdentifier\": \"Jiij7\",\n    \"description\": \"Intuitive secondary middleware animi nemo aspernatur earum esse itaque beatae a iusto ad\",\n    \"code\": \"7E\",\n    \"customAttributes\": {\n        \"a\": 2946167354687488,\n        \"b\": \"V%#6L.39;U\",\n        \"bar\": 1712772551278592,\n        \"foo\": \"3XgMDv:9;w\",\n        \"bike\": 6156426881794048,\n        \"name\": 6833984883392512,\n        \"prop\": 3697409553072128\n    },\n    \"createdAt\": \"2023-08-04T13:19:36.484Z\",\n    \"updatedAt\": \"2023-08-04T13:19:36.484Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"de706d61-7894-4345-b45d-49d7ac4e6ae3\",\n                \"shortName\": \"Rustic Baby Annual Meeting 2025\",\n                \"fullName\": \"Intelligent Intelligent Rubber Pants Computers Annual Meeting 2025\",\n                \"systemName\": \"rusticbabyannualmeeting2025-fca9\",\n                \"website\": \"https://cheery-script.biz/\",\n                \"description\": \"Robust global superstructure facilitate web-enabled methodologies\",\n                \"startsAt\": \"2023-08-04T13:19:36.482Z\",\n                \"endsAt\": \"2023-08-08T13:19:36.479Z\",\n                \"timezoneOffsetInMinutes\": -223,\n                \"freemanJobIdentifier\": \"0xB2C4CCbc\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-08-04T13:19:36.482Z\",\n                \"updatedAt\": \"2023-08-04T13:19:36.482Z\",\n                \"organizationId\": \"9757f60f-9e82-48af-be93-76528688090a\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registration-registrationoption\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/de706d61-7894-4345-b45d-49d7ac4e6ae3\"\n            }\n        },\n        \"children\": {\n            \"registration-registrationoption\": {\n                \"href\": \"/registration-registrationoption/v2?filter[registrationoptionId][eq]=ab377e1e-4e64-4d15-9b88-3ea9e8d77ad2\"\n            }\n        },\n        \"siblings\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[registrationoptionId][eq]=ab377e1e-4e64-4d15-9b88-3ea9e8d77ad2\"\n            }\n        }\n    }\n}"}],"_postman_id":"ea3aed9e-38a7-43fc-a53c-e99da5ab82a8"},{"name":"Update a Registrationoption","id":"3c037aec-d492-43cb-9854-6e54821d816b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"717\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationoptions/v2/:registrationoptionId","description":"<p>Modify one or more fields on the single Registrationoption record of the supplied Registrationoption ID.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>registrationId  <br /></td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>code</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationoptions","v2",":registrationoptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"58a6746b-35ff-47ca-b82a-6c59e91228e9","description":{"content":"<p>Example: e1174ad7-952f-4549-9adc-05c62ce9db87</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationoption ID here>","key":"registrationoptionId"}]}},"response":[{"id":"fcafa827-581a-498d-86ba-09cb2f0b7990","name":"Update a Registrationoption","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"718\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/registrationoptions/v2/:registrationoptionId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationoptions","v2",":registrationoptionId"],"variable":[{"key":"registrationoptionId","value":"e1174ad7-952f-4549-9adc-05c62ce9db87","description":"Example: e1174ad7-952f-4549-9adc-05c62ce9db87"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"288"},{"key":"ETag","value":"W/\"120-H2sN8KwxvAH7w5gcxV2NeQH4STs\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:43:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e1174ad7-952f-4549-9adc-05c62ce9db87\",\n    \"eventId\": \"8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\",\n    \"producerRecordIdentifier\": \"420\",\n    \"description\": \"IMT 2022 Conference - 1 day Tuesday\",\n    \"code\": \"TU\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-10-19T13:36:37.270Z\",\n    \"updatedAt\": \"2023-10-19T13:43:23.649Z\"\n}"}],"_postman_id":"3c037aec-d492-43cb-9854-6e54821d816b"},{"name":"Destroy a Registrationoption","id":"2571ced2-f63c-49e6-a3c2-dfc00d874dd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationoptions/v2/:registrationoptionId","description":"<p>Permanently delete the Registrationoption record of the supplied Registrationoption ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationoptions","v2",":registrationoptionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"92dc6434-e884-4e7a-bc36-666482d8f170","description":{"content":"<p>Example: e1174ad7-952f-4549-9adc-05c62ce9db87</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationoption ID here>","key":"registrationoptionId"}]}},"response":[{"id":"72a32379-5261-49c9-bf75-08e2b6299fda","name":"Destroy a Registrationoption","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/registrationoptions/v2/:registrationoptionId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationoptions","v2",":registrationoptionId"],"variable":[{"key":"registrationoptionId","value":"e1174ad7-952f-4549-9adc-05c62ce9db87","description":"Example: e1174ad7-952f-4549-9adc-05c62ce9db87"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"288"},{"key":"ETag","value":"W/\"120-H2sN8KwxvAH7w5gcxV2NeQH4STs\""},{"key":"Date","value":"Thu, 19 Oct 2023 13:55:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e1174ad7-952f-4549-9adc-05c62ce9db87\",\n    \"eventId\": \"8af26227-7e3f-4d85-b2e4-bc14dc2c2c93\",\n    \"producerRecordIdentifier\": \"420\",\n    \"description\": \"IMT 2022 Conference - 1 day Tuesday\",\n    \"code\": \"TU\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-10-19T13:36:37.270Z\",\n    \"updatedAt\": \"2023-10-19T13:43:23.649Z\"\n}"}],"_postman_id":"2571ced2-f63c-49e6-a3c2-dfc00d874dd7"}],"id":"a01c303d-d274-4b85-9fac-792ce1bf7930","description":"<p>Registrationoptions are the items presented to event registrants during registration. Registrationptions are purchasable things which can include the cost of the Registration or items added to the Registration (tickets, lunches, packages etc.).</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registration.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>String</td>\n<td>A code that represents the option/item purchased.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A description of the Registrationoption.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a01c303d-d274-4b85-9fac-792ce1bf7930","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registration-Registrationoption (v2)","item":[{"name":"List Registration-Registrationoption relationships","id":"814ac70d-383d-4a2f-b94f-60c65b6c4b47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registration-registrationoption/v2","description":"<p>Retrieve a collection of Registration-Registrationoption relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registrationoptionId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>price</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>priceTier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>promoCode</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currencyCode</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>price</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>priceTier</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>promoCode</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-registrationoption","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c180533e-5a69-4ad3-b23e-f1a432d813e8","name":"List Registration-Registrationoption relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/registration-registrationoption/v2","protocol":"http","host":["localhost"],"port":"5050","path":["registration-registrationoption","v2"],"query":[{"key":"filter[id][in][]","value":"ae466c1f-a009-407f-8a6d-0b2aeee7b6a7","type":"text","description":"filter registration-registrationoption where id matches one of the values provided.  Pass more filter queries like that to pass more items to the array. See example.","disabled":true},{"key":"filter[registrationoptionId][eq]","value":"b2006391-71a1-46bc-b147-68b0be0df74d","type":"text","description":"get registration-registrationoption with registrationoptionId \"b2006391-71a1-46bc-b147-68b0be0df74d\".","disabled":true},{"key":"filter[registrationId][eq]","value":"44108c61-e8f9-409c-ae8e-0c366a6aec21","type":"text","description":"filter registration-registrationoption records where registrationId equals to \"44108c61-e8f9-409c-ae8e-0c366a6aec21\".","disabled":true},{"key":"filter[priceTier][endsWith]","value":"Account","type":"text","description":"filter registration-registrationoption where priceTier ends with \"Account\".","disabled":true},{"key":"filter[promoCode][substring]","value":"SEP","type":"text","description":"filter registration-registrationoption where promoCode has a substring \"SEP\".","disabled":true},{"key":"filter[price][gte]","value":"100","type":"text","description":"filter registration-registrationoption that has price greater than or equal to 100 using greater than or equal operator.","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","description":"filter registration-registrationoption that has been updated before 2022-04-12 using less than operator","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","description":"sort registration-registrationoption by created on time in ascending order.","disabled":true},{"key":"page","value":"1","type":"text","description":"get the first page of registration-registrationoption records using page query param","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22384"},{"key":"ETag","value":"W/\"5770-jXsMXoShM8KW5BwAYRFMoj/riX8\""},{"key":"Date","value":"Thu, 12 Oct 2023 15:15:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"price\": 295,\n            \"id\": \"ae466c1f-a009-407f-8a6d-0b2aeee7b6a7\",\n            \"registrationId\": \"44108c61-e8f9-409c-ae8e-0c366a6aec21\",\n            \"registrationoptionId\": \"b2006391-71a1-46bc-b147-68b0be0df74d\",\n            \"currencyCode\": \"USD\",\n            \"priceTier\": \"Advanced\",\n            \"promoCode\": \"25OFF\",\n            \"createdAt\": \"2023-09-12T16:34:29.847Z\",\n            \"updatedAt\": \"2023-09-12T16:34:29.847Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/44108c61-e8f9-409c-ae8e-0c366a6aec21\"\n                    },\n                    \"registrationoption\": {\n                        \"href\": \"/registrationoptions/v2/b2006391-71a1-46bc-b147-68b0be0df74d\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"price\": 221,\n            \"id\": \"345361bb-4fdd-459a-80ff-9480c28f5cb7\",\n            \"registrationId\": \"d59e38f8-d285-4a63-a716-79b22ff2a478\",\n            \"registrationoptionId\": \"33719e8e-33c0-4d19-a9d1-7de991f875ed\",\n            \"currencyCode\": \"USD\",\n            \"priceTier\": \"Early\",\n            \"promoCode\": null,\n            \"createdAt\": \"2023-09-12T16:34:29.913Z\",\n            \"updatedAt\": \"2023-09-12T16:34:29.913Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/d59e38f8-d285-4a63-a716-79b22ff2a478\"\n                    },\n                    \"registrationoption\": {\n                        \"href\": \"/registrationoptions/v2/33719e8e-33c0-4d19-a9d1-7de991f875ed\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/registration-registrationoption/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"814ac70d-383d-4a2f-b94f-60c65b6c4b47"},{"name":"Create a Registration-Registrationoption relationship","id":"96830e53-69eb-452a-8447-6604a75c836e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"registrationId\": \"6818f071-798e-41c0-9e02-5a5a709c59f9\",\n    \"registrationoptionId\": \"be1f7751-9750-4b2d-afd8-5d15523116c9\",\n    \"currencyCode\":\"USD\",\n    \"price\": 295,\n    \"priceTier\": \"Advanced\",\n    \"promoCode\": \"25OFF\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registration-registrationoption/v2","description":"<p>Create a new Registration-Registrationoption relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>registrationoptionId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registrationoption.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Decimal</td>\n<td>Yes</td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes\">ISO 4217 currency codes.</a></td>\n</tr>\n<tr>\n<td>priceTier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>promoCode</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-registrationoption","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"a9181142-9102-4912-82f3-06dd9b7eca0b","name":"Create a Registration-Registrationoption relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"registrationId\": \"6818f071-798e-41c0-9e02-5a5a709c59f9\",\n    \"registrationoptionId\": \"be1f7751-9750-4b2d-afd8-5d15523116c9\",\n    \"currencyCode\":\"USD\",\n    \"price\": 295,\n    \"priceTier\": \"Advanced\",\n    \"promoCode\": \"25OFF\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/registration-registrationoption/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"318"},{"key":"ETag","value":"W/\"13e-76NYACL1H893gD8WZPKgZYeS1dE\""},{"key":"Date","value":"Thu, 12 Oct 2023 15:33:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"price\": 295,\n    \"id\": \"4b5d0e39-ad9d-49e3-ba23-2ed8b440b8b9\",\n    \"registrationId\": \"6818f071-798e-41c0-9e02-5a5a709c59f9\",\n    \"registrationoptionId\": \"be1f7751-9750-4b2d-afd8-5d15523116c9\",\n    \"currencyCode\": \"USD\",\n    \"priceTier\": \"Advanced\",\n    \"promoCode\": \"25OFF\",\n    \"updatedAt\": \"2023-10-12T15:33:01.281Z\",\n    \"createdAt\": \"2023-10-12T15:33:01.281Z\"\n}"}],"_postman_id":"96830e53-69eb-452a-8447-6604a75c836e"},{"name":"Read a Registration-Registrationoption relationship","id":"a79f1bc6-f18e-462a-9d2b-ff3d48fcffbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registration-registrationoption/v2/:id","description":"<p>Retrieve the single Registration-Registrationoption relationship record of the supplied Registration-Registrationoption ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>registrations</td>\n<td>registrationoptions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-registrationoption","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"88bf3a55-b83b-4fb8-b12a-5b5a4feaefd3","description":{"content":"<p>Example: ae466c1f-a009-407f-8a6d-0b2aeee7b6a7</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registration-Registrationoption ID here> ","key":"id"}]}},"response":[{"id":"81184cbf-0116-4388-b7f1-047de102a2f8","name":"Read a Registration-Registrationoption relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/registration-registrationoption/v2/:id","protocol":"http","host":["localhost"],"port":"5050","path":["registration-registrationoption","v2",":id"],"variable":[{"key":"id","value":"ae466c1f-a009-407f-8a6d-0b2aeee7b6a7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"549"},{"key":"ETag","value":"W/\"225-3gD7Xh2+SkoLKnqDR+TIseLCbAc\""},{"key":"Date","value":"Thu, 12 Oct 2023 15:41:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"price\": 295,\n    \"id\": \"ae466c1f-a009-407f-8a6d-0b2aeee7b6a7\",\n    \"registrationId\": \"44108c61-e8f9-409c-ae8e-0c366a6aec21\",\n    \"registrationoptionId\": \"b2006391-71a1-46bc-b147-68b0be0df74d\",\n    \"currencyCode\": \"USD\",\n    \"priceTier\": \"Onsite\",\n    \"promoCode\": null,\n    \"createdAt\": \"2023-09-12T16:34:29.847Z\",\n    \"updatedAt\": \"2023-09-12T16:34:29.847Z\",\n    \"_links\": {\n        \"parents\": {\n            \"registration\": {\n                \"href\": \"/registrations/v2/44108c61-e8f9-409c-ae8e-0c366a6aec21\"\n            },\n            \"registrationoption\": {\n                \"href\": \"/registrationoptions/v2/b2006391-71a1-46bc-b147-68b0be0df74d\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"f94a760f-7425-4175-8a56-b42b2c7b0981","name":"Read a Registration-Registrationoption relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registration-registrationoption/v2/:id?include=registrations,registrationoptions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registration-registrationoption","v2",":id"],"query":[{"key":"include","value":"registrations,registrationoptions"}],"variable":[{"key":"id","value":"fb5870bb-59d9-4210-8cde-a4c13df8cf69","description":"Example: ae466c1f-a009-407f-8a6d-0b2aeee7b6a7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3004"},{"key":"ETag","value":"W/\"bbc-y40tnenkztkcpJn6XzcaTTPnj+s\""},{"key":"Date","value":"Mon, 08 Apr 2024 18:11:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"price\": 188,\n    \"id\": \"fb5870bb-59d9-4210-8cde-a4c13df8cf69\",\n    \"registrationId\": \"0a6b0f8c-10c9-476e-a914-bbf65defa381\",\n    \"registrationoptionId\": \"0345bf4f-fe26-4e86-8737-f13bba799fc7\",\n    \"currencyCode\": \"KYD\",\n    \"priceTier\": \"Checking Account\",\n    \"promoCode\": \"33323\",\n    \"createdAt\": \"2023-08-15T18:57:17.082Z\",\n    \"updatedAt\": \"2023-08-15T18:57:17.082Z\",\n    \"registrations\": {\n        \"collection\": [\n            {\n                \"id\": \"0a6b0f8c-10c9-476e-a914-bbf65defa381\",\n                \"producerRecordIdentifier\": \"Pth2X\",\n                \"language\": \"Bihari\",\n                \"status\": \"Cancelled\",\n                \"gender\": \"Non-binary\",\n                \"pronoun\": \"They/ Them/ Theirs\",\n                \"ethnicity\": \"Hispanic or Latino\",\n                \"badgeIdentifier\": \"eMOj4\",\n                \"firstName\": \"Cruz\",\n                \"middleName\": \"Reign\",\n                \"lastName\": \"Beahan\",\n                \"prefix\": \"Mr.\",\n                \"suffix\": \"DVM\",\n                \"preferredName\": \"Valentina\",\n                \"title\": \"Regional Program Specialist\",\n                \"email\": \"Madilyn_Schiller11@hotmail.com\",\n                \"emailTwo\": \"Dayton.Lesch@yahoo.com\",\n                \"website\": \"https://worst-packet.name/\",\n                \"organization\": \"Developer\",\n                \"occupation\": \"Facilitator\",\n                \"phoneNumber\": \"587-416-9322 x5533\",\n                \"mobilePhoneNumber\": \"254.652.2441 x49865\",\n                \"faxNumber\": \"(739) 835-4989 x29792\",\n                \"otherPhoneNumber\": \"1-857-869-6501\",\n                \"degree\": \"Direct Infrastructure Representative\",\n                \"credentials\": \"Dynamic Mobility Engineer\",\n                \"region\": \"Ohio\",\n                \"dateOfBirth\": \"2023-08-15T18:57:17.065Z\",\n                \"customAttributes\": \"{\\\"foo\\\":3846986054762496,\\\"bar\\\":5384881383145472,\\\"bike\\\":6244222174756864,\\\"a\\\":\\\"wRX\\\\\\\\[H8\\\\\\\"42\\\",\\\"b\\\":6820336379101184,\\\"name\\\":2529094948356096,\\\"prop\\\":5197432516247552}\",\n                \"isFirstTime\": false,\n                \"isPreviousAttendee\": false,\n                \"registeredAt\": \"2023-08-15T18:57:17.065Z\",\n                \"method\": \"Paper Form\",\n                \"isVip\": true,\n                \"ssoIdentifier\": \"EtVfE\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/712.jpg\",\n                \"createdAt\": \"2023-08-15T18:57:17.065Z\",\n                \"updatedAt\": \"2023-08-15T18:57:17.065Z\",\n                \"eventId\": \"95ae2539-241f-4c3e-9761-3d26b538cf11\",\n                \"membershiptypeId\": \"4083640b-9ece-4651-9f34-77ab523d1171\",\n                \"registrationorderId\": \"ae66e162-e3c3-4082-bdd0-f00a9968c600\",\n                \"registrationtypeId\": \"d07b79f2-e512-4858-90e9-f832423b90e0\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrationoptions\": {\n        \"collection\": [\n            {\n                \"id\": \"0345bf4f-fe26-4e86-8737-f13bba799fc7\",\n                \"eventId\": \"72d1f7cd-45c3-4e81-86a6-71033b2078c2\",\n                \"producerRecordIdentifier\": \"MEDlL\",\n                \"description\": null,\n                \"code\": \"BSRG\",\n                \"customAttributes\": \"{\\\"foo\\\":\\\"::jx;7{*.k\\\",\\\"bar\\\":5964041411362816,\\\"bike\\\":986701935673344,\\\"a\\\":\\\"9*VZ(fNao(\\\",\\\"b\\\":6868315467153408,\\\"name\\\":\\\"}Hkg8\\\\\\\"EqX9\\\",\\\"prop\\\":4880167660945408}\",\n                \"createdAt\": \"2023-08-15T18:57:17.076Z\",\n                \"updatedAt\": \"2023-08-15T18:57:17.076Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"registration\": {\n                \"href\": \"/registrations/v2/0a6b0f8c-10c9-476e-a914-bbf65defa381\"\n            },\n            \"registrationoption\": {\n                \"href\": \"/registrationoptions/v2/0345bf4f-fe26-4e86-8737-f13bba799fc7\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"a79f1bc6-f18e-462a-9d2b-ff3d48fcffbd"},{"name":"Delete a Registration-Registrationoption relationship","id":"8374a74a-29de-439c-8151-d054cbfe96a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registration-registrationoption/v2/:id","description":"<p>Permanently delete the Registration-Registrationoption relationship record of the supplied Registration-Registrationoption ID. Destroying a relationship record will not destroy the supplied Registration or the supplied Registrationoption , it will instead cause the supplied Registration and Registrationoption to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-registrationoption","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"83338916-f303-4a31-94c5-6ac74dc027b9","description":{"content":"<p>Example: ae466c1f-a009-407f-8a6d-0b2aeee7b6a7</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registration-Registrationoption ID here>","key":"id"}]}},"response":[{"id":"533ad3cb-1797-4bf7-b802-d8a5fdc3b45c","name":"Delete a Registration-Registrationoption relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/registration-registrationoption/v2/:id","protocol":"http","host":["localhost"],"port":"5050","path":["registration-registrationoption","v2",":id"],"variable":[{"key":"id","value":"ae466c1f-a009-407f-8a6d-0b2aeee7b6a7","description":"Example: ae466c1f-a009-407f-8a6d-0b2aeee7b6a7"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"324"},{"key":"ETag","value":"W/\"144-K0g3RJNefBnP3c9mgJq5RLd1Tg4\""},{"key":"Date","value":"Thu, 12 Oct 2023 15:51:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"price\": 295,\n    \"id\": \"ae466c1f-a009-407f-8a6d-0b2aeee7b6a7\",\n    \"registrationId\": \"44108c61-e8f9-409c-ae8e-0c366a6aec21\",\n    \"registrationoptionId\": \"b2006391-71a1-46bc-b147-68b0be0df74d\",\n    \"currencyCode\": \"USD\",\n    \"priceTier\": \"Onsite\",\n    \"promoCode\": null,\n    \"createdAt\": \"2023-09-12T16:34:29.847Z\",\n    \"updatedAt\": \"2023-09-12T16:34:29.847Z\",\n}"}],"_postman_id":"8374a74a-29de-439c-8151-d054cbfe96a9"}],"id":"0b702327-4528-46c8-b72f-11097617ef6c","description":"<p>The Registration-Registrationoption entity provides a way to interact with the relationships between Registrations and Registrationoptions. A single Registrationoption can have many Registrations and a single Registration can belong to many Registrationoptions.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registration.</td>\n</tr>\n<tr>\n<td>registrationoptionId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registrationoption.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>ISO 4217 Alpha 3 letter code</td>\n<td>The currency type the price is in.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Decimal</td>\n<td>The price of the Registrationoption.</td>\n</tr>\n<tr>\n<td>priceTier</td>\n<td>String</td>\n<td>The price tier of the Registrationoption, if applicable.</td>\n</tr>\n<tr>\n<td>promoCode</td>\n<td>String</td>\n<td>The promo code used, if applicable.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0b702327-4528-46c8-b72f-11097617ef6c","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registrationorders (v2)","item":[{"name":"List Registrationorders","id":"b0a201a7-4214-482b-a501-4d33434e0667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2","description":"<p>Retrieve a collection of Registrationorder records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>type</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationorders","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"3595e4ff-d2e4-4c30-84b4-d2912674d23c","name":"List Registrationorders","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/registrationorders/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75389"},{"key":"ETag","value":"W/\"1267d-8UzqyY6HeFnJ+33hm1okjMt3CQI\""},{"key":"Date","value":"Fri, 20 Oct 2023 13:27:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"65935cae-8c2a-4f3c-8b2e-fef79114650f\",\n            \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n            \"producerRecordIdentifier\": \"Q07Hm\",\n            \"orderIdentifier\": \"10651\",\n            \"type\": \"Exhibitor\",\n            \"customAttributes\": \"{\\\"foo\\\":4349154308390912,\\\"bar\\\":6432063905333248,\\\"bike\\\":\\\"+X5=1(\\\\\\\\D*$\\\",\\\"a\\\":\\\"mvgR>d?xGl\\\",\\\"b\\\":\\\"1zx+9i\\\\\\\\G.z\\\",\\\"name\\\":\\\"wN1kXq+JZb\\\",\\\"prop\\\":\\\"C%<`s[(Nd6\\\"}\",\n            \"createdAt\": \"2023-07-06T22:00:44.655Z\",\n            \"updatedAt\": \"2023-07-06T22:00:44.656Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\"\n                    }\n                },\n                \"children\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[registrationorderId][eq]=65935cae-8c2a-4f3c-8b2e-fef79114650f\"\n                    },\n                    \"registrationtransactions\": {\n                        \"href\": \"/registrationtransactions/v2?filter[registrationorderId][eq]=65935cae-8c2a-4f3c-8b2e-fef79114650f\"\n                    }\n                },\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"ea6ca4f9-51c3-4abb-88f1-b093a957df4d\",\n            \"eventId\": \"f3632ad2-3571-42c2-8f76-9fefc132670e\",\n            \"producerRecordIdentifier\": \"6IGkZ\",\n            \"orderIdentifier\": \"10436\",\n            \"type\": \"Attendee\",\n            \"customAttributes\": \"{\\\"foo\\\":362792607547392,\\\"bar\\\":1697162775756800,\\\"bike\\\":1500298757537792,\\\"a\\\":1003339812700160,\\\"b\\\":421296426975232,\\\"name\\\":850496413761536,\\\"prop\\\":\\\"7KCXiQ^men\\\"}\",\n            \"createdAt\": \"2023-07-06T22:00:44.677Z\",\n            \"updatedAt\": \"2023-07-06T22:00:44.677Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/f3632ad2-3571-42c2-8f76-9fefc132670e\"\n                    }\n                },\n                \"children\": {\n                    \"registrations\": {\n                        \"href\": \"/registrations/v2?filter[registrationorderId][eq]=ea6ca4f9-51c3-4abb-88f1-b093a957df4d\"\n                    },\n                    \"registrationtransactions\": {\n                        \"href\": \"/registrationtransactions/v2?filter[registrationorderId][eq]=ea6ca4f9-51c3-4abb-88f1-b093a957df4d\"\n                    }\n                },\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 15,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1419,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/registrationorders/v2?page=1\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"/registrationorders/v2?page=2\"\n            },\n            \"last\": {\n                \"href\": \"/registrationorders/v2?page=15\"\n            }\n        }\n    }\n}"}],"_postman_id":"b0a201a7-4214-482b-a501-4d33434e0667"},{"name":"Create a Registrationorder","id":"0390eaff-6b16-4e32-b348-432c5c9cbd45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"create\",\n    \"type\": \"P0MZCRT\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"create\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2","description":"<p>Create a new Registrationorder record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>orderIdentifier</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>orderIdentifier</code> must be unique.</li>\n</ul>\n<h4 id=\"includable-related-children-entities\">Includable Related Children Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>registrationtransactions</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationorders","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c9b7c999-5315-424c-9d16-76b01a8e4425","name":"Create a Registrationorder","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"create\",\n    \"type\": \"P0MZCRT\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"create\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"304"},{"key":"ETag","value":"W/\"130-G+Ab7+led5bBwBtthn+CTJiq9Cw\""},{"key":"Date","value":"Fri, 20 Oct 2023 13:31:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9d30e564-4266-4e88-b734-df7cb0892fba\",\n    \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"10300\",\n    \"type\": \"Exhibitor\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"test create\"\n    },\n    \"updatedAt\": \"2023-10-20T13:31:18.654Z\",\n    \"createdAt\": \"2023-10-20T13:31:18.654Z\"\n}"},{"id":"639a60c8-7c4d-4857-827f-a329c2d512c9","name":"Create a Registrationorder With Related Child Entities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"create\",\n    \"type\": \"P0MZCRT\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"create\"\n    },\n    \"registrationtransactions\": [\n        {\n            \"producerRecordIdentifier\": \"167\",\n            \"status\": \"Approved\",\n            \"type\": \"Payment\",\n            \"paymentMethod\": \"AMEX\",\n            \"currencyCode\": \"USD\",\n            \"capturedAt\": \"2023-10-26T17:47:21Z\",\n            \"amount\": 100,\n            \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n            \"method\": \"Onsite\",\n            \"customAttributes\": {\n                \"balance\": 0\n            },\n            \"processedAt\": \"2023-10-27T17:47:21Z\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"976"},{"key":"ETag","value":"W/\"3d0-82AS/QLdlDJFZLKR1zlv6VPhmoI\""},{"key":"Date","value":"Wed, 07 May 2025 14:40:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b00399c0-b253-4eaa-a9f3-8c930ba9cf94\",\n    \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"create\",\n    \"type\": \"P0MZCRT\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"create\"\n    },\n    \"updatedAt\": \"2025-05-07T14:40:52.576Z\",\n    \"createdAt\": \"2025-05-07T14:40:52.576Z\",\n    \"registrationtransactions\": {\n        \"collection\": [\n            {\n                \"amount\": 100,\n                \"id\": \"4791dabe-958b-4bf3-ab3d-144456ae3519\",\n                \"registrationorderId\": \"b00399c0-b253-4eaa-a9f3-8c930ba9cf94\",\n                \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n                \"producerRecordIdentifier\": \"167\",\n                \"status\": \"Approved\",\n                \"type\": \"Payment\",\n                \"paymentMethod\": \"AMEX\",\n                \"currencyCode\": \"USD\",\n                \"capturedAt\": \"2023-10-26T17:47:21.000Z\",\n                \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n                \"method\": \"Onsite\",\n                \"customAttributes\": {\n                    \"balance\": 0\n                },\n                \"processedAt\": \"2023-10-27T17:47:21.000Z\",\n                \"updatedAt\": \"2025-05-07T14:40:52.583Z\",\n                \"createdAt\": \"2025-05-07T14:40:52.583Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"0390eaff-6b16-4e32-b348-432c5c9cbd45"},{"name":"Read a Registrationorder","id":"fb1ef5fd-0edb-4c44-8422-55c8c14691f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2/:registrationorderId","description":"<p>Retrieve the single Registrationorder record of the supplied Registrationorder ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrations</td>\n<td>registrationtransactions</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationorders","v2",":registrationorderId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"476cb610-fb61-4c72-b5b7-0968762cc515","description":{"content":"<p>Example: 9d30e564-4266-4e88-b734-df7cb0892fba</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationorder ID here>","key":"registrationorderId"}]}},"response":[{"id":"e34fe86a-e480-4d24-ae10-3ec164c50d89","name":"Read a Registrationorder","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2/:registrationorderId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationorders","v2",":registrationorderId"],"variable":[{"key":"registrationorderId","value":"9d30e564-4266-4e88-b734-df7cb0892fba","description":"Example: 9d30e564-4266-4e88-b734-df7cb0892fba"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"671"},{"key":"ETag","value":"W/\"29f-51h5r6T1GjAhgIDRQgG7nRxe4JQ\""},{"key":"Date","value":"Fri, 20 Oct 2023 13:33:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9d30e564-4266-4e88-b734-df7cb0892fba\",\n    \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"10300\",\n    \"type\": \"Exhibitor\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"test create\"\n    },\n    \"createdAt\": \"2023-10-20T13:31:18.654Z\",\n    \"updatedAt\": \"2023-10-20T13:31:18.654Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\"\n            }\n        },\n        \"children\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[registrationorderId][eq]=9d30e564-4266-4e88-b734-df7cb0892fba\"\n            },\n            \"registrationtransactions\": {\n                \"href\": \"/registrationtransactions/v2?filter[registrationorderId][eq]=9d30e564-4266-4e88-b734-df7cb0892fba\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"},{"id":"ca7811dc-1307-4d1c-b7c4-988baca059ee","name":"Read a Registrationorder with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2/:registrationorderId?include=events,registrations,registrationtransactions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationorders","v2",":registrationorderId"],"query":[{"key":"include","value":"events,registrations,registrationtransactions"}],"variable":[{"key":"registrationorderId","value":"65935cae-8c2a-4f3c-8b2e-fef79114650f","description":"Example: 9d30e564-4266-4e88-b734-df7cb0892fba"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"308000"},{"key":"ETag","value":"W/\"4b320-92a+FVASlwTvM9tHfeI/xp5u5ms\""},{"key":"Date","value":"Mon, 08 Apr 2024 18:14:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"65935cae-8c2a-4f3c-8b2e-fef79114650f\",\n    \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"eXbGx\",\n    \"type\": \"P0MZCRT\",\n    \"customAttributes\": \"{\\\"foo\\\":4349154308390912,\\\"bar\\\":6432063905333248,\\\"bike\\\":\\\"+X5=1(\\\\\\\\D*$\\\",\\\"a\\\":\\\"mvgR>d?xGl\\\",\\\"b\\\":\\\"1zx+9i\\\\\\\\G.z\\\",\\\"name\\\":\\\"wN1kXq+JZb\\\",\\\"prop\\\":\\\"C%<`s[(Nd6\\\"}\",\n    \"createdAt\": \"2023-07-06T22:00:44.655Z\",\n    \"updatedAt\": \"2023-07-06T22:00:44.656Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n                \"shortName\": \"Handcrafted Movies Review Meeting 2025\",\n                \"fullName\": \"Handmade Intelligent Metal Hat Industrial Review Meeting 2025\",\n                \"systemName\": \"handcraftedmoviesreviewmeeting2025-51d8\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-07-06T22:00:44.651Z\",\n                \"endsAt\": \"2023-07-10T22:00:44.648Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": null,\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-07-06T22:00:44.651Z\",\n                \"updatedAt\": \"2023-07-06T22:00:44.651Z\",\n                \"organizationId\": \"93c6a485-7593-42aa-bb43-d4f17d074819\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrations\": {\n        \"collection\": [\n            {\n                \"id\": \"d2972a28-8631-4f83-909d-04e6e2359dfb\",\n                \"producerRecordIdentifier\": \"YGfYu\",\n                \"language\": null,\n                \"status\": null,\n                \"gender\": null,\n                \"pronoun\": null,\n                \"ethnicity\": null,\n                \"badgeIdentifier\": \"FzW07\",\n                \"firstName\": \"Onie\",\n                \"middleName\": \"Finley\",\n                \"lastName\": \"Mante\",\n                \"prefix\": \"Mr.\",\n                \"suffix\": \"PhD\",\n                \"preferredName\": \"Myrl\",\n                \"title\": \"Principal Quality Manager\",\n                \"email\": \"Judy9@hotmail.com\",\n                \"emailTwo\": \"Tanner41@hotmail.com\",\n                \"website\": \"https://every-kilt.name/\",\n                \"organization\": \"Representative\",\n                \"occupation\": \"Strategist\",\n                \"phoneNumber\": \"467.242.3552 x21580\",\n                \"mobilePhoneNumber\": \"(369) 979-1214 x955\",\n                \"faxNumber\": \"1-447-655-6633 x469\",\n                \"otherPhoneNumber\": \"722.202.5024\",\n                \"degree\": \"Global Program Executive\",\n                \"credentials\": \"Corporate Metrics Strategist\",\n                \"region\": \"Mississippi\",\n                \"dateOfBirth\": \"2023-07-06T21:17:12.447Z\",\n                \"customAttributes\": \"{\\\"foo\\\":\\\"e]uZ0}Fe5_\\\",\\\"bar\\\":1047400764407808,\\\"bike\\\":\\\"){Kl\\\\\\\"Hvl&q\\\",\\\"a\\\":3929574607945728,\\\"b\\\":\\\"8*J69%t,9l\\\",\\\"name\\\":\\\"bET8BDPrTA\\\",\\\"prop\\\":5311459795927040}\",\n                \"isFirstTime\": false,\n                \"isPreviousAttendee\": false,\n                \"registeredAt\": \"2023-07-06T21:17:12.447Z\",\n                \"method\": \"Online\",\n                \"isVip\": false,\n                \"ssoIdentifier\": \"OxBFM\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/699.jpg\",\n                \"createdAt\": \"2023-07-06T21:17:12.447Z\",\n                \"updatedAt\": \"2023-07-06T21:17:12.447Z\",\n                \"eventId\": \"dee95385-b36f-40b3-9b26-a9cb58f9fb61\",\n                \"membershiptypeId\": null,\n                \"registrationorderId\": \"65935cae-8c2a-4f3c-8b2e-fef79114650f\",\n                \"registrationtypeId\": \"975dc43f-327f-4a1e-a687-e2b030e8b60d\"\n            },\n            {\n                \"id\": \"048db319-45ac-4427-8bec-cd9886570b71\",\n                \"producerRecordIdentifier\": \"D7MV8\",\n                \"language\": null,\n                \"status\": null,\n                \"gender\": null,\n                \"pronoun\": null,\n                \"ethnicity\": null,\n                \"badgeIdentifier\": \"JPuhv\",\n                \"firstName\": \"Dean\",\n                \"middleName\": \"Riley\",\n                \"lastName\": \"Barrows\",\n                \"prefix\": \"Miss\",\n                \"suffix\": \"III\",\n                \"preferredName\": \"Lessie\",\n                \"title\": \"Human Communications Supervisor\",\n                \"email\": \"Broderick_McLaughlin74@gmail.com\",\n                \"emailTwo\": \"Idella.Reynolds93@hotmail.com\",\n                \"website\": \"https://strict-mailing.org\",\n                \"organization\": \"Producer\",\n                \"occupation\": \"Officer\",\n                \"phoneNumber\": \"(967) 891-8714 x313\",\n                \"mobilePhoneNumber\": \"982-657-5893\",\n                \"faxNumber\": \"777.228.1692 x367\",\n                \"otherPhoneNumber\": \"596-249-0423 x65498\",\n                \"degree\": \"Forward Web Developer\",\n                \"credentials\": \"District Accounts Engineer\",\n                \"region\": \"Michigan\",\n                \"dateOfBirth\": \"2023-07-06T21:17:12.505Z\",\n                \"customAttributes\": \"{\\\"foo\\\":4841459322716160,\\\"bar\\\":\\\"Uhhf1t;=0,\\\",\\\"bike\\\":\\\"nc}UaNh9#|\\\",\\\"a\\\":\\\"*B&6k:>-:K\\\",\\\"b\\\":889011642040320,\\\"name\\\":\\\"bh2Rz,sMq!\\\",\\\"prop\\\":8748778901209088}\",\n                \"isFirstTime\": true,\n                \"isPreviousAttendee\": false,\n                \"registeredAt\": \"2023-07-06T21:17:12.505Z\",\n                \"method\": \"Onsite\",\n                \"isVip\": false,\n                \"ssoIdentifier\": \"2zheH\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/704.jpg\",\n                \"createdAt\": \"2023-07-06T21:17:12.505Z\",\n                \"updatedAt\": \"2023-07-06T21:17:12.505Z\",\n                \"eventId\": \"591ccb83-47ae-4b09-937d-c5fafd026215\",\n                \"membershiptypeId\": null,\n                \"registrationorderId\": \"65935cae-8c2a-4f3c-8b2e-fef79114650f\",\n                \"registrationtypeId\": \"f0684a93-bbc1-4d9b-bb54-0633a18f0ad8\"\n            },\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 2,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 217,\n            \"numberOfRecordsOnCurrentPage\": 200,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {\n                    \"href\": \"/registrations/v2?filter[registrationorderId][eq]=65935cae-8c2a-4f3c-8b2e-fef79114650f&page=2\"\n                }\n            }\n        }\n    },\n    \"registrationtransactions\": {\n        \"collection\": [],\n        \"_meta\": {\n            \"totalNumberOfPages\": 0,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 0,\n            \"numberOfRecordsOnCurrentPage\": 0,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\"\n            }\n        },\n        \"children\": {\n            \"registrations\": {\n                \"href\": \"/registrations/v2?filter[registrationorderId][eq]=65935cae-8c2a-4f3c-8b2e-fef79114650f\"\n            },\n            \"registrationtransactions\": {\n                \"href\": \"/registrationtransactions/v2?filter[registrationorderId][eq]=65935cae-8c2a-4f3c-8b2e-fef79114650f\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"fb1ef5fd-0edb-4c44-8422-55c8c14691f5"},{"name":"Update a Registrationorder","id":"ca8a4d5e-15c8-4536-8d00-2ecabace18e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"orderIdentifier\": \"update\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2/:registrationorderId","description":"<p>Modify one or more fields on the single Registrationorder record of the supplied Registrationorder ID.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>orderIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>orderIdentifier</code> must be unique.</li>\n</ul>\n<h4 id=\"includable-related-children-entities\">Includable Related Children Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>registrationtransactions</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationorders","v2",":registrationorderId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"079e2487-2f9d-4cae-a661-09fe18d62174","description":{"content":"<p>Example: 9d30e564-4266-4e88-b734-df7cb0892fba</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationorder ID here>","key":"registrationorderId"}]}},"response":[{"id":"ea96eb83-c865-442c-94d8-78b286171be9","name":"Update a Registrationorder","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"orderIdentifier\": \"update\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2/:registrationorderId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationorders","v2",":registrationorderId"],"variable":[{"key":"registrationorderId","value":"<Enter Registrationorder ID here>","description":"Example: 9d30e564-4266-4e88-b734-df7cb0892fba"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"304"},{"key":"ETag","value":"W/\"130-cTYb8MkC/Mkh1SN692radJbd04w\""},{"key":"Date","value":"Fri, 20 Oct 2023 13:38:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9d30e564-4266-4e88-b734-df7cb0892fba\",\n    \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"10300\",\n    \"type\": \"Attendee\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"test create\"\n    },\n    \"createdAt\": \"2023-10-20T13:31:18.654Z\",\n    \"updatedAt\": \"2023-10-20T13:38:02.311Z\"\n}"},{"id":"de2410ba-f862-498a-961a-c16cba6847b4","name":"Update a Registrationorder With Related Child Entities","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"orderIdentifier\": \"pending\",\n    \"registrationtransactions\": [\n        {\n            \"id\": \"4791dabe-958b-4bf3-ab3d-144456ae3519\",\n            \"status\": \"Pending approval\"\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2/:registrationorderId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationorders","v2",":registrationorderId"],"variable":[{"key":"registrationorderId","value":"b00399c0-b253-4eaa-a9f3-8c930ba9cf94","description":"Example: 9d30e564-4266-4e88-b734-df7cb0892fba"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"985"},{"key":"ETag","value":"W/\"3d9-iB1SgUuLbsVqzNfKsRUi0Mbw8U8\""},{"key":"Date","value":"Fri, 13 Jun 2025 10:10:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b00399c0-b253-4eaa-a9f3-8c930ba9cf94\",\n    \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"pending\",\n    \"type\": \"P0MZCRT\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"create\"\n    },\n    \"createdAt\": \"2025-05-07T14:40:52.576Z\",\n    \"updatedAt\": \"2025-06-13T10:10:13.877Z\",\n    \"registrationtransactions\": {\n        \"collection\": [\n            {\n                \"amount\": 100,\n                \"id\": \"4791dabe-958b-4bf3-ab3d-144456ae3519\",\n                \"producerRecordIdentifier\": \"167\",\n                \"status\": \"Pending approval\",\n                \"type\": \"Payment\",\n                \"method\": \"Onsite\",\n                \"paymentMethod\": \"AMEX\",\n                \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n                \"currencyCode\": \"USD\",\n                \"capturedAt\": \"2023-10-26T17:47:21.000Z\",\n                \"processedAt\": \"2023-10-27T17:47:21.000Z\",\n                \"customAttributes\": {\n                    \"balance\": 0\n                },\n                \"createdAt\": \"2025-05-07T14:40:52.583Z\",\n                \"updatedAt\": \"2025-06-13T10:10:13.887Z\",\n                \"eventId\": \"06787de5-155b-4766-bbc7-60691b7de816\",\n                \"registrationorderId\": \"b00399c0-b253-4eaa-a9f3-8c930ba9cf94\"\n            }\n        ]\n    }\n}"}],"_postman_id":"ca8a4d5e-15c8-4536-8d00-2ecabace18e5"},{"name":"Destroy a Registrationorder","id":"cc12e50a-526a-4044-b9b0-8c4360584a43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationorders/v2/:registrationorderId","description":"<p>Permanently delete the Registrationorder record of the supplied Registrationorder ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationorders","v2",":registrationorderId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"fb004419-fba9-4940-9836-7bbf2071d335","description":{"content":"<p>Example: 9d30e564-4266-4e88-b734-df7cb0892fba</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registrationorder ID here>","key":"registrationorderId"}]}},"response":[{"id":"736f28ea-839a-438c-99fc-ea09bd84f151","name":"Destroy a Registrationorder","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/registrationorders/v2/:registrationorderId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationorders","v2",":registrationorderId"],"variable":[{"key":"registrationorderId","value":"9d30e564-4266-4e88-b734-df7cb0892fba","description":"Example: 9d30e564-4266-4e88-b734-df7cb0892fba"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"304"},{"key":"ETag","value":"W/\"130-cTYb8MkC/Mkh1SN692radJbd04w\""},{"key":"Date","value":"Fri, 20 Oct 2023 13:41:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9d30e564-4266-4e88-b734-df7cb0892fba\",\n    \"eventId\": \"379ff0f6-3f96-47f9-a4a2-5298b9c0da2d\",\n    \"producerRecordIdentifier\": \"Q07Hm\",\n    \"orderIdentifier\": \"10300\",\n    \"type\": \"Attendee\",\n    \"customAttributes\": {\n        \"orderAttribute1\": \"test create\"\n    },\n    \"createdAt\": \"2023-10-20T13:31:18.654Z\",\n    \"updatedAt\": \"2023-10-20T13:38:02.311Z\"\n}"}],"_postman_id":"cc12e50a-526a-4044-b9b0-8c4360584a43"}],"id":"1e971a00-709e-4b24-90e2-961dffc47e80","description":"<p>Registrationorders connect one or more Registrationtransactions to a Registration. Registrationorders also signify a group of registrants that were purchased under one account or order.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>orderIdentifier</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>The type of the Registrationorder.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1e971a00-709e-4b24-90e2-961dffc47e80","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registrationtransactions (v2)","item":[{"name":"List Registrationtransactions","id":"f4921c0c-4f6f-4667-85c4-1532e2421140","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationtransactions/v2","description":"<p>Retrieve a collection of Registrationtransaction records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>status</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>type</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>capturedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>method</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>eq, ne</td>\n</tr>\n<tr>\n<td>processedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>type</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>capturedAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>method</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>processedAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtransactions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"0ddc2820-d188-4f26-8985-6409f6d5315a","name":"List Registrationtransactions","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/registrationtransactions/v2","protocol":"http","host":["localhost"],"port":"5050","path":["registrationtransactions","v2"],"query":[{"key":"filter[id][in][]","value":"e6e8926f-6db8-4af4-8ac3-8eee0463f73c","type":"text","description":"filter registrationtransactions where id matches one of the values provided.  Pass more filter queries like that to pass more items to the array. See example.","disabled":true},{"key":"filter[registrationorderId][eq]","value":"05930e27-c388-4269-9baa-0d5a06e2909e","type":"text","description":"get exhibitorcategories with registrationorderId \"05930e27-c388-4269-9baa-0d5a06e2909e\".","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"null","type":"text","description":"filter registrationtransactions where producerRecordIdentifier equals to null.","disabled":true},{"key":"filter[method][endsWith]","value":"Paypal","type":"text","description":"filter registrationtransactions where method ends with \"Paypal\".","disabled":true},{"key":"filter[description][substring]","value":"ame","type":"text","description":"filter registrationtransactions where description has a substring \"ame\".","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","type":"text","description":"filter registrationtransactions that has been created on or after 2022-04-01 using greater than or equal operator.","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","description":"filter registrationtransactions that has been updated before 2022-04-12 using less than operator","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","description":"sort registrationtransactions by created on time in ascending order.","disabled":true},{"key":"page","value":"1","type":"text","description":"get the first page of registrationtransactions records using page query param","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"30551"},{"key":"ETag","value":"W/\"7757-zucdToyJ7HiK+lTiRmO6qT80NUc\""},{"key":"Date","value":"Fri, 13 Oct 2023 18:14:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"amount\": 100,\n            \"id\": \"6d410c95-1ab8-4d52-8f13-ad5b0769a7f3\",\n            \"producerRecordIdentifier\": \"167\",\n            \"status\": \"Approved\",\n            \"type\": \"Payment\",\n            \"paymentMethod\": \"AMEX\",\n            \"currencyCode\": \"USD\",\n            \"capturedAt\": \"2023-10-26T17:47:21.000Z\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n            \"method\": \"Onsite\",\n            \"processedAt\": \"2023-10-27T17:47:21.000Z\",\n            \"customAttributes\": {\n                \"balance\": 0\n            },\n            \"updatedAt\": \"2023-10-17T19:36:54.112Z\",\n            \"createdAt\": \"2023-10-17T19:36:54.112Z\",\n            \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n            \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/2f10cba2-002f-446b-8666-3f5563a03a42\"\n                    },\n                    \"registrationorder\": {\n                        \"href\": \"/registrationorders/v2/34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"amount\": 652.59,\n            \"id\": \"455b175b-3033-4a0d-ab7e-e76387273708\",\n            \"producerRecordIdentifier\": \"231\",\n            \"status\": \"Approved\",\n            \"type\": \"Refund\",\n            \"method\": \"Online\",\n            \"paymentMethod\": \"CASH\",\n            \"description\": null,\n            \"currencyCode\": \"USD\",\n            \"capturedAt\": \"2023-10-13T18:29:09.596Z\",\n            \"processedAt\": \"2023-10-13T18:29:09.597Z\",\n            \"customAttributes\": null,\n            \"createdAt\": \"2023-10-13T18:29:09.947Z\",\n            \"updatedAt\": \"2023-10-13T18:40:30.395Z\",\n            \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n            \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/2f10cba2-002f-446b-8666-3f5563a03a42\"\n                    },\n                    \"registrationorder\": {\n                        \"href\": \"/registrationorders/v2/34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/Registrationtransactions/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"f4921c0c-4f6f-4667-85c4-1532e2421140"},{"name":"Create a Registrationtransaction","id":"d9b6f6d1-1692-4448-9169-93e46a374e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n    \"producerRecordIdentifier\": \"167\",\n    \"status\": \"Approved\",\n    \"type\": \"Payment\",\n    \"paymentMethod\": \"AMEX\",\n    \"currencyCode\": \"USD\",\n    \"capturedAt\": \"2023-10-26T17:47:21Z\",\n    \"amount\": 100,\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n    \"method\": \"Onsite\",\n    \"customAttributes\": {\n        \"balance\": 0\n    },\n    \"processedAt\": \"2023-10-27T17:47:21Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationtransactions/v2","description":"<p>Create a new Registrationtransaction record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registrationorder.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values:  <br />Pending processing, Pending approval, Approved.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values:  <br />Payment, Refund.</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes\">ISO 4217 currency codes.</a></td>\n</tr>\n<tr>\n<td>capturedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>Yes</td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Decimal</td>\n<td>Yes</td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>method</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n<tr>\n<td>processedAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtransactions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"5126334b-7d99-4ed6-9c10-913b3c8dd3b8","name":"Create an Registrationtransactions","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n    \"producerRecordIdentifier\": \"167\",\n    \"status\": \"Approved\",\n    \"type\": \"Payment\",\n    \"paymentMethod\": \"AMEX\",\n    \"currencyCode\": \"USD\",\n    \"capturedAt\": \"2023-10-26T17:47:21Z\",\n    \"amount\": 100,\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n    \"method\": \"Onsite\",\n    \"customAttributes\": {\n        \"balance\": 0\n    },\n    \"processedAt\": \"2023-10-27T17:47:21Z\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/registrationtransactions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"579"},{"key":"ETag","value":"W/\"243-vPDdnr0xwR1VOtK7X86fW+qNzlo\""},{"key":"Date","value":"Fri, 13 Oct 2023 18:29:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": 100,\n    \"id\": \"6d410c95-1ab8-4d52-8f13-ad5b0769a7f3\",\n    \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n    \"producerRecordIdentifier\": \"167\",\n    \"status\": \"Approved\",\n    \"type\": \"Payment\",\n    \"paymentMethod\": \"AMEX\",\n    \"currencyCode\": \"USD\",\n    \"capturedAt\": \"2023-10-26T17:47:21.000Z\",\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n    \"method\": \"Onsite\",\n    \"customAttributes\": {\n        \"balance\": 0\n    },\n    \"processedAt\": \"2023-10-27T17:47:21.000Z\",\n    \"updatedAt\": \"2023-10-17T19:36:54.112Z\",\n    \"createdAt\": \"2023-10-17T19:36:54.112Z\"\n}"}],"_postman_id":"d9b6f6d1-1692-4448-9169-93e46a374e86"},{"name":"Read a Registrationtransaction","id":"5cb9fd90-4100-4a29-87c8-650b0e8ff811","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationtransactions/v2/:registrationtransactionId","description":"<p>Retrieve the single Registrationtransaction record of the supplied Registrationtransaction ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>registrationorders</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtransactions","v2",":registrationtransactionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"8c3664f8-9260-4147-8283-7be3760d7a04","description":{"content":"<p>Example: 6d410c95-1ab8-4d52-8f13-ad5b0769a7f3</p>\n","type":"text/plain"},"type":"any","value":"<Enter RegistrationtransactionID here>","key":"registrationtransactionId"}]}},"response":[{"id":"177c1c81-4f2e-43cf-8775-3e3841d4bba4","name":"Read an Registrationtransactions","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/registrationtransactions/v2/:registrationtransactionId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationtransactions","v2",":registrationtransactionId"],"variable":[{"key":"registrationtransactionId","value":"6d410c95-1ab8-4d52-8f13-ad5b0769a7f3","description":"Example: 6d410c95-1ab8-4d52-8f13-ad5b0769a7f3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"788"},{"key":"ETag","value":"W/\"314-JuvBG9mgIMu8TBYvrOjx89oOYUM\""},{"key":"Date","value":"Fri, 13 Oct 2023 18:32:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": 100,\n    \"id\": \"6d410c95-1ab8-4d52-8f13-ad5b0769a7f3\",\n    \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\",\n    \"producerRecordIdentifier\": \"167\",\n    \"status\": \"Approved\",\n    \"type\": \"Payment\",\n    \"paymentMethod\": \"AMEX\",\n    \"currencyCode\": \"USD\",\n    \"capturedAt\": \"2023-10-26T17:47:21.000Z\",\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",\n    \"method\": \"Onsite\",\n    \"customAttributes\": {\n        \"balance\": 0\n    },\n    \"processedAt\": \"2023-10-27T17:47:21.000Z\",\n    \"updatedAt\": \"2023-10-17T19:36:54.112Z\",\n    \"createdAt\": \"2023-10-17T19:36:54.112Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/2f10cba2-002f-446b-8666-3f5563a03a42\"\n            },\n            \"registrationorder\": {\n                \"href\": \"/registrationorders/v2/34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"87c3c064-52a5-4031-bb7b-eb1cc4e32fe5","name":"Read a Registrationtransaction with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registrationtransactions/v2/:registrationtransactionId?include=events,registrationorders","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registrationtransactions","v2",":registrationtransactionId"],"query":[{"key":"include","value":"events,registrationorders"}],"variable":[{"key":"registrationtransactionId","value":"0f1a8767-0f3e-4982-8358-1283aa1b526b","description":"Example: 6d410c95-1ab8-4d52-8f13-ad5b0769a7f3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2266"},{"key":"ETag","value":"W/\"8da-pGkZ/uwhQwubGhAxJCS2coZmVzE\""},{"key":"Date","value":"Mon, 08 Apr 2024 18:17:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": 142,\n    \"id\": \"0f1a8767-0f3e-4982-8358-1283aa1b526b\",\n    \"producerRecordIdentifier\": \"kkycE\",\n    \"status\": \"Pending approval\",\n    \"type\": \"Payment\",\n    \"method\": \"Skyler\",\n    \"paymentMethod\": \"Medhurst\",\n    \"description\": \"Dr.\",\n    \"currencyCode\": \"COP\",\n    \"capturedAt\": \"2023-08-04T13:22:22.017Z\",\n    \"processedAt\": \"2023-08-04T13:22:22.017Z\",\n    \"customAttributes\": {\n        \"a\": \"oL`v[Heb9J\",\n        \"b\": 4928972810878976,\n        \"bar\": \"yzhn3>6UHL\",\n        \"foo\": 7366538835263488,\n        \"bike\": 7189871263219712,\n        \"name\": 7015059635044352,\n        \"prop\": \"B=Us.!UQ3%\"\n    },\n    \"createdAt\": \"2023-08-04T13:22:22.017Z\",\n    \"updatedAt\": \"2023-08-04T13:22:22.017Z\",\n    \"eventId\": \"a656a202-736a-4f1e-ab05-f5a05e3fcd98\",\n    \"registrationorderId\": \"70b3d26c-d9c0-4a86-862a-90acd0aa6c99\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"a656a202-736a-4f1e-ab05-f5a05e3fcd98\",\n                \"shortName\": \"Recycled Automotive Conference 2025\",\n                \"fullName\": \"Incredible Small Metal Ball Games Conference 2025\",\n                \"systemName\": \"recycledautomotiveconference2025-79d3\",\n                \"website\": null,\n                \"description\": \"Networked background superstructure target rich systems\",\n                \"startsAt\": \"2023-08-04T13:22:22.004Z\",\n                \"endsAt\": \"2023-08-05T13:22:22.001Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"0xDbc6faE\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-08-04T13:22:22.004Z\",\n                \"updatedAt\": \"2023-08-04T13:22:22.004Z\",\n                \"organizationId\": \"4a71787b-e62a-42e8-aebc-216f13016239\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"registrationorders\": {\n        \"collection\": [\n            {\n                \"id\": \"70b3d26c-d9c0-4a86-862a-90acd0aa6c99\",\n                \"eventId\": \"8ea20fda-73f5-4639-8dec-7a2848f4b4b7\",\n                \"producerRecordIdentifier\": \"4Fn8Q\",\n                \"orderIdentifier\": \"nsRem\",\n                \"type\": \"A3P0VW\",\n                \"customAttributes\": {\n                    \"a\": \",y#R20y?)2\",\n                    \"b\": 3374499311386624,\n                    \"bar\": \"{<vBbrqOe_\",\n                    \"foo\": 5113838240268288,\n                    \"bike\": \"82<ez`:qpi\",\n                    \"name\": 56215182770176,\n                    \"prop\": 4572701981147136\n                },\n                \"createdAt\": \"2023-07-13T16:18:53.655Z\",\n                \"updatedAt\": \"2023-07-13T16:18:53.655Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/a656a202-736a-4f1e-ab05-f5a05e3fcd98\"\n            },\n            \"registrationorder\": {\n                \"href\": \"/registrationorders/v2/70b3d26c-d9c0-4a86-862a-90acd0aa6c99\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"5cb9fd90-4100-4a29-87c8-650b0e8ff811"},{"name":"Update a Registrationtransaction","id":"5a519613-4810-455f-8d6a-fc79e049f900","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"231\",\n    \"method\": \"Online\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registrationtransactions/v2/:registrationtransactionId","description":"<p>Modify one or more fields on the single Registrationtransaction record of the supplied Registrationtransaction ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Registrationorder.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td></td>\n<td>• Valid values:  <br />Pending processing, Pending approval, Approved.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Valid values:  <br />Payment, Refund.</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes\">ISO 4217 currency codes.</a></td>\n</tr>\n<tr>\n<td>capturedAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>method</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n<tr>\n<td>processedAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtransactions","v2",":registrationtransactionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"9568ee14-9d50-47fd-a24a-327971dcf28a","description":{"content":"<p>Example: 455b175b-3033-4a0d-ab7e-e76387273708</p>\n","type":"text/plain"},"type":"any","value":"<Enter RegistrationtransactionID here>","key":"registrationtransactionId"}]}},"response":[{"id":"f7894be1-451c-4ad7-9463-48cdec8aa44c","name":"Update an Registrationtransactions","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"231\",\n    \"method\": \"Online\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/registrationtransactions/v2/:registrationtransactionId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationtransactions","v2",":registrationtransactionId"],"variable":[{"key":"registrationtransactionId","value":"455b175b-3033-4a0d-ab7e-e76387273708","description":"Example: 455b175b-3033-4a0d-ab7e-e76387273708"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"579"},{"key":"ETag","value":"W/\"243-bgYdljm1n5a/9ax5AqbyLVRCdUY\""},{"key":"Date","value":"Fri, 13 Oct 2023 18:40:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": 652.59,\n    \"id\": \"455b175b-3033-4a0d-ab7e-e76387273708\",\n    \"producerRecordIdentifier\": \"231\",\n    \"status\": \"Approved\",\n    \"type\": \"Refund\",\n    \"method\": \"Online\",\n    \"paymentMethod\": \"CASH\",\n    \"description\": null,\n    \"currencyCode\": \"USD\",\n    \"capturedAt\": \"2023-10-13T18:29:09.596Z\",\n    \"processedAt\": \"2023-10-13T18:29:09.597Z\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-10-13T18:29:09.947Z\",\n    \"updatedAt\": \"2023-10-13T18:40:30.395Z\",\n    \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\"\n}"}],"_postman_id":"5a519613-4810-455f-8d6a-fc79e049f900"},{"name":"Destroy a Registrationtransaction","id":"38e9340d-4f81-426e-ad77-2a177cbeeff9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registrationtransactions/v2/:registrationtransactionId","description":"<p>Permanently delete the Registrationtransaction record of the supplied Registrationtransaction ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registrationtransactions","v2",":registrationtransactionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"35ee6e30-3b03-410a-93e3-848a81e8bfc6","description":{"content":"<p>Example: 455b175b-3033-4a0d-ab7e-e76387273708</p>\n","type":"text/plain"},"type":"any","value":"<Enter RegistrationtransactionID here>","key":"registrationtransactionId"}]}},"response":[{"id":"593ac1e9-8041-489e-8d3c-63b4ab77736a","name":"Destroy an Registrationtransactions","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/registrationtransactions/v2/:registrationtransactionId","protocol":"http","host":["localhost"],"port":"5050","path":["registrationtransactions","v2",":registrationtransactionId"],"variable":[{"key":"registrationtransactionId","value":"455b175b-3033-4a0d-ab7e-e76387273708","description":"Example: 455b175b-3033-4a0d-ab7e-e76387273708"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"579"},{"key":"ETag","value":"W/\"243-bgYdljm1n5a/9ax5AqbyLVRCdUY\""},{"key":"Date","value":"Fri, 13 Oct 2023 18:44:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": 652.59,\n    \"id\": \"455b175b-3033-4a0d-ab7e-e76387273708\",\n    \"producerRecordIdentifier\": \"231\",\n    \"status\": \"Approved\",\n    \"type\": \"Refund\",\n    \"method\": \"Online\",\n    \"paymentMethod\": \"CASH\",\n    \"description\": null,\n    \"currencyCode\": \"USD\",\n    \"capturedAt\": \"2023-10-13T18:29:09.596Z\",\n    \"processedAt\": \"2023-10-13T18:29:09.597Z\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-10-13T18:29:09.947Z\",\n    \"updatedAt\": \"2023-10-13T18:40:30.395Z\",\n    \"eventId\": \"2f10cba2-002f-446b-8666-3f5563a03a42\",\n    \"registrationorderId\": \"34a7cc65-7aa6-46c0-9bfe-fd5ae25a5eeb\"\n}"}],"_postman_id":"38e9340d-4f81-426e-ad77-2a177cbeeff9"}],"id":"7f4d204b-c0bc-4331-a2ba-74cc330a0d98","description":"<p>Registrationtransactions refer to the transaction processing that involves accepting payments from registrants. This can be done through secure online payment gateways, credit card processing, or other payment methods.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>registrationorderId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registrationorder.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>The status of the Registrationtransaction.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>The type of Registrationtransaction.</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>String</td>\n<td>The payment method of the Registrationtransaction. Typically cash, the credit card type, check, wire etc.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>String</td>\n<td>The currency in which the Registrationtransaction is in.</td>\n</tr>\n<tr>\n<td>capturedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date time in which the Registrationtransaction is initially captured.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Decimal</td>\n<td>The amount the Registrationtransaction is in.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A description or summary of the Registrationtransaction.</td>\n</tr>\n<tr>\n<td>method</td>\n<td>String</td>\n<td>The method in which the payment was processed. Typically in-person, onsite, online etc.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>processedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date time in which the Registrationtransaction is processed.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7f4d204b-c0bc-4331-a2ba-74cc330a0d98","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Registration-Socialmediatype(v2)","item":[{"name":"List Registration-Socialmediatype relationships","id":"8efe666b-d066-47f4-a503-cd31e4074a30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registration-socialmediatype/v2","description":"<p>Retrieve a collection of Registration-Socialmediatype relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>handle</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-socialmediatype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"036b5ac1-35d1-45d8-bd10-d190c7ac4026","name":"List Registration-Socialmediatype relationships","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/registration-socialmediatype/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"19898"},{"key":"ETag","value":"W/\"4dba-HoBnISF/3TRCbU6wXB9/whMOWtY\""},{"key":"Date","value":"Mon, 16 Oct 2023 18:01:17 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"65453917-0bb3-40f7-b303-25fee011dd9a\",\n            \"registrationId\": \"46e7da7b-5fb2-43b8-aaa4-7ad482fded8e\",\n            \"socialmediatypeId\": \"77cd4976-3229-42e6-9cde-879dd1a7bd74\",\n            \"handle\": \"stephania-avery-bailey\",\n            \"createdAt\": \"2023-09-08T14:04:51.587Z\",\n            \"updatedAt\": \"2023-09-08T14:04:51.587Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/46e7da7b-5fb2-43b8-aaa4-7ad482fded8e\"\n                    },\n                    \"socialmediatype\": {\n                        \"href\": \"/socialmediatypes/v2/77cd4976-3229-42e6-9cde-879dd1a7bd74\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"f97c51f5-8864-4726-a400-aaa20b212f2f\",\n            \"registrationId\": \"e451b6ee-4d40-4dd3-839d-3c5e4e361b2c\",\n            \"socialmediatypeId\": \"460ae9db-4795-4f02-b2e4-0c84598102dd\",\n            \"handle\": \"@hubertrowanroob\",\n            \"createdAt\": \"2023-09-08T14:04:51.824Z\",\n            \"updatedAt\": \"2023-09-08T14:04:51.824Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"registration\": {\n                        \"href\": \"/registrations/v2/e451b6ee-4d40-4dd3-839d-3c5e4e361b2c\"\n                    },\n                    \"socialmediatype\": {\n                        \"href\": \"/socialmediatypes/v2/460ae9db-4795-4f02-b2e4-0c84598102dd\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/registration-socialmediatype/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"8efe666b-d066-47f4-a503-cd31e4074a30"},{"name":"Create a Registration-Socialmediatype relationship","id":"6f13c9c1-ce28-4aa1-ac6f-66ff93a5d5ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@tommiecassin\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/registration-socialmediatype/v2","description":"<p>Create a new Registration-Socialmediatype relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Registration.</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Socialmediatype.</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>registrationId</code>, <code>socialmediatypeId</code> and <code>handle</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-socialmediatype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"63e0fdf4-78bc-4ea9-a5f7-f1e1906634e2","name":"Create a Registration-Socialmediatype relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@tommiecassin\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/registration-socialmediatype/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"263"},{"key":"ETag","value":"W/\"107-wFBPjyERJmOoCtJx2i22IqLRuqE\""},{"key":"Date","value":"Mon, 16 Oct 2023 18:08:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8c6c6aff-1e6d-4dc1-9ece-4bf03ced5004\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@tommiecassin\",\n    \"updatedAt\": \"2023-10-16T18:08:04.099Z\",\n    \"createdAt\": \"2023-10-16T18:08:04.099Z\"\n}"}],"_postman_id":"6f13c9c1-ce28-4aa1-ac6f-66ff93a5d5ae"},{"name":"Read a Registration-Socialmediatype relationship","id":"be9b41b0-af86-4b9c-bb91-0c6913914030","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registration-socialmediatype/v2/:id","description":"<p>Retrieve the single Registration-Socialmediatype relationship record of the supplied Registration-Socialmediatype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>registrations</td>\n<td>socialmediatypes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-socialmediatype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"0bdc95e5-a09a-4049-aa23-f802e7ed276f","description":{"content":"<p>Example: 8c6c6aff-1e6d-4dc1-9ece-4bf03ced5004</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registration-Socialmediatype ID here>","key":"id"}]}},"response":[{"id":"e3da3a4a-9ec8-441c-8dbe-601f27271f3b","name":"Read a Registration-Socialmediatype relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/registration-socialmediatype/v2/:id","protocol":"http","host":["localhost"],"port":"5050","path":["registration-socialmediatype","v2",":id"],"variable":[{"key":"id","value":"8c6c6aff-1e6d-4dc1-9ece-4bf03ced5004"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"482"},{"key":"ETag","value":"W/\"1e2-SyWdUT89rlv8at5gPYIFNIMY8qA\""},{"key":"Date","value":"Mon, 16 Oct 2023 18:11:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8c6c6aff-1e6d-4dc1-9ece-4bf03ced5004\",\n    \"registrationId\": \"5b681e70-e8de-4462-b858-3e936a2aeea3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@tommiecassin\",\n    \"createdAt\": \"2023-10-16T18:08:04.099Z\",\n    \"updatedAt\": \"2023-10-16T18:08:04.099Z\",\n    \"_links\": {\n        \"parents\": {\n            \"registration\": {\n                \"href\": \"/registrations/v2/5b681e70-e8de-4462-b858-3e936a2aeea3\"\n            },\n            \"socialmediatype\": {\n                \"href\": \"/socialmediatypes/v2/fafdbe9e-f6eb-446b-a4ed-145f33e21b42\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"3555fe72-b050-42f3-b40a-a259e5f4dd1c","name":"Read a Registration-Socialmediatype relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/registration-socialmediatype/v2/:id?include=registrations,socialmediatypes","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["registration-socialmediatype","v2",":id"],"query":[{"key":"include","value":"registrations,socialmediatypes"}],"variable":[{"key":"id","value":"6273f284-9f1e-4763-ae9e-06fa6f5cc0a6","description":"Example: 8c6c6aff-1e6d-4dc1-9ece-4bf03ced5004"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2654"},{"key":"ETag","value":"W/\"a5e-tfZnJTr8RoTY1XpgDKAQizcBdsE\""},{"key":"Date","value":"Mon, 08 Apr 2024 18:19:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6273f284-9f1e-4763-ae9e-06fa6f5cc0a6\",\n    \"registrationId\": \"f813e216-cd8b-40de-8cbf-fea15e41dea7\",\n    \"socialmediatypeId\": \"c19e9955-74eb-4303-b8d7-d34973d03930\",\n    \"handle\": \"Jett-Sawyer-Reichert\",\n    \"createdAt\": \"2023-07-25T17:59:32.518Z\",\n    \"updatedAt\": \"2023-07-25T17:59:32.518Z\",\n    \"registrations\": {\n        \"collection\": [\n            {\n                \"id\": \"f813e216-cd8b-40de-8cbf-fea15e41dea7\",\n                \"producerRecordIdentifier\": \"uiCJE\",\n                \"language\": \"Chuvash\",\n                \"status\": \"Confirmed\",\n                \"gender\": null,\n                \"pronoun\": \"He/ Him/ His\",\n                \"ethnicity\": \"Hispanic or Latino\",\n                \"badgeIdentifier\": \"YPNPc\",\n                \"firstName\": \"Jett\",\n                \"middleName\": \"Sawyer\",\n                \"lastName\": \"Reichert\",\n                \"prefix\": \"Mrs.\",\n                \"suffix\": \"III\",\n                \"preferredName\": \"Hellen\",\n                \"title\": \"Forward Mobility Director\",\n                \"email\": \"Eladio.Schultz89@hotmail.com\",\n                \"emailTwo\": \"Paxton.Douglas92@hotmail.com\",\n                \"website\": \"https://steep-load.name\",\n                \"organization\": \"Administrator\",\n                \"occupation\": \"Liaison\",\n                \"phoneNumber\": \"(802) 558-4470 x7071\",\n                \"mobilePhoneNumber\": \"1-651-439-3691\",\n                \"faxNumber\": \"750.955.7488\",\n                \"otherPhoneNumber\": \"300-867-5718 x6436\",\n                \"degree\": \"Product Data Executive\",\n                \"credentials\": \"Direct Paradigm Producer\",\n                \"region\": \"Florida\",\n                \"dateOfBirth\": \"2023-07-25T17:59:32.509Z\",\n                \"customAttributes\": \"{\\\"foo\\\":\\\"Abm@No31IG\\\",\\\"bar\\\":\\\"0:[pW|y<C*\\\",\\\"bike\\\":\\\"R-No)Wq2Dl\\\",\\\"a\\\":\\\"}&bOIf}bx-\\\",\\\"b\\\":7446869695266816,\\\"name\\\":\\\"bMnLo!?#{l\\\",\\\"prop\\\":3360579399974912}\",\n                \"isFirstTime\": false,\n                \"isPreviousAttendee\": false,\n                \"registeredAt\": \"2023-07-25T17:59:32.510Z\",\n                \"method\": \"Online\",\n                \"isVip\": true,\n                \"ssoIdentifier\": \"2jAWy\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1216.jpg\",\n                \"createdAt\": \"2023-07-25T17:59:32.510Z\",\n                \"updatedAt\": \"2023-07-25T17:59:32.510Z\",\n                \"eventId\": \"5ec8d961-c2d7-4224-aff5-3322bedb52d1\",\n                \"membershiptypeId\": \"c7c47e5e-192e-44bc-bdbf-8c65397fbbc9\",\n                \"registrationorderId\": \"b527a598-8ee3-4b70-bea4-5b28ae7b8669\",\n                \"registrationtypeId\": \"330a0812-4ca9-4d9b-b410-ee7bb4cdcd0b\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"socialmediatypes\": {\n        \"collection\": [\n            {\n                \"id\": \"c19e9955-74eb-4303-b8d7-d34973d03930\",\n                \"name\": \"Twitter skwvaucavsyomvzffinckmgumzigb\",\n                \"domain\": \"twin-dahlia.com\",\n                \"createdAt\": \"2023-07-25T17:59:32.515Z\",\n                \"updatedAt\": \"2023-07-25T17:59:32.515Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"registration\": {\n                \"href\": \"/registrations/v2/f813e216-cd8b-40de-8cbf-fea15e41dea7\"\n            },\n            \"socialmediatype\": {\n                \"href\": \"/socialmediatypes/v2/c19e9955-74eb-4303-b8d7-d34973d03930\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"be9b41b0-af86-4b9c-bb91-0c6913914030"},{"name":"Delete a Registration-Socialmediatype relationship","id":"88f13847-c39c-41ab-a95c-ac9b3d9b500f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/registration-socialmediatype/v2/:id","description":"<p>Permanently delete the Registration-Socialmediatype relationship record of the supplied Registration-Socialmediatype ID. Destroying a relationship record will not destroy the supplied Registration or the supplied Socialmediatype, it will instead cause the supplied Registration and Socialmediatype to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["registration-socialmediatype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"6c3cf433-d87a-4573-b483-2081a19fd88a","description":{"content":"<p>Example: 2b735c4a-d5a4-47c2-b9c9-ff51896a7a2e</p>\n","type":"text/plain"},"type":"any","value":"<Enter Registration-Socialmediatype ID here>","key":"id"}]}},"response":[{"id":"58d03c52-38e7-416c-947c-e604315d399c","name":"Delete a Registration-Socialmediatype relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/registration-socialmediatype/v2/:id","protocol":"http","host":["localhost"],"port":"5050","path":["registration-socialmediatype","v2",":id"],"variable":[{"key":"id","value":"2b735c4a-d5a4-47c2-b9c9-ff51896a7a2e"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"271"},{"key":"ETag","value":"W/\"10f-EHmquVq5z1M9jpm1Ez84Fmh44Lo\""},{"key":"Date","value":"Mon, 16 Oct 2023 18:18:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2b735c4a-d5a4-47c2-b9c9-ff51896a7a2e\",\n    \"registrationId\": \"1c21c384-8ce2-44a9-8822-263274d9dac3\",\n    \"socialmediatypeId\": \"d653918b-c925-4b51-b7dc-9169c789d691\",\n    \"handle\": \"merritt-keefe\",\n    \"createdAt\": \"2023-09-20T16:24:39.087Z\",\n    \"updatedAt\": \"2023-09-20T16:24:39.087Z\"\n}"}],"_postman_id":"88f13847-c39c-41ab-a95c-ac9b3d9b500f"}],"id":"74ecbbc5-d76b-4670-b18b-c0926d9f7142","description":"<p>The Registration-Socialmediatype entity provides a way to interact with the relationships between Registration and Socialmediatype. A single Registration can have many Socialmediatypes and a single Socialmediatype can belong to many Registrations.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>registrationId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Registration.</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Socialmediatype.</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>String</td>\n<td>The social media handle of the registrant.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"74ecbbc5-d76b-4670-b18b-c0926d9f7142","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}}],"id":"d605f50f-3ef5-4bf7-92e0-3abb91ece2b8","_postman_id":"d605f50f-3ef5-4bf7-92e0-3abb91ece2b8","description":"","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Presentation","item":[{"name":"Rooms (v2)","item":[{"name":"List Rooms","id":"aeefd4a3-3aac-4bc0-901d-c7ba140ae2d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/rooms/v2","description":"<p>Retrieve a collection of Room records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["rooms","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"69b3066c-c08a-4b9d-8f8b-5f565edb64a5","name":"List Rooms","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/rooms/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["rooms","v2"],"query":[{"key":"filter[name][eq]","value":"Fantastic Shoes Summit September","description":"filter rooms where name equals to \"Fantastic Shoes Summit September\"","disabled":true},{"key":"filter[name][substring]","value":"ame","description":"filter rooms where name has a substring \"ame\"","disabled":true},{"key":"filter[name][startsWith]","value":"Troy","description":"filter rooms where name starts with \"Troy\"","disabled":true},{"key":"filter[displayName][eq]","value":"industrial2022","description":"filter rooms where displayName equals \"industrial 2022\"","disabled":true},{"key":"filter[id][eq]","value":"07830279-3257-46c2-a632-9b0502ec314b","description":"get the rooms with id \"07830279-3257-46c2-a632-9b0502ec314b\"","disabled":true},{"key":"filter[id][in][]","value":"985e721b-7538-41c4-99cc-7fa65dbbedf7","description":"filter rooms where id matches one of the values provided. Pass more filter queries like that to pass more items to the array. See example","disabled":true},{"key":"filter[id][in][]","value":"e5c5ea8e-4aaf-4acf-8481-c0e99931904f","description":"filter rooms where id matches one of the values provided. Pass more filter queries like that to pass more items to the array. See example","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"filter rooms that has been created on or after 2022-04-01 using greater than or equal operator","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filter rooms that has been created on or before 2022-04-08 using less than or equal operator","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filter rooms that has been updated before 2022-04-12 using less than operator","disabled":true},{"key":"filter[createdAt][eq]","value":"2022-03-31T15:27:01.076Z","description":"filter rooms that has been created on 2022-03-31T15:27:01.076Z","disabled":true},{"key":"filter[createdAt]","value":"2022-03-31T15:27:01.076Z","description":"filter rooms that has been created on 2022-03-31T15:27:01.076Z. If operator is not provided, equals operator is assumed","disabled":true},{"key":"filter[producerRecordIdentifier][is]","value":"null","description":"filter rooms with producerRecordIdentifier being null ","disabled":true},{"key":"filter[locationName][like]","value":"http://%.com","description":"filter rooms where locationName is like \"http://%.com\"","disabled":true},{"key":"filter[createdAt][gt]","value":"2022-05-14T21:41:49.525Z","description":"filter rooms that has been created after 2022-05-14T21:41:49.525Z using greater than operator","disabled":true},{"key":"page","value":"2","description":"get the second page of room records using page query param","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Jun 2023 17:46:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"30593"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"7781-3XlgURrAxcE36B/HkIImUU9vzgs\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"a026ab45-2ac1-4546-8db0-90afc7ae61a9\",\n            \"eventId\": \"2c047c90-21af-4f8f-b324-dd6d12295ea0\",\n            \"name\": \"Sleek Sports Room\",\n            \"displayName\": \"SS Group\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc9a\",\n            \"locationName\": \"Blue Spring\",\n            \"createdAt\": \"2023-05-25T07:39:43.765Z\",\n            \"updatedAt\": \"2023-05-25T07:39:43.765Z\"\n        },\n        {\n            \"id\": \"7e5a2060-3ebd-4c2a-912d-3a235bd05fc4\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"name\": \"Charleston Great Room\",\n            \"displayName\": \"Charleston Great Room\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc9b\",\n            \"locationName\": \"Jedidiahmouth\",\n            \"createdAt\": \"2023-06-12T20:16:29.292Z\",\n            \"updatedAt\": \"2023-06-12T20:16:29.292Z\"\n        }    \n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"aeefd4a3-3aac-4bc0-901d-c7ba140ae2d7"},{"name":"Create a Room","id":"bd52f04d-058c-4eaf-8ac2-0c342b0824a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Freeman Digital Room\",\n    \"displayName\": \"Freeman Digital Room\",\n    \"locationName\": \"Dallas\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4a\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/rooms/v2","description":"<p>Create a new Room record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>1</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["rooms","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"72dbc935-1876-4500-b62d-cffdafd90422","name":"Create a Room","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Freeman Digital Room\",\n    \"displayName\": \"Freeman Digital Room\",\n    \"locationName\": \"Dallas\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4a\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/rooms/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Jun 2023 17:57:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"148-DYNGN87DeAztQVyoUwF8MEtac4c\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fe91e770-3b8f-4b14-a3de-4ae854d1d925\",\n    \"name\": \"Freeman Digital Room\",\n    \"displayName\": \"Freeman Digital Room\",\n    \"locationName\": \"Dallas\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4a\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"updatedAt\": \"2023-06-13T17:57:26.311Z\",\n    \"createdAt\": \"2023-06-13T17:57:26.311Z\"\n}"}],"_postman_id":"bd52f04d-058c-4eaf-8ac2-0c342b0824a9"},{"name":"Read a Room","id":"61e2f579-d366-42ee-af4b-e6c1fb4056df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/rooms/v2/:roomId","description":"<p>Retrieve the single Room record of the supplied Room ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["rooms","v2",":roomId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"66f69078-d606-4aa8-8de0-fdcd5c15cfc0","description":{"content":"<p>Example: fe91e770-3b8f-4b14-a3de-4ae854d1d925</p>\n","type":"text/plain"},"type":"any","value":"<Enter Room ID here>","key":"roomId"}]}},"response":[{"id":"c06b4952-80e8-4b72-ba9a-26081794df21","name":"Read a Room","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.fuzion.freeman.com/rooms/v2/:roomId","protocol":"https","host":["api","fuzion","freeman","com"],"path":["rooms","v2",":roomId"],"variable":[{"key":"roomId","value":"fe91e770-3b8f-4b14-a3de-4ae854d1d925"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Jun 2023 17:58:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"148-ZbOVmze3xNN7LT3T5ov8frBXNiE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fe91e770-3b8f-4b14-a3de-4ae854d1d925\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"name\": \"Freeman Digital Room\",\n    \"displayName\": \"Freeman Digital Room\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4a\",\n    \"locationName\": \"Dallas\",\n    \"createdAt\": \"2023-06-13T17:57:26.311Z\",\n    \"updatedAt\": \"2023-06-13T17:57:26.311Z\"\n}"},{"id":"43573be2-f817-4b21-a3f2-876a7da24158","name":"Read a Room with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/rooms/v2/:roomId?include=events","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["rooms","v2",":roomId"],"query":[{"key":"include","value":"events"}],"variable":[{"key":"roomId","value":"3dd15a06-1b8f-40fe-831c-4655e92d49e2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1274"},{"key":"ETag","value":"W/\"4fa-M2bza9tl+emBhj7GJHElgjruAHI\""},{"key":"Date","value":"Mon, 10 Jun 2024 17:02:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3dd15a06-1b8f-40fe-831c-4655e92d49e2\",\n    \"eventId\": \"f64555e5-9f91-4820-a329-4a17d939169c\",\n    \"name\": \"South Sammie Hall A\",\n    \"displayName\": \"Hall A\",\n    \"producerRecordIdentifier\": \"tefa1\",\n    \"locationName\": \"Port Mercedes\",\n    \"createdAt\": \"2023-05-19T00:02:47.975Z\",\n    \"updatedAt\": \"2023-05-19T00:02:47.975Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"f64555e5-9f91-4820-a329-4a17d939169c\",\n                \"shortName\": \"Oriental Beauty Summit 2025\",\n                \"fullName\": \"Handcrafted Practical Rubber Bike Industrial Summit 2025\",\n                \"systemName\": \"orientalbeautysummit2025-03a8\",\n                \"website\": null,\n                \"description\": \"Optional 3rd generation middleware leverage sexy experiences\",\n                \"startsAt\": \"2023-05-19T00:02:47.973Z\",\n                \"endsAt\": \"2023-05-20T00:02:47.970Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"0xCcCecF6F8f\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-05-19T00:02:47.973Z\",\n                \"updatedAt\": \"2023-05-19T00:02:47.973Z\",\n                \"organizationId\": \"cd1831f3-405a-4d64-85cf-25e063597a28\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/f64555e5-9f91-4820-a329-4a17d939169c\"\n            }\n        },\n        \"children\": {\n            \"sessions\": {\n                \"href\": \"/sessions/v2?filter[roomId][eq]=3dd15a06-1b8f-40fe-831c-4655e92d49e2\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"61e2f579-d366-42ee-af4b-e6c1fb4056df"},{"name":"Update a Room","id":"236291b0-a7d7-4acb-9142-baba0960c49b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"displayName\": \"Transform mission-critical applications \",\n    \"locationName\": \"Texas\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/rooms/v2/:roomId","description":"<p>Modify one or more fields on the single Room record of the supplied Room ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>Yes</td>\n<td>1</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["rooms","v2",":roomId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"f9db487d-e7f5-41a0-b939-7dd36d5b6d8e","description":{"content":"<p>Example: fe91e770-3b8f-4b14-a3de-4ae854d1d925</p>\n","type":"text/plain"},"type":"any","value":"<Enter Room ID here>","key":"roomId"}]}},"response":[{"id":"99946291-d132-472d-b5e7-e515e4169671","name":"Update a Room","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"displayName\": \"Transform mission-critical applications \",\n    \"locationName\": \"Texas\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/rooms/v2/:roomId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["rooms","v2",":roomId"],"variable":[{"key":"roomId","value":"fe91e770-3b8f-4b14-a3de-4ae854d1d925","description":"Room ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Jun 2023 18:05:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"345"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"159-IBwDD/PJcM26/cG70IOgXGV6OiU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fe91e770-3b8f-4b14-a3de-4ae854d1d925\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"name\": \"Generic Beauty Room\",\n    \"displayName\": \"Transform mission-critical applications\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4a\",\n    \"locationName\": \"Texas\",\n    \"createdAt\": \"2023-06-13T17:57:26.311Z\",\n    \"updatedAt\": \"2023-06-13T18:05:19.094Z\"\n}"}],"_postman_id":"236291b0-a7d7-4acb-9142-baba0960c49b"},{"name":"Destroy a Room","id":"ffe46da6-2da8-4acb-827d-dc2afdc3ee0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/rooms/v2/:roomId","description":"<p>Permanently delete the Room record of the supplied Room ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["rooms","v2",":roomId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"3ef8ba3f-d5c4-43e8-b817-dbbac6cb768f","description":{"content":"<p>Example: fe91e770-3b8f-4b14-a3de-4ae854d1d925</p>\n","type":"text/plain"},"type":"any","value":"<Enter Room ID here>","key":"roomId"}]}},"response":[{"id":"f10e5c76-f7f3-42b7-b583-25e8be6b8c94","name":"Destroy a room","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/rooms/v2/:roomId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["rooms","v2",":roomId"],"variable":[{"key":"roomId","value":"fe91e770-3b8f-4b14-a3de-4ae854d1d925","description":"Room ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Jun 2023 18:06:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"345"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"159-IBwDD/PJcM26/cG70IOgXGV6OiU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fe91e770-3b8f-4b14-a3de-4ae854d1d925\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"name\": \"Generic Beauty Room\",\n    \"displayName\": \"Transform mission-critical applications\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4a\",\n    \"locationName\": \"Texas\",\n    \"createdAt\": \"2023-06-13T17:57:26.311Z\",\n    \"updatedAt\": \"2023-06-13T18:05:19.094Z\"\n}"}],"_postman_id":"ffe46da6-2da8-4acb-827d-dc2afdc3ee0f"}],"id":"4371d1a7-c0cf-4845-a26e-a1dffcca2cc7","description":"<p>Rooms are defined as the four-walled physical space or area where a Session is conducted.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name, letter, number, or whatever is used to label the room.</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td>The name that will appear on signage or displays.</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>String</td>\n<td>The name used to identify where the room is located.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4371d1a7-c0cf-4845-a26e-a1dffcca2cc7","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Speakers (v2)","item":[{"name":"Examples","item":[{"name":"List Speakers based on Disclosures","id":"44f2f2d3-21a0-45c5-8e94-a3d361ba09cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[disclosureId][in][]=43db5cde-0d00-4057-ba8b-b41bd2966cc6&filter[disclosureId][in][]=4ce635ab-301d-434e-b2de-ed640e8b5c03","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the speakers GET endpoint and applying the filter based on the \"disclosureId\".</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[disclosureId][in][]","value":"43db5cde-0d00-4057-ba8b-b41bd2966cc6"},{"key":"filter[disclosureId][in][]","value":"4ce635ab-301d-434e-b2de-ed640e8b5c03"}],"variable":[]}},"response":[{"id":"c0134686-a5ce-4448-ac00-f21af780f30e","name":"List Speakers based on Disclosures","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[disclosureId][in][]=49fc2850-5848-4916-abf6-7c216f06a528&filter[disclosureId][in][]=43db5cde-0d00-4057-ba8b-b41bd2966cc6","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2"],"query":[{"key":"filter[disclosureId][in][]","value":"49fc2850-5848-4916-abf6-7c216f06a528"},{"key":"filter[disclosureId][in][]","value":"43db5cde-0d00-4057-ba8b-b41bd2966cc6"},{"key":"filter[disclosureId][in][]","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Jun 2023 15:28:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3913"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Thu Jun 22 2023 20:39:43 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"f49-STaI8uGBmQDn3ZyDKigfQaCSnl8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"671b9ce3-87e4-4c4e-93e4-ca9144eb69af\",\n            \"producerRecordIdentifier\": \"36b84834-54ef-4c8b-bdf4-18924493296b\",\n            \"prefix\": null,\n            \"preferredName\": null,\n            \"firstName\": \"Arvel\",\n            \"middleName\": null,\n            \"lastName\": \"Leffler\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": null,\n            \"organization\": \"Heavy Hauling LLC\",\n            \"city\": \"Dallas\",\n            \"state\": \"Texas\",\n            \"country\": null,\n            \"email\": \"heavyhauling@gmail.com\",\n            \"emailTwo\": null,\n            \"phoneNumber\": \"9890909890\",\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": true,\n            \"website\": \"www.heavyhauling.URL.com\",\n            \"headshotUrl\": null,\n            \"biographyText\": null,\n            \"customAttributes\": {\n                \"name\": \"John\"\n            },\n            \"createdAt\": \"2023-04-27T07:11:29.472Z\",\n            \"updatedAt\": \"2023-04-27T07:11:29.472Z\",\n            \"eventId\": \"f8577e48-0164-4674-858b-6acf5c4c82bc\"\n        },\n        {\n            \"id\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n            \"producerRecordIdentifier\": \"0a9be8c3-6638-47f6-96cd-4a25444b3c3f\",\n            \"prefix\": null,\n            \"preferredName\": null,\n            \"firstName\": \"Brian\",\n            \"middleName\": null,\n            \"lastName\": \"MacDonald\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": null,\n            \"organization\": null,\n            \"city\": null,\n            \"state\": null,\n            \"country\": null,\n            \"email\": \"Brian.MacDonald@email.non\",\n            \"emailTwo\": null,\n            \"phoneNumber\": null,\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": \"http://www.Brian_userurl.com\",\n            \"headshotUrl\": null,\n            \"biographyText\": null,\n            \"customAttributes\": {\n                \"EventUserCustom1\": \"Brian Event Custom 1 value\",\n            },\n            \"createdAt\": \"2023-02-24T06:35:01.460Z\",\n            \"updatedAt\": \"2023-02-24T06:35:01.460Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\"\n        },\n        {\n            \"id\": \"99d2da18-d5be-4625-9699-64d37252d0b4\",\n            \"producerRecordIdentifier\": \"44c240cc-1d88-43c4-817c-1a78c62e5a94\",\n            \"prefix\": null,\n            \"preferredName\": null,\n            \"firstName\": \"Susan\",\n            \"middleName\": null,\n            \"lastName\": \"Durham\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": null,\n            \"organization\": null,\n            \"city\": null,\n            \"state\": null,\n            \"country\": null,\n            \"email\": \"Susan_Durham@email.non\",\n            \"emailTwo\": null,\n            \"phoneNumber\": null,\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": \"http://www.Susan_userurl.com\",\n            \"headshotUrl\": null,\n            \"biographyText\": null,\n            \"customAttributes\": {\n                \"EventUserCustom1\": \"Susan Event Custom 1 value\",\n                \"EventUserCustom2\": \"Susan Event Custom 2 value\",\n                \"EventUserCustom3\": \"Susan Event Custom 3 value\",\n                \"EventUserCustom4\": \"Susan Event Custom 4 value\",\n                \"EventUserCustom5\": \"Susan Event Custom 5 value\"\n            },\n            \"createdAt\": \"2023-02-24T06:34:43.903Z\",\n            \"updatedAt\": \"2023-02-24T06:34:43.903Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\"\n        },\n        {\n            \"id\": \"b04d689c-54f7-4736-bd5c-d1f56fd44462\",\n            \"producerRecordIdentifier\": \"1fc454d6-c943-443b-8f7f-0b531f98cb9f\",\n            \"prefix\": null,\n            \"preferredName\": null,\n            \"firstName\": \"Suresh\",\n            \"middleName\": null,\n            \"lastName\": \"Magge\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": null,\n            \"organization\": null,\n            \"city\": null,\n            \"state\": null,\n            \"country\": null,\n            \"email\": \"Suresh_Magge@email.non\",\n            \"emailTwo\": null,\n            \"phoneNumber\": null,\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": \"http://www.Suresh_userurl.com\",\n            \"headshotUrl\": null,\n            \"biographyText\": null,\n            \"customAttributes\": null,\n            \"createdAt\": \"2023-02-24T06:34:38.939Z\",\n            \"updatedAt\": \"2023-02-24T06:34:38.939Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 4,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 4\n    }\n}"}],"_postman_id":"44f2f2d3-21a0-45c5-8e94-a3d361ba09cb"},{"name":"List Speakers based on Socialmediatype Handle","id":"a9b7df44-0484-4af1-98d9-af70065adae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[handle][eq]=MyFaceBookHandle","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the speakers GET endpoint and applying the filter based on the \"handle\".</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[handle][eq]","value":"MyFaceBookHandle"}],"variable":[]}},"response":[{"id":"8370e8fb-0f0e-4807-9c64-e6069b218a07","name":"List Speakers based on Socialmedia Handle","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[handle][eq]=FaceBook handle","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2"],"query":[{"key":"filter[handle][eq]","value":"FaceBook handle"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Jun 2023 15:41:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1082"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Thu Jun 22 2023 20:39:43 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"43a-djsNjVq69TW2cRjbHC6obnAqvdE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n            \"producerRecordIdentifier\": \"0a9be8c3-6638-47f6-96cd-4a25444b3c3f\",\n            \"prefix\": null,\n            \"preferredName\": null,\n            \"firstName\": \"Brian\",\n            \"middleName\": null,\n            \"lastName\": \"MacDonald\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": null,\n            \"organization\": null,\n            \"city\": null,\n            \"state\": null,\n            \"country\": null,\n            \"email\": \"Brian.MacDonald@email.non\",\n            \"emailTwo\": null,\n            \"phoneNumber\": null,\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": \"http://www.Brian_userurl.com\",\n            \"headshotUrl\": null,\n            \"biographyText\": null,\n            \"customAttributes\": {\n                \"EventUserCustom1\": \"Brian Event Custom 1 value\",\n                \"EventUserCustom2\": \"Brian Event Custom 2 value\",\n                \"EventUserCustom3\": \"Brian Event Custom 3 value\",\n                \"EventUserCustom4\": \"Brian Event Custom 4 value\",\n                \"EventUserCustom5\": \"Brian Event Custom 5 value\"\n            },\n            \"createdAt\": \"2023-02-24T06:35:01.460Z\",\n            \"updatedAt\": \"2023-02-24T06:35:01.460Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"a9b7df44-0484-4af1-98d9-af70065adae8"},{"name":"List Speakers based on Sessions","id":"ff570008-3e81-452f-8868-48931d2f3804","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[sessionId][in][]=cca52a07-59d4-4f3b-8aaf-ed7169bc3eea","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the speakers GET endpoint and applying the filter based on the \"sessionId\" to retrieve all moderators tied to a session</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[sessionId][in][]","value":"cca52a07-59d4-4f3b-8aaf-ed7169bc3eea"}],"variable":[]}},"response":[{"id":"46aad0af-e969-4622-80f2-b05e6fdf0c83","name":"List Speakers based on Sessions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[sessionId][in][]=cca52a07-59d4-4f3b-8aaf-ed7169bc3eea","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2"],"query":[{"key":"filter[sessionId][in][]","value":"cca52a07-59d4-4f3b-8aaf-ed7169bc3eea"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 17:38:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2201"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"899-aVy+PXZmDkJh0yvlDdprJ6c63Ao\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"e41ad4b0-ff3a-4ac5-b0fe-8653eee9f80a\",\n            \"producerRecordIdentifier\": \"5f39567f-e873-47e8-b9a8-55577592dcea\",\n            \"prefix\": null,\n            \"preferredName\": \"Julia Lee, JD\",\n            \"firstName\": \"Julia\",\n            \"middleName\": null,\n            \"lastName\": \"Lee, JD\",\n            \"suffix\": null,\n            \"degree\": \"JD\",\n            \"title\": null,\n            \"organization\": null,\n            \"city\": \"Dallas\",\n            \"state\": \"Texas\",\n            \"country\": \"USA\",\n            \"email\": \"jlee@leevisionassociates.com\",\n            \"emailTwo\": \"jl26@gmail.com\",\n            \"phoneNumber\": \"(610)812-4539\",\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": null,\n            \"headshotUrl\": \"https://orchoepfiles.blob.core.windows.net/profile-photos/aao2022%2Fjlee%40leevisionassociates.com.jpg?1660629328854\",\n            \"biographyText\": null,\n            \"customAttributes\": {\n                \"EventUserCustom1\": \"Practice Administrator, Lee Vision Associates, LLC\",\n                \"EventUserCustom2\": \"Senior Instructor\",\n                \"EventUserCustom3\": null,\n                \"EventUserCustom4\": null,\n                \"EventUserCustom5\": null\n            },\n            \"createdAt\": \"2023-06-08T09:57:05.584Z\",\n            \"updatedAt\": \"2023-06-08T09:57:05.584Z\",\n            \"eventId\": \"57f04ce4-7866-47aa-aaed-fe93f50203b2\"\n        },\n        {\n            \"id\": \"486ca2e4-9140-4b25-b3d8-4c193a1b0033\",\n            \"producerRecordIdentifier\": \"8197590d-623d-4b76-8e8e-a48acbde6dc8\",\n            \"prefix\": null,\n            \"preferredName\": \"Elise Levine, MA, CRC, OCS\",\n            \"firstName\": \"Elise\",\n            \"middleName\": null,\n            \"lastName\": \"Levine, MA, CRC, OCS\",\n            \"suffix\": null,\n            \"degree\": \"MA, CRC, OCS\",\n            \"title\": null,\n            \"organization\": null,\n            \"city\": \"Dallas\",\n            \"state\": \"Texas\",\n            \"country\": \"USA\",\n            \"email\": \"elise@eyemedmanagement.com\",\n            \"emailTwo\": \"el20002@gmail.com\",\n            \"phoneNumber\": \"(818) 300-1423\",\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": null,\n            \"headshotUrl\": \"https://orchoepfiles.blob.core.windows.net/profile-photos/aao2022%2Felise%40eyemedmanagement.com.jpg?1660629517025\",\n            \"biographyText\": null,\n            \"customAttributes\": {\n                \"EventUserCustom1\": \"Director of Business Development, Eye Med Management Solutions\",\n                \"EventUserCustom2\": \"Virtual Moderator\",\n                \"EventUserCustom3\": null,\n                \"EventUserCustom4\": null,\n                \"EventUserCustom5\": null\n            },\n            \"createdAt\": \"2023-06-08T09:57:06.288Z\",\n            \"updatedAt\": \"2023-06-08T09:57:06.288Z\",\n            \"eventId\": \"57f04ce4-7866-47aa-aaed-fe93f50203b2\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"ff570008-3e81-452f-8868-48931d2f3804"},{"name":"List Speakers based on Subsessions","id":"5ce38abd-90e6-41cd-88dd-5c932780cdc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[subsessionId][in][]=2e158bc5-4498-43bf-a8ef-a27e50b03cde","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the speakers GET endpoint and applying the filter based on the \"subsessionId\" to retrieve all presenters tied to a subsession</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[subsessionId][in][]","value":"2e158bc5-4498-43bf-a8ef-a27e50b03cde"}],"variable":[]}},"response":[{"id":"d8f1abfe-0a91-469e-a4e0-07570bad0ffe","name":"List Speakers based on Subsessions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[subsessionId][in][]=2e158bc5-4498-43bf-a8ef-a27e50b03cde","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2"],"query":[{"key":"filter[subsessionId][in][]","value":"2e158bc5-4498-43bf-a8ef-a27e50b03cde"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 19:16:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2787"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"ae3-SIBa9FwzIjRJqabKU5NVofCdaGs\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"4f7a2eb3-90ed-4284-b9e6-57d1a80e8ce2\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc65\",\n            \"prefix\": null,\n            \"preferredName\": null,\n            \"firstName\": \"Arvel\",\n            \"middleName\": null,\n            \"lastName\": \"Leffler\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": null,\n            \"organization\": \"Spiceworks\",\n            \"city\": null,\n            \"state\": null,\n            \"country\": null,\n            \"email\": \"sagarde@pcom.edu\",\n            \"emailTwo\": null,\n            \"phoneNumber\": null,\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": null,\n            \"headshotUrl\": null,\n            \"biographyText\": null,\n            \"customAttributes\": null,\n            \"createdAt\": \"2022-09-23T16:56:47.070Z\",\n            \"updatedAt\": \"2022-09-23T17:21:32.486Z\",\n            \"deletedAt\": null,\n            \"eventId\": \"f39ee6ba-f30c-4d49-b049-bf3c9f9f3a58\"\n        },\n        {\n            \"id\": \"ee6714ba-0d77-4c1c-8e6a-369dee571d43\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc6e\",\n            \"prefix\": \"Dr.\",\n            \"preferredName\": \"Jason\",\n            \"firstName\": \"Jason\",\n            \"middleName\": \"D\",\n            \"lastName\": \"Kermit\",\n            \"suffix\": null,\n            \"degree\": \"Doctor\",\n            \"title\": \"Physician\",\n            \"organization\": \"Microsoft\",\n            \"city\": \"Dallas\",\n            \"state\": \"Texas\",\n            \"country\": \"USA\",\n            \"email\": \"test@mail.com\",\n            \"emailTwo\": \"test@2email.com\",\n            \"phoneNumber\": \"888912345\",\n            \"mobileNumber\": \"989812376\",\n            \"faxNumber\": \"98127388112\",\n            \"otherPhoneNumber\": null,\n            \"isVip\": true,\n            \"website\": \"www.testweb.com\",\n            \"headshotUrl\": \"testshot.url.com\",\n            \"biographyText\": \"random123\",\n            \"customAttributes\": {\n                \"name\": \"test\"\n            },\n            \"createdAt\": \"2022-09-23T16:22:14.944Z\",\n            \"updatedAt\": \"2022-09-23T16:22:14.944Z\",\n            \"deletedAt\": null,\n            \"eventId\": \"170252e7-e71d-4bf4-b8eb-10e7564019b3\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 1000,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"5ce38abd-90e6-41cd-88dd-5c932780cdc8"},{"name":"List Speakers based on Posters","id":"8527c827-be08-44c7-9c69-845172cfb3a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[posterId][in][]=65b9d79d-c0c7-4735-a380-910c35a92a9a","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the speakers GET endpoint and applying the filter based on the \"posterId\" to retrieve all presenters tied to a poster</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[posterId][in][]","value":"65b9d79d-c0c7-4735-a380-910c35a92a9a"}],"variable":[]}},"response":[{"id":"8b152032-4731-46e1-9f9c-b1e98f992f00","name":"List Speakers based on Posters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2?filter[posterId][in][]=65b9d79d-c0c7-4735-a380-910c35a92a9a","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2"],"query":[{"key":"filter[posterId][in][]","value":"65b9d79d-c0c7-4735-a380-910c35a92a9a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 19:34:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2787"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"ae3-SIBa9FwzIjRJqabKU5NVofCdaGs\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"4f7a2eb3-90ed-4284-b9e6-57d1a80e8ce2\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc65\",\n            \"prefix\": null,\n            \"preferredName\": null,\n            \"firstName\": \"Arvel\",\n            \"middleName\": null,\n            \"lastName\": \"Leffler\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": null,\n            \"organization\": \"Spiceworks\",\n            \"city\": null,\n            \"state\": null,\n            \"country\": null,\n            \"email\": \"sagarde@pcom.edu\",\n            \"emailTwo\": null,\n            \"phoneNumber\": null,\n            \"mobileNumber\": null,\n            \"faxNumber\": null,\n            \"otherPhoneNumber\": null,\n            \"isVip\": false,\n            \"website\": null,\n            \"headshotUrl\": null,\n            \"biographyText\": null,\n            \"customAttributes\": null,\n            \"createdAt\": \"2022-09-23T16:56:47.070Z\",\n            \"updatedAt\": \"2022-09-23T17:21:32.486Z\",\n            \"deletedAt\": null,\n            \"eventId\": \"f39ee6ba-f30c-4d49-b049-bf3c9f9f3a58\"\n        },\n        {\n            \"id\": \"ee6714ba-0d77-4c1c-8e6a-369dee571d43\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc6e\",\n            \"prefix\": \"Dr.\",\n            \"preferredName\": \"Jason\",\n            \"firstName\": \"Jason\",\n            \"middleName\": \"D\",\n            \"lastName\": \"Kermit\",\n            \"suffix\": null,\n            \"degree\": \"Doctor\",\n            \"title\": \"Physician\",\n            \"organization\": \"Microsoft\",\n            \"city\": \"Dallas\",\n            \"state\": \"Texas\",\n            \"country\": \"USA\",\n            \"email\": \"test@mail.com\",\n            \"emailTwo\": \"test@2email.com\",\n            \"phoneNumber\": \"888912345\",\n            \"mobileNumber\": \"989812376\",\n            \"faxNumber\": \"98127388112\",\n            \"otherPhoneNumber\": null,\n            \"isVip\": true,\n            \"website\": \"www.testweb.com\",\n            \"headshotUrl\": \"testshot.url.com\",\n            \"biographyText\": \"random123\",\n            \"customAttributes\": {\n                \"name\": \"test\"\n            },\n            \"createdAt\": \"2022-09-23T16:22:14.944Z\",\n            \"updatedAt\": \"2022-09-23T16:22:14.944Z\",\n            \"deletedAt\": null,\n            \"eventId\": \"170252e7-e71d-4bf4-b8eb-10e7564019b3\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 1000,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"8527c827-be08-44c7-9c69-845172cfb3a8"}],"id":"cddceebf-ffaa-469d-8908-d572dcc3eb12","_postman_id":"cddceebf-ffaa-469d-8908-d572dcc3eb12","description":"","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"List Speakers","id":"6c857e27-3a64-4e58-b081-ff0f4b562678","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2","description":"<p>Retrieve a collection of Speaker records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>disclosureId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>title</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>city</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>state</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>country</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>email</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>website</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>biographyText</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>preferredName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>title</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>city</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>state</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>country</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>email</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"eed55237-f156-4365-99d6-005a62d62860","name":"List Speakers","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2"],"query":[{"key":"filter[firstName][eq]","value":"Tom","description":"filter speakers where First Name equal to \"Tom\"","disabled":true},{"key":"filter[lastName][substring]","value":"man","description":"filter speakers where Last Name has a subsstring of \"man\"","disabled":true},{"key":"filter[eventId][eq]","value":"135ea14e-a938-41ea-87c2-8c70b933d9d1","description":"filter speakers where eventId equal to \"135ea14e-a938-41ea-87c2-8c70b933d9d1\"","disabled":true},{"key":"filter[deletedAt][eq]","value":"null","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"producer123","description":"filter speakers where producerRecordIdentifier equal to \"producer123\"","disabled":true},{"key":"filter[producerRecordIdentifier][substring]","value":"cer12","description":"filter speakers where producerRecordIdentifier has a subsstring of \"cer12\"","disabled":true},{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 17:16:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"869855"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"d45df-3uTeGs6w7SIYa1fCL/vFGxvSibg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"5d3c379e-5a32-46e9-bc8c-5bbda5eed6d6\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4a\",\n            \"prefix\": \"Mr.\",\n            \"preferredName\": \"Tim\",\n            \"firstName\": \"Timothy\",\n            \"middleName\": \"R\",\n            \"lastName\": \"Wang\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": \"Director\",\n            \"organization\": \"Demo Organization\",\n            \"city\": \"Plano\",\n            \"state\": \"Texas\",\n            \"country\": \"USA\",\n            \"email\": \"test@mail.com\",\n            \"emailTwo\": \"test@2email.com\",\n            \"phoneNumber\": \"91111118888\",\n            \"mobileNumber\": \"7000089099\",\n            \"faxNumber\": \"8000000001\",\n            \"otherPhoneNumber\": null,\n            \"isVip\": true,\n            \"website\": \"www.testweb.com\",\n            \"headshotUrl\": \"testshot.url.com\",\n            \"biographyText\": \"random123\",\n            \"customAttributes\": {\n                \"name\": \"test\"\n            },\n            \"createdAt\": \"2022-09-23T16:21:57.489Z\",\n            \"updatedAt\": \"2022-09-23T16:21:57.614Z\",\n            \"eventId\": \"170252e7-e71d-4bf4-b8eb-10e7564019b3\"\n        },\n        {\n            \"id\": \"3e5e463f-1387-4caa-bcad-78237c0e19fc\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4b\",\n            \"prefix\": null,\n            \"preferredName\": \"John\",\n            \"firstName\": \"John\",\n            \"middleName\": \"E\",\n            \"lastName\": \"Doe\",\n            \"suffix\": \"Jr.\",\n            \"degree\": null,\n            \"title\": \"Sales Executive\",\n            \"organization\": \"AHA\",\n            \"city\": \"Dallas\",\n            \"state\": \"Texas\",\n            \"country\": \"USA\",\n            \"email\": \"test@mailfree.com\",\n            \"emailTwo\": \"test@2email.com\",\n            \"phoneNumber\": \"9998887777\",\n            \"mobileNumber\": \"9991111555\",\n            \"faxNumber\": \"345890000\",\n            \"otherPhoneNumber\": null,\n            \"isVip\": true,\n            \"website\": \"www.testweb.com\",\n            \"headshotUrl\": \"testshot.url.com\",\n            \"biographyText\": \"random123\",\n            \"customAttributes\": {\n                \"name\": \"test\"\n            },\n            \"createdAt\": \"2022-09-23T16:21:26.480Z\",\n            \"updatedAt\": \"2022-09-23T16:21:26.610Z\",\n            \"eventId\": \"170252e7-e71d-4bf4-b8eb-10e7564019b3\"\n        },\n        {\n            \"id\": \"53936e05-1216-416a-b042-cfc4b1dc6816\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cc4c\",\n            \"prefix\": \"Dr.\",\n            \"preferredName\": \"Dave\",\n            \"firstName\": \"Davis\",\n            \"middleName\": null,\n            \"lastName\": \"McGregor\",\n            \"suffix\": null,\n            \"degree\": null,\n            \"title\": \"Sales & Marketing Executive\",\n            \"organization\": \"Spicweorks\",\n            \"city\": \"Dallas\",\n            \"state\": \"Texas\",\n            \"country\": \"USA\",\n            \"email\": \"test@mail.com\",\n            \"emailTwo\": \"test@2email.com\",\n            \"phoneNumber\": \"91111118888\",\n            \"mobileNumber\": \"7000089099\",\n            \"faxNumber\": \"8000000001\",\n            \"otherPhoneNumber\": null,\n            \"isVip\": true,\n            \"website\": \"www.testweb.com\",\n            \"headshotUrl\": \"testshot.url.com\",\n            \"biographyText\": \"random123\",\n            \"customAttributes\": {\n                \"name\": \"test\"\n            },\n            \"createdAt\": \"2022-09-23T16:21:26.700Z\",\n            \"updatedAt\": \"2022-09-23T16:21:26.827Z\",\n            \"eventId\": \"170252e7-e71d-4bf4-b8eb-10e7564019b3\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 3,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 1000,\n        \"totalNumberOfRecords\": 3\n    }\n}"}],"_postman_id":"6c857e27-3a64-4e58-b081-ff0f4b562678"},{"name":"Create a Speaker","id":"0015b41e-baac-400f-90a5-433ffa6cd620","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"9df2a67d-c401-46fd-a892-cdac2bad278d\",\n    \"badgeIdentifier\": \"24bec58a-a7a8-4684-b2d9-f46e3ae3f115\",\n    \"producerRecordIdentifier\": \"24bec58a-a7a8-4684-b2d9-f46e3ae3f115\",\n    \"prefix\": \"Mrs.\",\n    \"preferredName\": \"Donavon\",\n    \"firstName\": \"Lambert\",\n    \"middleName\": \"Elisa\",\n    \"lastName\": \"Borer\",\n    \"suffix\": \"III\",\n    \"degree\": \"Product Operations Orchestrator\",\n    \"title\": \"District Operations Supervisor\",\n    \"organization\": \"Freeman Digital Solutions\",\n    \"email\": \"Cathrine.Orn60@yahoo.com\",\n    \"emailTwo\": \"Ursula61@example.net\",\n    \"phoneNumber\": \"855-879-8810\",\n    \"mobilePhoneNumber\": \"866-236-7603\",\n    \"faxNumber\": \"246-408-3832\",\n    \"otherPhoneNumber\": \"507-509-4440\",\n    \"isVip\": true,\n    \"website\": \"https://madilyn.name\",\n    \"headshotUrl\": \"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22undefined%22%20height%3D%22undefined%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22grey%22%2F%3E%3Ctext%20x%3D%22NaN%22%20y%3D%22NaN%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3Eundefinedxundefined%3C%2Ftext%3E%3C%2Fsvg%3E\",\n    \"customAttributes\": {\n        \"type\": \"plenary\",\n        \"embed\": \"12345\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2","description":"<p>Create a new Speaker record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n<th><strong>Default</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>Yes</td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>Yes</td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>degree</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>organization</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>Yes</td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>Boolean</td>\n<td></td>\n<td></td>\n<td></td>\n<td>false</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>biographyText</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-child-entities\">Includable Related Child Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>speaker-subsession</td>\n<td>session-speaker</td>\n<td>disclosure-speaker</td>\n</tr>\n<tr>\n<td>socialmediatype-speaker</td>\n<td>poster-speaker</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"f87662b4-afc3-4494-9e14-30f6b859f6cb","name":"Create a Speaker","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"41cfd93e-e95b-40e0-9498-df016423607f\",\n    \"producerRecordIdentifier\": \"24bec58a-a7a8-4684-b2d9-f46e3ae3f115\",\n    \"prefix\": \"Mrs.\",\n    \"preferredName\": \"Donavon\",\n    \"firstName\": \"Lambert\",\n    \"middleName\": \"Elisa\",\n    \"lastName\": \"Borer\",\n    \"suffix\": \"III\",\n    \"degree\": \"Product Operations Orchestrator\",\n    \"title\": \"District Operations Supervisor\",\n    \"organization\": \"Freeman Digital Solutions\",\n    \"city\": \"Plano\",\n    \"state\": \"Texas\",\n    \"country\": \"USA\",\n    \"email\": \"Cathrine.Orn60@yahoo.com\",\n    \"emailTwo\": \"Ursula61@example.net\",\n    \"phoneNumber\": \"855-879-8810\",\n    \"mobileNumber\": \"866-236-7603\",\n    \"faxNumber\": \"246-408-3832\",\n    \"otherPhoneNumber\": \"507-509-4440\",\n    \"isVip\": true,\n    \"website\": \"https://madilyn.name\",\n    \"headshotUrl\": \"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22undefined%22%20height%3D%22undefined%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22grey%22%2F%3E%3Ctext%20x%3D%22NaN%22%20y%3D%22NaN%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3Eundefinedxundefined%3C%2Ftext%3E%3C%2Fsvg%3E\",\n    \"biographyText\": \"Legacy\",\n    \"customAttributes\": {\n        \"type\": \"plenary\",\n        \"embed\": \"12345\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 17:18:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1351"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"547-TgSah8Ka/hUu+WbhY4es6MSjL/E\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c42d7f33-7b79-4be5-9cca-67dfe4d4aa24\",\n    \"eventId\": \"41cfd93e-e95b-40e0-9498-df016423607f\",\n    \"producerRecordIdentifier\": \"24bec58a-a7a8-4684-b2d9-f46e3ae3f115\",\n    \"prefix\": \"Mrs.\",\n    \"preferredName\": \"Donavon\",\n    \"firstName\": \"Lambert\",\n    \"middleName\": \"Elisa\",\n    \"lastName\": \"Borer\",\n    \"suffix\": \"III\",\n    \"degree\": \"Product Operations Orchestrator\",\n    \"title\": \"District Operations Supervisor\",\n    \"organization\": \"Freeman Digital Solutions\",\n    \"city\": \"Plano\",\n    \"state\": \"Texas\",\n    \"country\": \"USA\",\n    \"email\": \"Cathrine.Orn60@yahoo.com\",\n    \"emailTwo\": \"Ursula61@example.net\",\n    \"phoneNumber\": \"855-879-8810\",\n    \"mobileNumber\": \"866-236-7603\",\n    \"faxNumber\": \"246-408-3832\",\n    \"otherPhoneNumber\": \"507-509-4440\",\n    \"isVip\": true,\n    \"website\": \"https://madilyn.name\",\n    \"headshotUrl\": \"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22undefined%22%20height%3D%22undefined%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22grey%22%2F%3E%3Ctext%20x%3D%22NaN%22%20y%3D%22NaN%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3Eundefinedxundefined%3C%2Ftext%3E%3C%2Fsvg%3E\",\n    \"biographyText\": \"Legacy\",\n    \"customAttributes\": {\n        \"type\": \"plenary\",\n        \"embed\": \"12345\"\n    },\n    \"updatedAt\": \"2022-09-23T17:18:49.059Z\",\n    \"createdAt\": \"2022-09-23T17:18:49.059Z\"\n}"},{"id":"451328d8-359c-4da4-a91c-2ad89bcb9c07","name":"Create a Speaker with Related Child Entities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"producerRecordIdentifier\": \"24bec58a-a7a8-4684-b2d9-f46e3ae3f115\",\n    \"prefix\": \"Mrs.\",\n    \"preferredName\": \"Donavon\",\n    \"firstName\": \"Lambert\",\n    \"middleName\": \"Elisa\",\n    \"lastName\": \"Borer\",\n    \"suffix\": \"III\",\n    \"degree\": \"Product Operations Orchestrator\",\n    \"title\": \"District Operations Supervisor\",\n    \"organization\": \"Freeman Digital Solutions\",\n    \"email\": \"Cathrine.Orn60@yahoo.com\",\n    \"emailTwo\": \"Ursula61@example.net\",\n    \"phoneNumber\": \"855-879-8810\",\n    \"faxNumber\": \"246-408-3832\",\n    \"otherPhoneNumber\": \"507-509-4440\",\n    \"isVip\": true,\n    \"website\": \"https://madilyn.name\",\n    \"headshotUrl\": \"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22undefined%22%20height%3D%22undefined%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22grey%22%2F%3E%3Ctext%20x%3D%22NaN%22%20y%3D%22NaN%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3Eundefinedxundefined%3C%2Ftext%3E%3C%2Fsvg%3E\",\n    \"customAttributes\": {\n        \"type\": \"plenary\",\n        \"embed\": \"12345\"\n    },\n    \"speaker-subsession\": [\n        {\n           \"subsessionId\": \"2600d804-7309-4030-b57f-6bf30d3e608a\"\n        }\n    ],\n    \"session-speaker\": [\n        {\n            \"sessionId\":\"2091f7fc-e2fe-4c0d-8e04-816eb42f3e70\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1841"},{"key":"ETag","value":"W/\"731-g8qF4fCSnC8K97axw/H6tdAR730\""},{"key":"Date","value":"Thu, 21 Aug 2025 20:08:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c38fb262-73eb-4790-80eb-b9fb27e2ed19\",\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"producerRecordIdentifier\": \"24bec58a-a7a8-4684-b2d9-f46e3ae3f115\",\n    \"prefix\": \"Mrs.\",\n    \"preferredName\": \"Donavon\",\n    \"firstName\": \"Lambert\",\n    \"middleName\": \"Elisa\",\n    \"lastName\": \"Borer\",\n    \"suffix\": \"III\",\n    \"degree\": \"Product Operations Orchestrator\",\n    \"title\": \"District Operations Supervisor\",\n    \"organization\": \"Freeman Digital Solutions\",\n    \"email\": \"Cathrine.Orn60@yahoo.com\",\n    \"emailTwo\": \"Ursula61@example.net\",\n    \"phoneNumber\": \"855-879-8810\",\n    \"faxNumber\": \"246-408-3832\",\n    \"otherPhoneNumber\": \"507-509-4440\",\n    \"isVip\": true,\n    \"website\": \"https://madilyn.name\",\n    \"headshotUrl\": \"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22undefined%22%20height%3D%22undefined%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22grey%22%2F%3E%3Ctext%20x%3D%22NaN%22%20y%3D%22NaN%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3Eundefinedxundefined%3C%2Ftext%3E%3C%2Fsvg%3E\",\n    \"customAttributes\": {\n        \"type\": \"plenary\",\n        \"embed\": \"12345\"\n    },\n    \"updatedAt\": \"2025-08-21T20:08:18.713Z\",\n    \"createdAt\": \"2025-08-21T20:08:18.713Z\",\n    \"city\": null,\n    \"state\": null,\n    \"country\": null,\n    \"mobileNumber\": null,\n    \"biographyText\": null,\n    \"speaker-subsession\": {\n        \"collection\": [\n            {\n                \"id\": \"3437475f-b3ed-4309-bdcd-bc9dd996d7e9\",\n                \"speakerId\": \"c38fb262-73eb-4790-80eb-b9fb27e2ed19\",\n                \"subsessionId\": \"2600d804-7309-4030-b57f-6bf30d3e608a\",\n                \"updatedAt\": \"2025-08-21T20:08:18.762Z\",\n                \"createdAt\": \"2025-08-21T20:08:18.762Z\"\n            }\n        ]\n    },\n    \"session-speaker\": {\n        \"collection\": [\n            {\n                \"id\": \"9e3143d5-8809-4e34-808f-56992987ef75\",\n                \"speakerId\": \"c38fb262-73eb-4790-80eb-b9fb27e2ed19\",\n                \"sessionId\": \"2091f7fc-e2fe-4c0d-8e04-816eb42f3e70\",\n                \"updatedAt\": \"2025-08-21T20:08:18.773Z\",\n                \"createdAt\": \"2025-08-21T20:08:18.773Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"0015b41e-baac-400f-90a5-433ffa6cd620"},{"name":"Read a Speaker","id":"9d123304-92ab-48ef-a6e4-32b89070c198","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2/:speakerId","description":"<p>Retrieve the single Speaker record of the supplied Speaker ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td>subsessions</td>\n</tr>\n<tr>\n<td>disclosures</td>\n<td>socialmediatypes</td>\n<td>posters</td>\n</tr>\n<tr>\n<td>session-speaker</td>\n<td>speaker-subsession</td>\n<td>disclosure-speaker</td>\n</tr>\n<tr>\n<td>socialmediatype-speaker</td>\n<td>poster-speaker</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2",":speakerId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"49d329ed-886a-4d85-9931-77aedfc5c724","description":{"content":"<p>Example: 4f7a2eb3-90ed-4284-b9e6-57d1a80e8ce2</p>\n","type":"text/plain"},"type":"any","value":"<Enter Speaker ID here>","key":"speakerId"}]}},"response":[{"id":"08fa4de6-1e69-49dc-b73c-5cc030e1c373","name":"Read a Speaker","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2/:speakerId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2",":speakerId"],"variable":[{"key":"speakerId","value":"4f7a2eb3-90ed-4284-b9e6-57d1a80e8ce2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 17:20:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"812"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"32c-wga/YXNiJyCnCVuWKne0lZhhp9w\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4f7a2eb3-90ed-4284-b9e6-57d1a80e8ce2\",\n    \"producerRecordIdentifier\": \"9e380fff-feda-4b6c-85cc-03699eb36d38\",\n    \"prefix\": null,\n    \"preferredName\": null,\n    \"firstName\": \"Sagar\",\n    \"middleName\": null,\n    \"lastName\": \"Desai\",\n    \"suffix\": null,\n    \"degree\": \"DO\",\n    \"title\": \"IR/DR Resident\",\n    \"organization\": \"Einstein Medical Center\",\n    \"city\": \"Dallas\",\n    \"state\": \"Texas\",\n    \"country\": \"USA\",\n    \"email\": \"sagarde@pcom.edu\",\n    \"emailTwo\": null,\n    \"phoneNumber\": null,\n    \"mobileNumber\": null,\n    \"faxNumber\": null,\n    \"otherPhoneNumber\": null,\n    \"isVip\": false,\n    \"website\": null,\n    \"headshotUrl\": null,\n    \"biographyText\": null,\n    \"customAttributes\": {\n        \"eventUserCustom1\": \"Demo\",\n        \"eventUserCustom2\": \"Test Data\",\n        \"eventUserCustom3\": \"Isle Site\"\n    },\n    \"createdAt\": \"2022-09-23T16:56:47.070Z\",\n    \"updatedAt\": \"2022-09-23T16:56:47.070Z\",\n    \"eventId\": \"f39ee6ba-f30c-4d49-b049-bf3c9f9f3a58\"\n}"},{"id":"09a58f96-52c6-4f49-b575-b305978e26df","name":"Read a Speaker with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2/:speakerId?include=subsessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2",":speakerId"],"query":[{"key":"include","value":"subsessions"}],"variable":[{"key":"speakerId","value":"aa664955-b1b5-4077-93db-24733aec473a","description":"Example: 4f7a2eb3-90ed-4284-b9e6-57d1a80e8ce2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3440"},{"key":"ETag","value":"W/\"d70-LSQaIwAhpQU0N/ZfMT1Z7jpWkOA\""},{"key":"Date","value":"Mon, 10 Jun 2024 18:17:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"aa664955-b1b5-4077-93db-24733aec473a\",\n    \"producerRecordIdentifier\": \"4u8q6\",\n    \"prefix\": \"Ms.\",\n    \"preferredName\": \"Tomas\",\n    \"firstName\": \"Muhammad\",\n    \"middleName\": \"Leslie\",\n    \"lastName\": \"Gislason\",\n    \"suffix\": \"DVM\",\n    \"degree\": \"Regional Implementation Consultant\",\n    \"title\": \"Human Infrastructure Technician\",\n    \"organization\": \"Planner\",\n    \"city\": \"North Kamron\",\n    \"state\": \"Ohio\",\n    \"country\": \"Uruguay\",\n    \"email\": \"Izabella_Hilpert@yahoo.com\",\n    \"emailTwo\": \"Rhea.Satterfield@yahoo.com\",\n    \"phoneNumber\": \"(485) 953-1955\",\n    \"mobileNumber\": \"(259) 284-4158 x4434\",\n    \"faxNumber\": \"495-827-3904 x3078\",\n    \"otherPhoneNumber\": \"(582) 649-7987\",\n    \"isVip\": false,\n    \"website\": \"https://late-canopy.info\",\n    \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/457.jpg\",\n    \"biographyText\": \"Senior\",\n    \"customAttributes\": \"{\\\"foo\\\":92264,\\\"bar\\\":\\\"1vPG*Ol_D+\\\",\\\"bike\\\":\\\"O9Jptu`M<G\\\",\\\"a\\\":\\\"8gi3&fH$`_\\\",\\\"b\\\":\\\"pl|roQGxV5\\\",\\\"name\\\":\\\"AR7|oIpveu\\\",\\\"prop\\\":62666}\",\n    \"createdAt\": \"2023-05-19T00:02:51.128Z\",\n    \"updatedAt\": \"2023-05-19T00:02:51.128Z\",\n    \"eventId\": \"73bc14b7-fe09-4707-a217-12d963fb48e6\",\n    \"subsessions\": {\n        \"collection\": [\n            {\n                \"id\": \"3e7997c3-11a3-4e68-902d-e13325f8c533\",\n                \"producerRecordIdentifier\": \"f5y97\",\n                \"clientIdentifier\": \"u84qh\",\n                \"fullName\": \"Creative qui et Subsession\",\n                \"description\": null,\n                \"hasAudienceResponseSystem\": false,\n                \"sortOrder\": 72638,\n                \"startsAt\": \"2023-05-19T00:02:51.115Z\",\n                \"endsAt\": \"2023-05-23T00:02:51.066Z\",\n                \"customAttributes\": \"{\\\"foo\\\":18574,\\\"bar\\\":\\\"=F,?X!-mJ}\\\",\\\"bike\\\":\\\"qkA%_2\\\\\\\\?d;\\\",\\\"a\\\":88637,\\\"b\\\":41635,\\\"name\\\":\\\"XzzwJp/@AO\\\",\\\"prop\\\":\\\"Z\\\\\\\"iFNPod:q\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:51.115Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.115Z\",\n                \"eventId\": \"503eb9cc-6d30-4e9f-b0bc-7b4d289d8846\",\n                \"sessionId\": \"9d1fea4f-d7f2-42d9-9b05-d1e0264bf117\",\n                \"subsessionformatId\": \"6f78d44e-7d50-4cb3-832e-f29753c59204\",\n                \"subsessiontypeId\": \"337ae810-c58c-4ba1-b490-b9b56a37e86d\",\n                \"speaker-subsession\": [\n                    {\n                        \"id\": \"a4141fa2-d186-4768-b47f-ec5a178305c9\",\n                        \"speakerId\": \"aa664955-b1b5-4077-93db-24733aec473a\",\n                        \"subsessionId\": \"3e7997c3-11a3-4e68-902d-e13325f8c533\",\n                        \"createdAt\": \"2023-05-19T00:02:51.131Z\",\n                        \"updatedAt\": \"2023-05-19T00:02:51.131Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/73bc14b7-fe09-4707-a217-12d963fb48e6\"\n            }\n        },\n        \"children\": {\n            \"speaker-subsession\": {\n                \"href\": \"/speaker-subsession/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"session-speaker\": {\n                \"href\": \"/session-speaker/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"disclosure-speaker\": {\n                \"href\": \"/disclosure-speaker/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"socialmediatype-speaker\": {\n                \"href\": \"/socialmediatype-speaker/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"poster-speaker\": {\n                \"href\": \"/poster-speaker/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            }\n        },\n        \"siblings\": {\n            \"subsessions\": {\n                \"href\": \"/subsessions/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"sessions\": {\n                \"href\": \"/sessions/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"disclosures\": {\n                \"href\": \"/disclosures/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"socialmediatypes\": {\n                \"href\": \"/socialmediatypes/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"posters\": {\n                \"href\": \"/posters/v2?filter[speakerId][eq]=aa664955-b1b5-4077-93db-24733aec473a\"\n            }\n        }\n    }\n}"}],"_postman_id":"9d123304-92ab-48ef-a6e4-32b89070c198"},{"name":"Update a Speaker","id":"b4919da9-3c99-444c-8fc7-405ba7aa3bd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"District Operations Manager\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2/:speakerId","description":"<p>Modify one or more fields on the single Speaker record of the supplied Speaker ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n<th><strong>Default</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>disclosureId</td>\n<td>UUID string</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>socialmedia**</td>\n<td>Array of Objects with two properties: socialmediatypeId and handle</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>degree</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>organization</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>Boolean</td>\n<td></td>\n<td></td>\n<td></td>\n<td>false</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>biographyText</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>** Not recommended. Will be deprecated soon.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2",":speakerId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"ae0e22eb-7538-4bc1-a5cf-57066292c873","description":{"content":"<p>Example: 50ba2383-0157-4751-811b-63ea747bf851</p>\n","type":"text/plain"},"type":"any","value":"<Enter Speaker ID here>","key":"speakerId"}]}},"response":[{"id":"54c6d680-1ac6-452a-831a-162347cca649","name":"Update a Speaker","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"District Operations Manager\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2/:speakerId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2",":speakerId"],"variable":[{"key":"speakerId","value":"50ba2383-0157-4751-811b-63ea747bf851"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 17:23:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"946"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"3b2-LST8kx1jVMMyVjaa8m43JV43mfg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"50ba2383-0157-4751-811b-63ea747bf851\",\n    \"producerRecordIdentifier\": \"b76becec-0e59-4534-8400-26a940bbdada\",\n    \"prefix\": null,\n    \"preferredName\": null,\n    \"firstName\": \"Marvi\",\n    \"middleName\": \"A.\",\n    \"lastName\": \"Moreno\",\n    \"suffix\": null,\n    \"degree\": \"B.S.\",\n    \"title\": \"District Operations Manager\",\n    \"organization\": \"Kirk Kerkorian School of Medicine at UNLV\",\n    \"city\": \"Dallas\",\n    \"state\": \"Texas\",\n    \"country\": \"USA\",\n    \"email\": \"morenm4@unlv.nevada.edu\",\n    \"emailTwo\": null,\n    \"phoneNumber\": null,\n    \"mobileNumber\": null,\n    \"faxNumber\": null,\n    \"otherPhoneNumber\": null,\n    \"isVip\": false,\n    \"website\": null,\n    \"headshotUrl\": \"https://www.ConferenceHarvester.com/uploads/harvester/photos/cropDWKYOTHV-Presenter-MorenoM.jpg\",\n    \"biographyText\": null,\n    \"customAttributes\": {\n        \"eventUserCustom1\": \"Testing Data\"\n    },\n    \"createdAt\": \"2022-09-23T16:56:33.917Z\",\n    \"updatedAt\": \"2022-09-23T17:23:41.068Z\",\n    \"eventId\": \"f39ee6ba-f30c-4d49-b049-bf3c9f9f3a58\"\n}"}],"_postman_id":"b4919da9-3c99-444c-8fc7-405ba7aa3bd7"},{"name":"Destroy a Speaker","id":"cb648c2c-1560-4a18-ae5d-5a9a9699dbd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speakers/v2/:speakerId","description":"<p>Permanently delete the Speaker record of the supplied Speaker ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speakers","v2",":speakerId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"842b7b4e-b1ef-41ef-b018-42c57b525beb","description":{"content":"<p>Example: e2950306-6900-45a0-915b-2167f4fc6f2a</p>\n","type":"text/plain"},"type":"any","value":"<Enter Speaker ID here>","key":"speakerId"}]}},"response":[{"id":"5d4a1016-20a6-4605-b06e-68d9905b6e34","name":"Destroy a Speaker","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speakers/v2/:speakerId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speakers","v2",":speakerId"],"variable":[{"key":"speakerId","value":"e2950306-6900-45a0-915b-2167f4fc6f2a"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Sep 2022 17:15:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"864"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Built-At","value":"Fri Sep 23 2022 15:50:20 GMT+0000 (Coordinated Universal Time)"},{"key":"Deployment-Tier","value":"stage"},{"key":"Node-Env","value":"stage"},{"key":"Region","value":"us-east-1"},{"key":"ETag","value":"W/\"360-1r/VJKdVADVOrF/ZWCjO/wIyNiU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e2950306-6900-45a0-915b-2167f4fc6f2a\",\n    \"producerRecordIdentifier\": \"6ee36f9b-369e-4ea5-9aee-9c7f8fa46646\",\n    \"prefix\": null,\n    \"preferredName\": null,\n    \"firstName\": \"Klaudio\",\n    \"middleName\": null,\n    \"lastName\": \"Gjeluci\",\n    \"suffix\": null,\n    \"degree\": \"MD\",\n    \"title\": \"Radiology Resident\",\n    \"organization\": \"University of Cincinnati Medical Center\",\n    \"city\": \"Dallas\",\n    \"state\": \"Texas\",\n    \"country\": \"USA\",\n    \"email\": \"gjelucko@ucmail.uc.edu\",\n    \"emailTwo\": null,\n    \"phoneNumber\": null,\n    \"mobileNumber\": null,\n    \"faxNumber\": null,\n    \"otherPhoneNumber\": null,\n    \"isVip\": false,\n    \"website\": null,\n    \"headshotUrl\": null,\n    \"biographyText\": null,\n    \"customAttributes\": {\n        \"eventUserCustom1\": \"Demo Data\"\n    },\n    \"createdAt\": \"2022-09-23T16:57:22.533Z\",\n    \"updatedAt\": \"2022-09-23T17:15:19.829Z\",\n    \"eventId\": \"f39ee6ba-f30c-4d49-b049-bf3c9f9f3a58\"\n}"}],"_postman_id":"cb648c2c-1560-4a18-ae5d-5a9a9699dbd8"}],"id":"59dd6931-0bf4-418e-bea1-e6c07c5863a8","description":"<p>Speakers are defined as a person, a presenter, or someone leading a Session.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td>A prefix to the persons name.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>The persons first name.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td>The persons middle name.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>The persons last name, or surname.</td>\n</tr>\n<tr>\n<td>preferredName</td>\n<td>String</td>\n<td>The name the person prefers to be referred by.</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td>A suffix to the persons name.</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>String</td>\n<td>The highest educational degree obtained.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>The persons official title within their organization.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>The city the person is from.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>The state the person is from.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>The country the person is from.</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>String</td>\n<td>The organization the person is a part of.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>The persons email address.</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td>The persons secondary or alternative email address.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td>The persons primary telephone number.</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>String</td>\n<td>The persons mobile or cellular telephone number.</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td>The persons beee-booo-beeep oldschool 56k dial-up facsimile machine number.</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td>The persons alternate phone number.</td>\n</tr>\n<tr>\n<td>isVip</td>\n<td>Boolean</td>\n<td>A boolean flag indicating whether or not the person is to be considered a Very Important Person (VIP).</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td>The website URL of the Speaker.</td>\n</tr>\n<tr>\n<td>headshotUrl</td>\n<td>String</td>\n<td>The URL of an image depicting a headshot portrait of the Speaker.</td>\n</tr>\n<tr>\n<td>biographyText</td>\n<td>String</td>\n<td>The paragraph of text giving a brief biography of the Speaker.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key/value pairs. Note: Using this field is strongly discouraged as it is not something that can be filtered on or queried easily and creates a non-standard data structure that integrations cannot rely on.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"59dd6931-0bf4-418e-bea1-e6c07c5863a8","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Disclosures (v2)","item":[{"name":"Examples","item":[{"name":"List Disclosures based on Speakers","id":"f0345232-c15a-40e1-8d95-784535a8f7d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/disclosures/v2?filter[speakerId][in][]=7fcdaf24-ee88-4df9-b5ce-57604ef7bda1","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the disclosures GET endpoint and applying the filter based on the \"speakerId\".</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosures","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[speakerId][in][]","value":"7fcdaf24-ee88-4df9-b5ce-57604ef7bda1"}],"variable":[]}},"response":[{"id":"c3b6a1aa-d4be-4065-b531-9d9a148b0033","name":"List Disclosures based on Speakers","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosures/v2?filter[speakerId][in][]=7fcdaf24-ee88-4df9-b5ce-57604ef7bda1","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosures","v2"],"query":[{"key":"filter[speakerId][in][]","value":"7fcdaf24-ee88-4df9-b5ce-57604ef7bda1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 01 Aug 2022 18:50:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1150"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"47e-iowKHUwqHt6Ugp8ev9pnWlO7gyk\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"b00d7150-b695-4d7d-816d-73a02ef7f546\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf98\",\n            \"financialDisclosure\": \"Tasty architect open-source synergies\",\n            \"displayType\": \"enable cross-media deliverables\",\n            \"createdAt\": \"2022-07-27T18:27:42.014Z\",\n            \"updatedAt\": \"2022-07-27T18:27:42.014Z\",\n            \"deletedAt\": null,\n            \"eventId\": \"dd3f6614-8d72-4644-a8b6-51637db1432a\"\n        },\n        {\n            \"id\": \"c43a8581-659a-4954-bed7-0ec62307e7c4\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf88\",\n            \"financialDisclosure\": \"Orchestrate Disclosure\",\n            \"displayType\": \"Demo Disclosure\",\n            \"createdAt\": \"2022-07-27T18:26:08.277Z\",\n            \"updatedAt\": \"2022-07-27T18:26:08.277Z\",\n            \"deletedAt\": null,\n            \"eventId\": \"f6b699af-8b06-4674-bc6c-ac70faa067d0\"\n        },\n        {\n            \"id\": \"44261a57-cc17-4e25-82cd-dafe2e7b0c76\",\n            \"financialDisclosure\": \"Tech architect open-source licensing\",\n            \"displayType\": \"Tech Licensing\",\n            \"displayType\": \"The Auto disclosure 1659036512974\",\n            \"createdAt\": \"2022-07-28T19:28:33.130Z\",\n            \"updatedAt\": \"2022-07-28T19:28:33.774Z\",\n            \"deletedAt\": null,\n            \"eventId\": \"11ad7fb8-3727-4dd7-81e0-1e28f39502fa\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 3,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 3\n    }\n}"}],"_postman_id":"f0345232-c15a-40e1-8d95-784535a8f7d5"}],"id":"a3ee9607-cf9d-41f4-ae1a-c2db00355b1d","_postman_id":"a3ee9607-cf9d-41f4-ae1a-c2db00355b1d","description":"","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"List Disclosures","id":"c908c03e-92de-4c9c-aaf9-eac579e58edc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/disclosures/v2","description":"<p>Retrieve a collection of Disclosure records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>displayType</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>financialDisclosure</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>displayType</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosures","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"eee9cf79-232c-4a2c-a504-867cef2ebacd","name":"List Disclosures","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosures/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosures","v2"],"query":[{"key":"filter[displayType][eq]","value":"Fantastic Shoes Summit September","description":"filter disclosure records with displayType equal to \"Fantastic Shoes Summit September\"","disabled":true},{"key":"filter[displayType][substring]","value":"ame","description":"filter disclosure records with substring \"ame\" in the displayType ","disabled":true},{"key":"filter[displayType][startsWith]","value":"Troy","description":"filter disclosure records with displayType starting with \"Troy\"","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"industrial2022","description":"filter disclosure records with producerRecordIdentifier equal to \"industrial2022\"","disabled":true},{"key":"filter[producerRecordIdentifier][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"filter disclosure records created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filter disclosure records created on and before \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filter disclosure records updated before \"2022-04-12\"","disabled":true},{"key":"filter[createdAt]","value":"2022-03-31T15:27:01.076Z","description":"filter disclosure records created on \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[producerRecordIdentifier][is]","value":"null","description":"filter disclosure records where producerRecordIdentifier is null","disabled":true},{"key":"filter[financialDisclosure][like]","value":"http://%.com","disabled":true},{"key":"filter[createdAt][gt]","value":"2022-05-14T21:41:49.525Z","description":"filter disclosure records created after\"2022-05-14T21:41:49.525Z\"","disabled":true},{"key":"page","value":"1","description":"filter disclosure records on page 1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 21:49:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"31252"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"7a14-P/jyGGpp0D/IU+T4GA7yP6vck1I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"ba0d5ffb-2733-4152-82b7-a523639a20f9\",\n            \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf44\",\n            \"financialDisclosure\": \"Automation Filter Validation disclosure\",\n            \"displayType\": \"Data Disclosure\",\n            \"createdAt\": \"2023-02-07T19:26:07.035Z\",\n            \"updatedAt\": \"2023-02-07T19:26:07.035Z\",\n            \"eventId\": \"d4968f26-6699-48b6-90be-3af4dcd19592\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"c908c03e-92de-4c9c-aaf9-eac579e58edc"},{"name":"Create a Disclosure","id":"10828e3c-d93a-4de7-b619-afbbeb34775f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"displayType\": \"Handcrafted Disclosure\",\n    \"financialDisclosure\": \"Tasty architect open-source synergies\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf66\",\n    \"eventId\": \"d4968f26-6699-48b6-90be-3af4dcd19592\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/disclosures/v2","description":"<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>financialDisclosure</td>\n<td>String</td>\n<td>Yes</td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>displayType</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosures","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"366f24e3-a812-45dd-afb5-5cc7b9cc4591","name":"Create a Disclosure","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"displayType\": \"Handcrafted Disclosure\",\n    \"financialDisclosure\": \"Tasty architect open-source synergies\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf66\",\n    \"eventId\": \"d4968f26-6699-48b6-90be-3af4dcd19592\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/disclosures/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 21:53:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"338"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"152-0rIJJdYxnHsaklVT4firxcoc/m8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"10f433c1-27d9-4683-ba21-5580075155e5\",\n    \"displayType\": \"Handcrafted Disclosure\",\n    \"financialDisclosure\": \"Tasty architect open-source synergies\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf66\",\n    \"eventId\": \"d4968f26-6699-48b6-90be-3af4dcd19592\",\n    \"updatedAt\": \"2023-06-20T21:53:36.919Z\",\n    \"createdAt\": \"2023-06-20T21:53:36.919Z\"\n}"}],"_postman_id":"10828e3c-d93a-4de7-b619-afbbeb34775f"},{"name":"Read a Disclosure","id":"e877e9f6-8d9b-4d0e-ba9b-8932e5f0d975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/disclosures/v2/:disclosureId","description":"<p>Retrieve the single Disclosure record of the supplied Disclosure ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>speakers</td>\n<td>disclosure-speaker</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosures","v2",":disclosureId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"3788948a-dad0-4cda-98a2-3207deafff9d","description":{"content":"<p>Example: 10f433c1-27d9-4683-ba21-5580075155e5</p>\n","type":"text/plain"},"type":"any","value":"<Enter Disclosure ID here>","key":"disclosureId"}]}},"response":[{"id":"8ad8758c-38b5-480f-b660-ecdadac29d94","name":"Read a Disclosure","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosures/v2/:disclosureId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosures","v2",":disclosureId"],"variable":[{"key":"disclosureId","value":"10f433c1-27d9-4683-ba21-5580075155e5","description":"Disclosure Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 21:54:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"338"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"152-Zily2g3gGg5Gv62i/buDPVJ72aM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"10f433c1-27d9-4683-ba21-5580075155e5\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf66\",\n    \"financialDisclosure\": \"Tasty architect open-source synergies\",\n    \"displayType\": \"Handcrafted Disclosure\",\n    \"createdAt\": \"2023-06-20T21:53:36.919Z\",\n    \"updatedAt\": \"2023-06-20T21:53:36.919Z\",\n    \"eventId\": \"d4968f26-6699-48b6-90be-3af4dcd19592\"\n}"},{"id":"e4e0387b-007a-4811-b128-11d757ec97fd","name":"Read a Disclosure with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosures/v2/:disclosureId?include=speakers","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosures","v2",":disclosureId"],"query":[{"key":"include","value":"speakers"}],"variable":[{"key":"disclosureId","value":"7f769891-b58e-4da7-b2dd-107a6b2b84b4","description":"Example: 10f433c1-27d9-4683-ba21-5580075155e5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2154"},{"key":"ETag","value":"W/\"86a-SpSOx41yehtQoimu91GUIiwaILM\""},{"key":"Date","value":"Mon, 10 Jun 2024 18:21:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7f769891-b58e-4da7-b2dd-107a6b2b84b4\",\n    \"producerRecordIdentifier\": \"w8zve\",\n    \"financialDisclosure\": \"Vision-oriented neutral capacity generate open-source convergence\",\n    \"displayType\": \"personal data disclosure\",\n    \"createdAt\": \"2023-05-19T00:02:50.345Z\",\n    \"updatedAt\": \"2023-05-19T00:02:50.345Z\",\n    \"eventId\": \"1f711bc0-82cc-4aba-9acb-f0674881b8d9\",\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"8166da0c-01cd-411f-82d6-2cd2a05761cf\",\n                \"producerRecordIdentifier\": \"zloo6\",\n                \"prefix\": \"Miss\",\n                \"preferredName\": \"Dejuan\",\n                \"firstName\": \"Shanon\",\n                \"middleName\": \"Skyler\",\n                \"lastName\": \"Prosacco\",\n                \"suffix\": \"I\",\n                \"degree\": \"Principal Program Developer\",\n                \"title\": \"Forward Paradigm Producer\",\n                \"organization\": \"Representative\",\n                \"city\": \"Lake Owenchester\",\n                \"state\": \"Michigan\",\n                \"country\": \"Cameroon\",\n                \"email\": \"Marc92@gmail.com\",\n                \"emailTwo\": \"Zoe_Harris@gmail.com\",\n                \"phoneNumber\": \"770.985.6424\",\n                \"mobileNumber\": \"1-249-420-3381 x65407\",\n                \"faxNumber\": \"1-928-695-1054\",\n                \"otherPhoneNumber\": \"1-769-403-6345\",\n                \"isVip\": false,\n                \"website\": \"https://composed-spork.name\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/532.jpg\",\n                \"biographyText\": \"Regional\",\n                \"customAttributes\": \"{\\\"foo\\\":47337,\\\"bar\\\":\\\"NB94[_^;0Q\\\",\\\"bike\\\":912,\\\"a\\\":\\\"6wl93LTxSS\\\",\\\"b\\\":76054,\\\"name\\\":\\\"Y1\\\\\\\"[eO$tys\\\",\\\"prop\\\":\\\",jEnFT`9`v\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:50.354Z\",\n                \"updatedAt\": \"2023-05-19T00:02:50.355Z\",\n                \"eventId\": \"e7d8701e-cb2a-40aa-b70e-095e52b33172\",\n                \"disclosure-speaker\": [\n                    {\n                        \"id\": \"6a1ac43b-d58d-4856-91bd-dc11394e45f5\",\n                        \"disclosureId\": \"7f769891-b58e-4da7-b2dd-107a6b2b84b4\",\n                        \"speakerId\": \"8166da0c-01cd-411f-82d6-2cd2a05761cf\",\n                        \"createdAt\": \"2023-05-19T00:02:50.360Z\",\n                        \"updatedAt\": \"2023-05-19T00:02:50.360Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/1f711bc0-82cc-4aba-9acb-f0674881b8d9\"\n            }\n        },\n        \"children\": {\n            \"disclosure-speaker\": {\n                \"href\": \"/disclosure-speaker/v2?filter[disclosureId][eq]=7f769891-b58e-4da7-b2dd-107a6b2b84b4\"\n            }\n        },\n        \"siblings\": {\n            \"speakers\": {\n                \"href\": \"/speakers/v2?filter[disclosureId][eq]=7f769891-b58e-4da7-b2dd-107a6b2b84b4\"\n            }\n        }\n    }\n}"}],"_postman_id":"e877e9f6-8d9b-4d0e-ba9b-8932e5f0d975"},{"name":"Update a Disclosure","id":"bceaac30-45f2-42bf-85a2-a5c4d45aff2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf76\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/disclosures/v2/:disclosureId","description":"<p>Modify one or more fields on the single Disclosure record of the supplied Disclosure ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>financialDisclosure</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n<tr>\n<td>displayType</td>\n<td>String</td>\n<td></td>\n<td></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosures","v2",":disclosureId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"4696be17-2de1-4625-aa7b-9dd418fe5791","type":"any","value":"10f433c1-27d9-4683-ba21-5580075155e5","key":"disclosureId"}]}},"response":[{"id":"a2b32d6d-c070-4df4-b91f-c2da0a06869a","name":"Update a Disclosure","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf76\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosures/v2/:disclosureId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosures","v2",":disclosureId"],"variable":[{"key":"disclosureId","value":"10f433c1-27d9-4683-ba21-5580075155e5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 21:56:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"347"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"15b-rXcVj49nO+t8dgi6tQgzBlDVTsg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"10f433c1-27d9-4683-ba21-5580075155e5\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf76\",\n    \"financialDisclosure\": \"Tasty architect open-source synergies\",\n    \"displayType\": \"Enable cross-media deliverables\",\n    \"createdAt\": \"2023-06-20T21:53:36.919Z\",\n    \"updatedAt\": \"2023-06-20T21:56:52.195Z\",\n    \"eventId\": \"d4968f26-6699-48b6-90be-3af4dcd19592\"\n}"}],"_postman_id":"bceaac30-45f2-42bf-85a2-a5c4d45aff2f"},{"name":"Destroy a Disclosure","id":"58d94e28-56b3-49e8-93b1-c1cfbf0dc370","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/disclosures/v2/:disclosureId","description":"<p>Permanently delete the Disclosure record of the supplied Disclosure ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosures","v2",":disclosureId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"13adccc1-56c2-46b1-aa56-644f23aaa200","description":{"content":"<p>Example: 10f433c1-27d9-4683-ba21-5580075155e5</p>\n","type":"text/plain"},"type":"any","value":"<Enter Disclosure ID here>","key":"disclosureId"}]}},"response":[{"id":"03e25c99-7ef6-4753-a14c-b2fb95530ee6","name":"Destroy a Disclosure","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosures/v2/:disclosureId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosures","v2",":disclosureId"],"variable":[{"key":"disclosureId","value":"10f433c1-27d9-4683-ba21-5580075155e5","description":"Disclosure Id"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 21:57:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"347"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"15b-rXcVj49nO+t8dgi6tQgzBlDVTsg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"10f433c1-27d9-4683-ba21-5580075155e5\",\n    \"producerRecordIdentifier\": \"orch022-f383-4af6-ac35-02b69908cf76\",\n    \"financialDisclosure\": \"Tasty architect open-source synergies\",\n    \"displayType\": \"Enable cross-media deliverables\",\n    \"createdAt\": \"2023-06-20T21:53:36.919Z\",\n    \"updatedAt\": \"2023-06-20T21:56:52.195Z\",\n    \"eventId\": \"d4968f26-6699-48b6-90be-3af4dcd19592\"\n}"}],"_postman_id":"58d94e28-56b3-49e8-93b1-c1cfbf0dc370"}],"id":"a19f0926-bc91-4c7f-8973-9bea2cb32ece","description":"<p>Disclosures are defined as private, personal, financial, or secret information that a Speaker has the duty to give to their audience. A disclosure typically describes their work for a company.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>financialDisclosure</td>\n<td>String</td>\n<td>A financial fact that is made known.</td>\n</tr>\n<tr>\n<td>displayType</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a19f0926-bc91-4c7f-8973-9bea2cb32ece","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Disclosure-Speaker (v2)","item":[{"name":"List Disclosure-Speaker relationships","id":"796d223a-8532-49be-af28-cbd456acbebf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2","description":"<p>Retrieve a collection of Disclosure-Speaker relationship records.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>disclosureId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosure-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"5cb707df-105b-40ab-9b55-67d457493ee7","name":"List disclosure-speaker relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosure-speaker","v2"],"query":[{"key":"filter[disclosureId][eq]","value":"0595f5e8-6fa4-4cb3-a343-910f7507fc4e","description":"List all the speaker disclosure relationships for a specific disclosure Id","disabled":true},{"key":"filter[speakerId][eq]","value":"01a5a543-c6df-43dd-909c-60f6fff6009e","description":"List all the speaker disclosure relationships for a specific speakerId","disabled":true},{"key":"page","value":"2","description":"List alll the records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 18:04:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23066"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"5a1a-MuiWo6AC+4u9fngwujh0v/2nddc\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"39bcacf8-28cf-434d-b5ee-e3587fce1538\",\n            \"disclosureId\": \"2cca7744-d649-454c-9393-fe47bd6ab657\",\n            \"speakerId\": \"20297c08-5995-4b2f-88e6-e7c87a420767\",\n            \"createdAt\": \"2023-06-01T09:54:32.286Z\",\n            \"updatedAt\": \"2023-06-01T09:54:32.286Z\"\n        },\n        {\n            \"id\": \"8046909b-9110-4726-b0dc-53f6d38b6d53\",\n            \"disclosureId\": \"f1417d4e-ef1c-4447-b031-31e4e208bab6\",\n            \"speakerId\": \"d33a8e47-4a04-4166-b64c-2aea4b6ad0cb\",\n            \"createdAt\": \"2023-06-08T19:35:49.540Z\",\n            \"updatedAt\": \"2023-06-08T19:35:49.540Z\"\n        },\n        {\n            \"id\": \"05c8f2cf-29ae-4ffb-90c0-a3e06fefddc2\",\n            \"disclosureId\": \"29a74fde-0b36-4dd5-8596-8b61daa857a9\",\n            \"speakerId\": \"1698d464-80a3-4e91-a6a7-167db90afa27\",\n            \"createdAt\": \"2023-06-08T19:35:50.379Z\",\n            \"updatedAt\": \"2023-06-08T19:35:50.379Z\"\n        },\n        {\n            \"id\": \"bb07a635-de0a-46e5-bd39-314623d94976\",\n            \"disclosureId\": \"49fc2850-5848-4916-abf6-7c216f06a528\",\n            \"speakerId\": \"b04d689c-54f7-4736-bd5c-d1f56fd44462\",\n            \"createdAt\": \"2023-02-24T06:34:42.934Z\",\n            \"updatedAt\": \"2023-02-24T06:34:42.934Z\"\n        },\n        {\n            \"id\": \"be8ce8c4-f2d5-4d23-8f65-23e223a092e0\",\n            \"disclosureId\": \"2dc745c0-e893-42e1-9080-c6695cb285f8\",\n            \"speakerId\": \"5931c675-f5da-44d3-a1d0-16a812c1e287\",\n            \"createdAt\": \"2023-02-13T11:19:56.276Z\",\n            \"updatedAt\": \"2023-02-13T11:19:56.276Z\"\n        },\n        {\n            \"id\": \"39a49005-c94d-43a0-8519-6fa040a852ce\",\n            \"disclosureId\": \"2286dca0-2af0-42ca-aeec-dbbb5c823b3e\",\n            \"speakerId\": \"13593f11-d834-41d2-af75-42bfcdcd8f59\",\n            \"createdAt\": \"2023-02-24T06:34:47.353Z\",\n            \"updatedAt\": \"2023-02-24T06:34:47.353Z\"\n        },\n        {\n            \"id\": \"b286f616-9c06-4983-8f1b-26b775138a99\",\n            \"disclosureId\": \"6866b25f-f4c9-4a51-a714-7ca69c6029c0\",\n            \"speakerId\": \"b23f875a-15c7-4836-8caf-f67c7481fe80\",\n            \"createdAt\": \"2023-02-24T06:34:51.582Z\",\n            \"updatedAt\": \"2023-02-24T06:34:51.582Z\"\n        },\n        {\n            \"id\": \"a35e46dc-c7dd-436e-9fd7-ce8dc2e8fcb3\",\n            \"disclosureId\": \"5a28b0d4-73fd-494c-b1ab-942e7ab17eb6\",\n            \"speakerId\": \"e9e04a36-d396-4c73-8b1e-b43d1880f6cf\",\n            \"createdAt\": \"2023-02-24T06:34:55.896Z\",\n            \"updatedAt\": \"2023-02-24T06:34:55.896Z\"\n        },\n        {\n            \"id\": \"8ef28ab5-e2d1-41a3-a94e-c3288ef130c8\",\n            \"disclosureId\": \"cb5a0932-6cb9-48f1-bbad-1a6356138e25\",\n            \"speakerId\": \"f0ee7fbd-05c1-4738-96d9-7e7f8b3d8bc2\",\n            \"createdAt\": \"2023-04-06T16:25:45.803Z\",\n            \"updatedAt\": \"2023-04-06T16:25:45.803Z\"\n        },\n        {\n            \"id\": \"2e2dfd14-0bb4-48c1-8fa9-96bc62dc7cdf\",\n            \"disclosureId\": \"6532e519-a4d6-495f-a641-13c7222cc63c\",\n            \"speakerId\": \"e6b12100-00f0-4d27-83e7-19bc158f715a\",\n            \"createdAt\": \"2023-06-08T19:35:51.782Z\",\n            \"updatedAt\": \"2023-06-08T19:35:51.782Z\"\n        },\n        {\n            \"id\": \"b7922de9-124b-4e57-88ba-cbd096d41c6a\",\n            \"disclosureId\": \"efd0c924-a92d-454a-ab10-b37d7f7d5d16\",\n            \"speakerId\": \"083a0899-2f29-494c-9675-6abfbc57c51d\",\n            \"createdAt\": \"2023-06-08T19:35:55.907Z\",\n            \"updatedAt\": \"2023-06-08T19:35:55.907Z\"\n        },\n        {\n            \"id\": \"dea60767-f333-47cd-85e5-2417c382378f\",\n            \"disclosureId\": \"685a6ba0-28e3-463b-8469-fcd49723ffb9\",\n            \"speakerId\": \"3c4999b7-bf33-4918-a479-91ab722e9da6\",\n            \"createdAt\": \"2023-06-08T19:36:03.393Z\",\n            \"updatedAt\": \"2023-06-08T19:36:03.393Z\"\n        },\n        {\n            \"id\": \"75e16337-b311-4ac4-8527-659bdc517c61\",\n            \"disclosureId\": \"8e6144f0-c8c9-412b-8ad6-db08870739b9\",\n            \"speakerId\": \"0a909070-17b7-4754-8c0e-2daaa9b960dc\",\n            \"createdAt\": \"2023-06-08T19:36:11.008Z\",\n            \"updatedAt\": \"2023-06-08T19:36:11.008Z\"\n        },\n        {\n            \"id\": \"a415376b-6ba8-449a-a57b-ca404a501756\",\n            \"disclosureId\": \"022183f6-f4c1-4ae7-bb67-36f23b21dd35\",\n            \"speakerId\": \"9188563e-9475-4bea-aa84-4a727b6eced4\",\n            \"createdAt\": \"2023-06-08T19:36:11.872Z\",\n            \"updatedAt\": \"2023-06-08T19:36:11.872Z\"\n        },\n        {\n            \"id\": \"c4cc7c8f-72c5-4a0c-b38f-bddb51092a88\",\n            \"disclosureId\": \"c6da30ac-e5d5-4bc4-a2aa-186378f1ecbd\",\n            \"speakerId\": \"5cabd842-2972-4f49-bd2c-f834064affac\",\n            \"createdAt\": \"2023-06-08T19:36:15.906Z\",\n            \"updatedAt\": \"2023-06-08T19:36:15.906Z\"\n        },\n        {\n            \"id\": \"8fa2e85f-c237-471e-a527-c59b0c3f50d3\",\n            \"disclosureId\": \"c1021988-093f-4d1d-8dab-261ad02e6b6e\",\n            \"speakerId\": \"2bf47a5d-2d03-4706-aa41-4416bcd84272\",\n            \"createdAt\": \"2023-06-08T19:36:18.792Z\",\n            \"updatedAt\": \"2023-06-08T19:36:18.792Z\"\n        },\n        {\n            \"id\": \"b9005942-f7fa-44ec-a086-9ba2ba3235d8\",\n            \"disclosureId\": \"316d645d-5f61-4048-a8a4-2fb8f66a86cf\",\n            \"speakerId\": \"41462894-a6f4-4792-aa00-1c9acb7d864a\",\n            \"createdAt\": \"2023-06-08T19:36:23.390Z\",\n            \"updatedAt\": \"2023-06-08T19:36:23.390Z\"\n        },\n        {\n            \"id\": \"e4ad8c56-907f-4c32-869c-0b7dd0a01052\",\n            \"disclosureId\": \"d406bfef-cb45-4263-85bb-fca341d5c31f\",\n            \"speakerId\": \"5d6364d0-cfad-40c4-8923-e30dba1cab3d\",\n            \"createdAt\": \"2023-06-08T19:36:28.709Z\",\n            \"updatedAt\": \"2023-06-08T19:36:28.709Z\"\n        },\n        {\n            \"id\": \"ea9fd249-3132-40d9-9ff1-bcb964f867c7\",\n            \"disclosureId\": \"c0fbd8e8-5e16-4b31-bce0-1ffd1a8b7aea\",\n            \"speakerId\": \"af3f1517-c200-44b0-880d-e5038fc16d5f\",\n            \"createdAt\": \"2023-06-08T19:36:31.580Z\",\n            \"updatedAt\": \"2023-06-08T19:36:31.580Z\"\n        },\n        {\n            \"id\": \"f1459d0a-77ed-4d72-8c4f-efb081bcf285\",\n            \"disclosureId\": \"aa97e06d-052f-423f-8533-36c494cf36f6\",\n            \"speakerId\": \"2988d9bd-eb4e-499f-98b9-2671261416b1\",\n            \"createdAt\": \"2023-06-08T19:36:35.031Z\",\n            \"updatedAt\": \"2023-06-08T19:36:35.031Z\"\n        },\n        {\n            \"id\": \"ca0ea232-7960-4048-97d7-48f5a499098a\",\n            \"disclosureId\": \"8afb3b16-ddc9-4897-9436-6a3016fec030\",\n            \"speakerId\": \"5832d431-7173-4969-8d0c-79e6fc636839\",\n            \"createdAt\": \"2023-06-08T19:36:41.862Z\",\n            \"updatedAt\": \"2023-06-08T19:36:41.862Z\"\n        },\n        {\n            \"id\": \"0feacf18-5aeb-4350-9cef-d452551e5cee\",\n            \"disclosureId\": \"48381a2c-7677-494d-a482-2cdc79e0b81f\",\n            \"speakerId\": \"52f64e82-f30d-431a-9086-e0f124d5d83e\",\n            \"createdAt\": \"2023-06-08T19:36:56.528Z\",\n            \"updatedAt\": \"2023-06-08T19:36:56.528Z\"\n        },\n        {\n            \"id\": \"c2a96eb3-e679-43cd-8ee4-daf0897adff3\",\n            \"disclosureId\": \"5a330ab6-38f0-4650-9c46-6ebe8300c640\",\n            \"speakerId\": \"14694697-1f88-404f-baf7-3a1cead3dc52\",\n            \"createdAt\": \"2023-06-08T19:36:59.925Z\",\n            \"updatedAt\": \"2023-06-08T19:36:59.925Z\"\n        },\n        {\n            \"id\": \"d920e4cc-fc83-43d3-863e-2d61d8e4b2d3\",\n            \"disclosureId\": \"1fef244f-82f6-4fcd-b654-d312c1c45493\",\n            \"speakerId\": \"b589f4fe-d44c-4ac8-a497-1db87b8d2590\",\n            \"createdAt\": \"2023-06-08T19:37:02.470Z\",\n            \"updatedAt\": \"2023-06-08T19:37:02.470Z\"\n        },\n        {\n            \"id\": \"f2a89e86-caba-4e28-a1e5-d3608fac52a9\",\n            \"disclosureId\": \"df187f3e-da5d-4c1b-a95f-cd92c1e045d1\",\n            \"speakerId\": \"dfcb7da3-50e4-43c1-bed7-868bc79b263d\",\n            \"createdAt\": \"2023-06-08T19:37:03.554Z\",\n            \"updatedAt\": \"2023-06-08T19:37:03.554Z\"\n        },\n        {\n            \"id\": \"80906c82-41ad-4a6a-8602-4fa947730428\",\n            \"disclosureId\": \"5ebf176e-d2f1-4f24-8ece-6237c30d9cd1\",\n            \"speakerId\": \"fe987d3e-c432-40f3-8bc9-2adb963d5d5e\",\n            \"createdAt\": \"2023-06-08T19:37:05.391Z\",\n            \"updatedAt\": \"2023-06-08T19:37:05.391Z\"\n        },\n        {\n            \"id\": \"795e5f5f-4206-410b-a50d-ef5f16ca1780\",\n            \"disclosureId\": \"4ff087d4-a00c-4d59-ac74-87b82853943c\",\n            \"speakerId\": \"9de154fc-6ddf-48bd-a56b-bfa1b8a9acc8\",\n            \"createdAt\": \"2023-06-08T19:37:19.775Z\",\n            \"updatedAt\": \"2023-06-08T19:37:19.775Z\"\n        },\n        {\n            \"id\": \"7784de69-6bdf-4ef8-abe5-b3a2f6c80b61\",\n            \"disclosureId\": \"063280d6-c3e8-4ad0-a9e6-e6a22b7a6bc3\",\n            \"speakerId\": \"527e984f-83ca-4075-a1e6-0c61f05b3bbf\",\n            \"createdAt\": \"2023-06-08T19:37:23.217Z\",\n            \"updatedAt\": \"2023-06-08T19:37:23.217Z\"\n        },\n        {\n            \"id\": \"50711901-6c1c-405c-9817-1f239f93661c\",\n            \"disclosureId\": \"0644bbcf-8b41-4612-a311-b1ac16ec0868\",\n            \"speakerId\": \"81078cc4-efea-493b-a63a-fa813485b862\",\n            \"createdAt\": \"2023-06-08T19:37:34.531Z\",\n            \"updatedAt\": \"2023-06-08T19:37:34.531Z\"\n        },\n        {\n            \"id\": \"9667a72b-1f47-4079-8d9a-82853f0dacd3\",\n            \"disclosureId\": \"11edb31b-6748-4873-966e-0475f76bc807\",\n            \"speakerId\": \"eec86c05-1e4c-42d7-ac12-fdb780f78f38\",\n            \"createdAt\": \"2023-06-08T19:37:50.225Z\",\n            \"updatedAt\": \"2023-06-08T19:37:50.225Z\"\n        },\n        {\n            \"id\": \"71b0c8e6-0909-4d8d-bd0c-1882aebd059a\",\n            \"disclosureId\": \"3af691bf-127e-434b-882e-157af545ac37\",\n            \"speakerId\": \"09214343-6fc0-453e-bdd1-e0217477f548\",\n            \"createdAt\": \"2023-06-08T19:37:53.171Z\",\n            \"updatedAt\": \"2023-06-08T19:37:53.171Z\"\n        },\n        {\n            \"id\": \"9160313f-b8a8-404a-87ea-80f64343ce8b\",\n            \"disclosureId\": \"aa06bcf9-edb0-409a-ad86-c63bdd169fcd\",\n            \"speakerId\": \"2e19597a-fe85-452b-ab3a-6c810ab5a6d4\",\n            \"createdAt\": \"2023-06-08T19:37:54.035Z\",\n            \"updatedAt\": \"2023-06-08T19:37:54.035Z\"\n        },\n        {\n            \"id\": \"2f97a2f6-dfa4-428c-a1d7-1f1b5f35c4d4\",\n            \"disclosureId\": \"10ab920c-92d1-4027-ac71-a1b96914de58\",\n            \"speakerId\": \"12b060d6-49b1-4189-95f6-2dcc344b0d3b\",\n            \"createdAt\": \"2023-06-08T19:37:55.939Z\",\n            \"updatedAt\": \"2023-06-08T19:37:55.939Z\"\n        },\n        {\n            \"id\": \"459daf30-9163-458e-a408-7ec3baa214c8\",\n            \"disclosureId\": \"f11eb984-3ada-4bc9-89ec-abcd7035cd47\",\n            \"speakerId\": \"dec32f5f-b566-4349-a8eb-4e3e812d07f2\",\n            \"createdAt\": \"2023-06-08T19:38:08.970Z\",\n            \"updatedAt\": \"2023-06-08T19:38:08.970Z\"\n        },\n        {\n            \"id\": \"2b351125-3142-4ca4-ad35-9af724c7d7f0\",\n            \"disclosureId\": \"f2318953-c541-4d76-bca7-0eb4b4e43f29\",\n            \"speakerId\": \"6550099c-8cae-438b-8405-38cb51687acc\",\n            \"createdAt\": \"2023-06-08T19:38:10.025Z\",\n            \"updatedAt\": \"2023-06-08T19:38:10.025Z\"\n        },\n        {\n            \"id\": \"6787ec9f-5abb-42bd-9244-b7d03eae9a20\",\n            \"disclosureId\": \"9cd57e71-d741-4bb1-9981-b55cf234ba0b\",\n            \"speakerId\": \"78463b4c-4b16-45db-9307-083bac7d636f\",\n            \"createdAt\": \"2023-06-08T19:38:12.493Z\",\n            \"updatedAt\": \"2023-06-08T19:38:12.493Z\"\n        },\n        {\n            \"id\": \"0528bc3b-91f9-4cfb-8ba0-83e5e23e43fa\",\n            \"disclosureId\": \"d4c23c0f-c43a-4005-88a4-f071869b73dd\",\n            \"speakerId\": \"11973c03-b427-4125-9838-97f89dc3333f\",\n            \"createdAt\": \"2023-06-08T19:38:14.357Z\",\n            \"updatedAt\": \"2023-06-08T19:38:14.357Z\"\n        },\n        {\n            \"id\": \"b8630e15-5ef1-4944-bffd-ef57d45899ee\",\n            \"disclosureId\": \"4b898514-dc14-4989-8d92-b596b421f39a\",\n            \"speakerId\": \"ecf77f53-8688-4290-9ad0-0a66a32a2ac6\",\n            \"createdAt\": \"2023-06-08T19:38:18.475Z\",\n            \"updatedAt\": \"2023-06-08T19:38:18.475Z\"\n        },\n        {\n            \"id\": \"f6da0c4a-13d6-4fc4-b7bd-79110d610ceb\",\n            \"disclosureId\": \"f834b602-6543-4d42-9698-b7b282cb5ed3\",\n            \"speakerId\": \"b8d6ca76-3757-4012-ad2c-0e8cda8906de\",\n            \"createdAt\": \"2023-06-08T19:38:20.822Z\",\n            \"updatedAt\": \"2023-06-08T19:38:20.822Z\"\n        },\n        {\n            \"id\": \"a3da5699-bad9-447d-a2bb-69f2c60720b5\",\n            \"disclosureId\": \"0b29dd62-776a-4d9c-8c61-47f1abcd556c\",\n            \"speakerId\": \"54acd95d-9beb-4b6d-ad26-6c2a8063e065\",\n            \"createdAt\": \"2023-06-08T19:38:24.588Z\",\n            \"updatedAt\": \"2023-06-08T19:38:24.588Z\"\n        },\n        {\n            \"id\": \"85bc2d7c-b818-4d5a-92f5-dc7f1c2d1dea\",\n            \"disclosureId\": \"d33d1f32-0227-4466-92b2-430ed1525ce7\",\n            \"speakerId\": \"37498412-59b8-46ca-baa2-1731dfdc46ab\",\n            \"createdAt\": \"2023-06-08T19:38:28.196Z\",\n            \"updatedAt\": \"2023-06-08T19:38:28.196Z\"\n        },\n        {\n            \"id\": \"80bcd1ab-da7e-4ed8-91bc-bed4e9dc7f6d\",\n            \"disclosureId\": \"12afa598-ac22-48af-875f-b0fae8028c01\",\n            \"speakerId\": \"f09ef069-cd1e-4b9b-b793-0a3e33f6ec41\",\n            \"createdAt\": \"2023-06-08T19:38:33.402Z\",\n            \"updatedAt\": \"2023-06-08T19:38:33.402Z\"\n        },\n        {\n            \"id\": \"deeeffba-9f9d-4273-b755-eb21298679da\",\n            \"disclosureId\": \"b586b25c-4a2b-4f8f-afc0-8dfb73358327\",\n            \"speakerId\": \"7f71cc12-9f91-423e-9493-ab4619a160c6\",\n            \"createdAt\": \"2023-06-08T19:38:36.700Z\",\n            \"updatedAt\": \"2023-06-08T19:38:36.700Z\"\n        },\n        {\n            \"id\": \"55583036-1c04-44a4-ac65-2de9205f944f\",\n            \"disclosureId\": \"047c1b99-d06b-4318-8474-26af3b4266ef\",\n            \"speakerId\": \"7bd4dd74-a232-47a7-8608-d15d8e661add\",\n            \"createdAt\": \"2023-06-08T19:38:38.693Z\",\n            \"updatedAt\": \"2023-06-08T19:38:38.693Z\"\n        },\n        {\n            \"id\": \"39a1c7cd-6c92-46b1-83ec-9e069f8338ce\",\n            \"disclosureId\": \"93296f5a-deb8-4b4e-b474-4dccf584e3a1\",\n            \"speakerId\": \"cdbdcd6e-9a13-400f-9b30-a90688fdce56\",\n            \"createdAt\": \"2023-06-08T19:38:40.414Z\",\n            \"updatedAt\": \"2023-06-08T19:38:40.414Z\"\n        },\n        {\n            \"id\": \"db099e88-beed-4f64-b196-f42960f72b24\",\n            \"disclosureId\": \"81c45983-502e-4e5d-a40a-8c5507bf601b\",\n            \"speakerId\": \"5a862a89-b615-4452-9a39-bc2f5a1328ff\",\n            \"createdAt\": \"2023-06-08T19:38:44.857Z\",\n            \"updatedAt\": \"2023-06-08T19:38:44.857Z\"\n        },\n        {\n            \"id\": \"9765f4cd-c063-44d7-bf74-c4074381859e\",\n            \"disclosureId\": \"27a6df65-dd0c-4043-90e6-6bfe3b36fa3d\",\n            \"speakerId\": \"5d302c06-5d89-4d95-b9ec-194b546eeee8\",\n            \"createdAt\": \"2023-06-08T19:38:45.635Z\",\n            \"updatedAt\": \"2023-06-08T19:38:45.635Z\"\n        },\n        {\n            \"id\": \"2cf89723-5820-4d6e-84eb-3ee7866e6652\",\n            \"disclosureId\": \"ff68e2be-ff71-4323-a82f-740039fdffd7\",\n            \"speakerId\": \"869898b0-3751-462b-917f-687d821167c6\",\n            \"createdAt\": \"2023-06-08T19:38:47.351Z\",\n            \"updatedAt\": \"2023-06-08T19:38:47.351Z\"\n        },\n        {\n            \"id\": \"82c6cede-f977-4f7c-909e-633ad251fa8a\",\n            \"disclosureId\": \"05f68f64-9e95-4fcd-b683-d038c50ee595\",\n            \"speakerId\": \"bd1b49d2-2275-4938-807b-6132264bf2be\",\n            \"createdAt\": \"2023-06-08T19:38:49.869Z\",\n            \"updatedAt\": \"2023-06-08T19:38:49.869Z\"\n        },\n        {\n            \"id\": \"f5a5c61c-c1ae-432b-8310-335c3d433328\",\n            \"disclosureId\": \"c30d3d6d-0383-492c-aa98-5dcf3c57ed6a\",\n            \"speakerId\": \"0bde430a-ef04-4647-ae15-3d673f6b8126\",\n            \"createdAt\": \"2023-06-08T19:38:56.871Z\",\n            \"updatedAt\": \"2023-06-08T19:38:56.871Z\"\n        },\n        {\n            \"id\": \"6acbf129-1330-4bc8-998f-aa5480187a3e\",\n            \"disclosureId\": \"6e1b6566-c386-4ce9-8504-072931ec4160\",\n            \"speakerId\": \"efaeca35-7ea1-4691-a9fd-bea28e2be899\",\n            \"createdAt\": \"2023-06-08T19:39:03.348Z\",\n            \"updatedAt\": \"2023-06-08T19:39:03.348Z\"\n        },\n        {\n            \"id\": \"bb149199-4662-41d5-86d4-f36b4c1eb308\",\n            \"disclosureId\": \"6f146961-8a5c-4b4d-929d-227c4639d7a7\",\n            \"speakerId\": \"0f266805-6b8d-45e0-a7e9-090f18cda6cf\",\n            \"createdAt\": \"2023-06-08T19:39:05.132Z\",\n            \"updatedAt\": \"2023-06-08T19:39:05.132Z\"\n        },\n        {\n            \"id\": \"f8c83005-3e93-4c6a-8ba1-3e36e931b14c\",\n            \"disclosureId\": \"3dcebaf7-54bd-44be-a0ab-17757acdf62d\",\n            \"speakerId\": \"6f72e2a7-879b-4fb8-895d-bb6b29fe6675\",\n            \"createdAt\": \"2023-06-08T19:39:09.380Z\",\n            \"updatedAt\": \"2023-06-08T19:39:09.380Z\"\n        },\n        {\n            \"id\": \"04ffa4a9-8af4-45ee-b199-c02ed4857d4a\",\n            \"disclosureId\": \"bb1b43bb-6113-40a4-b38c-5dd500ef4640\",\n            \"speakerId\": \"ae255309-b6ef-4d82-b5de-5c151eafdac4\",\n            \"createdAt\": \"2023-06-08T19:39:14.962Z\",\n            \"updatedAt\": \"2023-06-08T19:39:14.962Z\"\n        },\n        {\n            \"id\": \"3f27232f-4b33-433b-908e-1e780c723926\",\n            \"disclosureId\": \"8a5247a4-4cf3-44b4-871c-d4161df46f31\",\n            \"speakerId\": \"8ff1a4a3-b544-4657-9476-b3dcbdcfce66\",\n            \"createdAt\": \"2023-06-12T20:22:31.657Z\",\n            \"updatedAt\": \"2023-06-12T20:22:31.657Z\"\n        },\n        {\n            \"id\": \"4528cc5e-a757-4d6b-9d4e-374ac30eb9d2\",\n            \"disclosureId\": \"9ba8d83e-d1ee-43c3-a1cd-f226cc2dbdb1\",\n            \"speakerId\": \"a8957e59-30e3-423b-928c-20c388afcb83\",\n            \"createdAt\": \"2023-06-12T20:27:48.245Z\",\n            \"updatedAt\": \"2023-06-12T20:27:48.245Z\"\n        },\n        {\n            \"id\": \"230751bd-d3bd-45a2-8a44-fdc06e5a2e40\",\n            \"disclosureId\": \"82db1c5b-a09b-42ff-82c3-698c092f9eb2\",\n            \"speakerId\": \"cb9c1e47-b04c-4198-b626-1aa5d4db6b69\",\n            \"createdAt\": \"2023-06-12T20:28:13.909Z\",\n            \"updatedAt\": \"2023-06-12T20:28:13.909Z\"\n        },\n        {\n            \"id\": \"b6f9fc84-4b9e-4727-bb5f-541496eb3c12\",\n            \"disclosureId\": \"47d66fc1-8d9b-4d49-9c0f-c33001c17222\",\n            \"speakerId\": \"969ec273-cb5f-4f27-87a8-9fe285aeeecf\",\n            \"createdAt\": \"2023-06-12T20:28:27.283Z\",\n            \"updatedAt\": \"2023-06-12T20:28:27.283Z\"\n        },\n        {\n            \"id\": \"ea86d854-3e2c-493b-a8c0-163873e1798e\",\n            \"disclosureId\": \"310eb151-af82-4fb1-b0d6-f99f286e11a0\",\n            \"speakerId\": \"0b222ae8-9e22-4bbf-9a05-9ca00e769366\",\n            \"createdAt\": \"2023-06-26T15:42:24.054Z\",\n            \"updatedAt\": \"2023-06-26T15:42:24.054Z\"\n        },\n        {\n            \"id\": \"377bfdf9-2e8c-4ef9-9a6b-7023fceae076\",\n            \"disclosureId\": \"4fe37d6a-7219-4655-967e-5836bf8a67bb\",\n            \"speakerId\": \"8a8529df-7e4a-4d8c-82d4-c0a599c197d3\",\n            \"createdAt\": \"2023-06-12T20:28:40.967Z\",\n            \"updatedAt\": \"2023-06-12T20:28:40.967Z\"\n        },\n        {\n            \"id\": \"c81d06e8-8a8f-4ab1-af9b-9bc7d523e029\",\n            \"disclosureId\": \"36de3142-23d6-439c-9ca9-ce520d6cf10e\",\n            \"speakerId\": \"750f0744-f329-44df-8d3f-e1c50f63cbb8\",\n            \"createdAt\": \"2023-06-12T21:22:10.887Z\",\n            \"updatedAt\": \"2023-06-12T21:22:10.887Z\"\n        },\n        {\n            \"id\": \"1b81eb84-512b-437c-8687-27c77f17611e\",\n            \"disclosureId\": \"42febbcf-c9b2-4b5d-899a-061962e1c7c9\",\n            \"speakerId\": \"6529ab0f-71a3-4e7e-9177-a19dfe8b2ce1\",\n            \"createdAt\": \"2023-06-26T16:52:05.217Z\",\n            \"updatedAt\": \"2023-06-26T16:52:05.217Z\"\n        },\n        {\n            \"id\": \"12ce13ec-e45c-47bc-be08-8172b8512faf\",\n            \"disclosureId\": \"34002d18-fcda-42fa-abb1-f2e4337c3175\",\n            \"speakerId\": \"07fc3ad4-b21d-45f5-9ccb-02746ba3753a\",\n            \"createdAt\": \"2023-06-23T19:17:00.554Z\",\n            \"updatedAt\": \"2023-06-23T19:17:00.554Z\"\n        },\n        {\n            \"id\": \"eba31712-7571-4b9c-b24b-8c346674248e\",\n            \"disclosureId\": \"af1e332f-f222-4651-b351-21f940b30740\",\n            \"speakerId\": \"08649253-e0eb-428c-877d-951402d6f7bd\",\n            \"createdAt\": \"2023-06-23T19:17:48.158Z\",\n            \"updatedAt\": \"2023-06-23T19:17:48.158Z\"\n        },\n        {\n            \"id\": \"2ce52813-f99b-4750-8b79-438e1ef8de19\",\n            \"disclosureId\": \"d43acd2e-b753-45be-93b0-260cefe9db6f\",\n            \"speakerId\": \"29cb0ddb-ac81-43ac-8516-0bf7cb623076\",\n            \"createdAt\": \"2023-06-23T19:17:54.460Z\",\n            \"updatedAt\": \"2023-06-23T19:17:54.460Z\"\n        },\n        {\n            \"id\": \"6d4684b9-7a22-4c0d-bbb0-103e16e4ef9a\",\n            \"disclosureId\": \"15c38d2a-4b11-46b5-be8e-7c935445511b\",\n            \"speakerId\": \"bbf080cf-e06f-4ccb-8981-991ff0c2e07e\",\n            \"createdAt\": \"2023-06-23T19:18:00.564Z\",\n            \"updatedAt\": \"2023-06-23T19:18:00.564Z\"\n        },\n        {\n            \"id\": \"b38c23ec-2291-464a-a49c-79d91028829d\",\n            \"disclosureId\": \"bb0e367a-7a27-42a9-b98f-89893ac44033\",\n            \"speakerId\": \"b1ddac42-bd08-4fe9-9f0c-b78a1cd3291e\",\n            \"createdAt\": \"2023-06-23T19:49:41.520Z\",\n            \"updatedAt\": \"2023-06-23T19:49:41.520Z\"\n        },\n        {\n            \"id\": \"a9a2a687-fe33-435e-81d2-ce24201ed8ec\",\n            \"disclosureId\": \"5c0906f5-c9d7-41a7-a8a9-fb6196cae38b\",\n            \"speakerId\": \"059b6a03-ebb1-4f10-80bb-ad442a444c9b\",\n            \"createdAt\": \"2023-06-23T19:50:11.783Z\",\n            \"updatedAt\": \"2023-06-23T19:50:11.783Z\"\n        },\n        {\n            \"id\": \"78ce073e-aac0-40cb-a5a1-e55f9ca45134\",\n            \"disclosureId\": \"13c04055-0e1d-451a-9b99-f3188489d260\",\n            \"speakerId\": \"301249f4-d8bb-421f-b684-e288d93c8540\",\n            \"createdAt\": \"2023-06-26T16:52:24.060Z\",\n            \"updatedAt\": \"2023-06-26T16:52:24.060Z\"\n        },\n        {\n            \"id\": \"f32f5ce1-bcef-4c13-9c4d-6fafdf123d95\",\n            \"disclosureId\": \"9626dc16-f0f9-4c32-b4f8-2e55d0fffda9\",\n            \"speakerId\": \"418d2f5e-b884-4b4c-9068-5fb43af89d2c\",\n            \"createdAt\": \"2023-06-26T06:36:00.885Z\",\n            \"updatedAt\": \"2023-06-26T06:36:00.885Z\"\n        },\n        {\n            \"id\": \"b93aed60-a238-486a-b3b9-82c4f86b71f3\",\n            \"disclosureId\": \"ce943662-0a74-4a01-81cb-a885672e60ae\",\n            \"speakerId\": \"65bd0606-be14-4beb-8e25-eb7e38e4657b\",\n            \"createdAt\": \"2023-06-26T06:36:25.365Z\",\n            \"updatedAt\": \"2023-06-26T06:36:25.365Z\"\n        },\n        {\n            \"id\": \"bc14689e-d1f5-4c79-9bc7-aa88fca511fc\",\n            \"disclosureId\": \"cd87f0c5-45ee-4b6f-bcfc-9051376593be\",\n            \"speakerId\": \"f724766d-d63d-4083-915e-64a9a23a5cae\",\n            \"createdAt\": \"2023-06-26T06:37:12.170Z\",\n            \"updatedAt\": \"2023-06-26T06:37:12.170Z\"\n        },\n        {\n            \"id\": \"75763baf-4ec6-4521-9f09-946bc772170e\",\n            \"disclosureId\": \"64eaed6f-9e52-42a4-9622-975f406990c1\",\n            \"speakerId\": \"2ef998b8-5c88-4064-9a56-8a1006d61290\",\n            \"createdAt\": \"2023-06-26T06:37:25.896Z\",\n            \"updatedAt\": \"2023-06-26T06:37:25.896Z\"\n        },\n        {\n            \"id\": \"d8e408d7-94ec-4c7d-87e5-d120f5edadf1\",\n            \"disclosureId\": \"53f6169c-d65e-4b27-88f2-c8b5ebde0fa8\",\n            \"speakerId\": \"4972103e-3480-41b9-8093-48d3b92ee343\",\n            \"createdAt\": \"2023-06-26T07:47:41.751Z\",\n            \"updatedAt\": \"2023-06-26T07:47:41.751Z\"\n        },\n        {\n            \"id\": \"397fca2f-3b09-4974-bca6-c4bc6e8b49ba\",\n            \"disclosureId\": \"9b30df24-8225-4018-bca4-d0755af93247\",\n            \"speakerId\": \"0f9772fb-d715-4844-8de1-d7ff1cb11c5f\",\n            \"createdAt\": \"2023-06-26T16:53:38.555Z\",\n            \"updatedAt\": \"2023-06-26T16:53:38.555Z\"\n        },\n        {\n            \"id\": \"4d75faa2-f9c7-4d1d-9b8f-0a1f0fb9486e\",\n            \"disclosureId\": \"9c805cd0-3f4b-4194-9bc7-0ab342d4679a\",\n            \"speakerId\": \"b99c8f84-317f-41ea-8556-f17ea30169e7\",\n            \"createdAt\": \"2023-06-26T16:53:57.792Z\",\n            \"updatedAt\": \"2023-06-26T16:53:57.792Z\"\n        },\n        {\n            \"id\": \"f9311cfe-2ad8-437f-9eab-85dc38dfb00c\",\n            \"disclosureId\": \"707bad34-2ab9-431c-b021-a7e5dd0192ca\",\n            \"speakerId\": \"1c4f1981-79bf-4f2b-8b32-429c6eb587bb\",\n            \"createdAt\": \"2023-06-26T16:54:15.871Z\",\n            \"updatedAt\": \"2023-06-26T16:54:15.871Z\"\n        },\n        {\n            \"id\": \"ee52c31d-b098-455b-adbe-9b363582c1d2\",\n            \"disclosureId\": \"a26bb282-812a-40e0-b316-81ea71b79647\",\n            \"speakerId\": \"f260fdba-a7ff-4b3b-8907-0640af14fc06\",\n            \"createdAt\": \"2023-06-26T18:10:13.570Z\",\n            \"updatedAt\": \"2023-06-26T18:10:13.570Z\"\n        },\n        {\n            \"id\": \"dc7c46e4-de05-4b05-bf25-5f4186f8715e\",\n            \"disclosureId\": \"4cab3954-638a-410f-969a-ca6e7196a0dd\",\n            \"speakerId\": \"970f6289-9084-443c-b460-fd22960dd5a9\",\n            \"createdAt\": \"2023-06-26T22:50:24.316Z\",\n            \"updatedAt\": \"2023-06-26T22:50:24.316Z\"\n        },\n        {\n            \"id\": \"42404344-6c05-408e-b514-14d5d6301c70\",\n            \"disclosureId\": \"0b1c48a7-5e86-4c9a-8db6-1a4a90f58ae7\",\n            \"speakerId\": \"11eaded4-cbaf-4f7c-a490-2b596d9501a0\",\n            \"createdAt\": \"2023-06-27T00:19:20.813Z\",\n            \"updatedAt\": \"2023-06-27T00:19:20.813Z\"\n        },\n        {\n            \"id\": \"0646c55e-2a85-478d-8190-8be1d0685b38\",\n            \"disclosureId\": \"15c2ce10-ef03-4172-b0a0-2b052af8d2e4\",\n            \"speakerId\": \"0bba4825-525d-4cba-80cd-f4e96a3d14f6\",\n            \"createdAt\": \"2023-06-27T20:08:39.767Z\",\n            \"updatedAt\": \"2023-06-27T20:08:39.767Z\"\n        },\n        {\n            \"id\": \"07904f69-ecfe-45a4-a290-9ea60bc374d3\",\n            \"disclosureId\": \"bf2a35e6-fccd-4f55-a28a-8779fe2a7976\",\n            \"speakerId\": \"4ef60794-a4fb-43ba-acc7-3e652a6e3778\",\n            \"createdAt\": \"2023-02-24T06:34:42.946Z\",\n            \"updatedAt\": \"2023-02-24T06:34:42.946Z\"\n        },\n        {\n            \"id\": \"c1766787-a411-410b-9eed-7ef0b2bb731f\",\n            \"disclosureId\": \"8e56298a-8db9-4731-a5ab-c5b939211c45\",\n            \"speakerId\": \"5b7e0c7c-1ded-4ccb-ba2c-75aeb6ca3d9d\",\n            \"createdAt\": \"2023-02-24T06:34:47.418Z\",\n            \"updatedAt\": \"2023-02-24T06:34:47.418Z\"\n        },\n        {\n            \"id\": \"08e1b4a0-ef02-441f-91a0-4ae6145e94c4\",\n            \"disclosureId\": \"89482d01-d071-4cc3-b67e-34d0c22091b0\",\n            \"speakerId\": \"725c7b7b-fd02-442e-941d-f03f098d8289\",\n            \"createdAt\": \"2023-02-24T06:34:47.893Z\",\n            \"updatedAt\": \"2023-02-24T06:34:47.893Z\"\n        },\n        {\n            \"id\": \"54c78837-8011-47db-a84d-a593d2a34a5d\",\n            \"disclosureId\": \"20b40526-f15e-44c0-afb7-2e3b5d4faaef\",\n            \"speakerId\": \"56b43406-4092-4854-9bd3-16485230435f\",\n            \"createdAt\": \"2023-02-24T06:34:55.941Z\",\n            \"updatedAt\": \"2023-02-24T06:34:55.941Z\"\n        },\n        {\n            \"id\": \"8aeff834-bce8-400f-936c-1b5e3fa9044a\",\n            \"disclosureId\": \"4a4e12db-e13c-4b83-8881-8a048b04c5b1\",\n            \"speakerId\": \"e76d67c8-4aad-4412-b4f6-2cb2b038a421\",\n            \"createdAt\": \"2023-02-24T06:34:56.529Z\",\n            \"updatedAt\": \"2023-02-24T06:34:56.529Z\"\n        },\n        {\n            \"id\": \"c074b001-ac55-46e2-857f-85f16c50eb9a\",\n            \"disclosureId\": \"16858fd3-58a2-46a7-8886-d1ef28723724\",\n            \"speakerId\": \"5751c395-407e-4b7b-a921-462683625042\",\n            \"createdAt\": \"2023-02-24T06:34:59.010Z\",\n            \"updatedAt\": \"2023-02-24T06:34:59.010Z\"\n        },\n        {\n            \"id\": \"fc10e64c-7c2c-471e-9907-b4a6459abb0f\",\n            \"disclosureId\": \"2dd9fd11-4f78-4bfa-b4f9-85653bc747af\",\n            \"speakerId\": \"5428beab-1901-4ac8-80cd-dde7e645a3c4\",\n            \"createdAt\": \"2023-04-07T17:04:55.296Z\",\n            \"updatedAt\": \"2023-04-07T17:04:55.296Z\"\n        },\n        {\n            \"id\": \"179a0dda-d99b-4155-91dd-55836fdde32f\",\n            \"disclosureId\": \"f5e2a122-3a7f-48ee-ae85-c952d10d67b6\",\n            \"speakerId\": \"e292c308-93c9-4905-8a11-1cc6b7e6ffd8\",\n            \"createdAt\": \"2023-04-27T07:11:33.921Z\",\n            \"updatedAt\": \"2023-04-27T07:11:33.921Z\"\n        },\n        {\n            \"id\": \"a44e50ae-e858-4822-a194-cbe2d1332360\",\n            \"disclosureId\": \"74e381b9-45eb-4bc1-bc68-abf49d574f62\",\n            \"speakerId\": \"6c41aa89-a0cd-4efe-9eab-4580258ae262\",\n            \"createdAt\": \"2023-06-02T06:05:18.151Z\",\n            \"updatedAt\": \"2023-06-02T06:05:18.151Z\"\n        },\n        {\n            \"id\": \"d24dc50f-23be-4e6f-a82e-eb0ce0d91401\",\n            \"disclosureId\": \"2ad28fd1-8518-4bd4-93c6-b0076bc0566a\",\n            \"speakerId\": \"10ef8b4a-28c4-4593-a29e-76719502e025\",\n            \"createdAt\": \"2023-02-08T05:31:40.249Z\",\n            \"updatedAt\": \"2023-02-08T05:31:40.249Z\"\n        },\n        {\n            \"id\": \"152bf826-a631-407b-b6c0-b689144af483\",\n            \"disclosureId\": \"83599755-bf47-46d7-8ffa-ee577b1455a7\",\n            \"speakerId\": \"e72afc08-7c1f-49cf-b7d4-92f0cc185fbc\",\n            \"createdAt\": \"2023-02-08T05:31:40.812Z\",\n            \"updatedAt\": \"2023-02-08T05:31:40.812Z\"\n        },\n        {\n            \"id\": \"d3971e57-60b5-45f3-bf88-10057edc584e\",\n            \"disclosureId\": \"2e77e644-56e8-41ab-8a63-96420713b796\",\n            \"speakerId\": \"e45d06b1-96b6-4af1-8301-7807608ab78a\",\n            \"createdAt\": \"2023-06-08T19:35:56.777Z\",\n            \"updatedAt\": \"2023-06-08T19:35:56.777Z\"\n        },\n        {\n            \"id\": \"826a9475-452f-4a7e-b828-03c225b239e1\",\n            \"disclosureId\": \"20b18e82-ee1f-49f4-81b8-1186f7fbe89c\",\n            \"speakerId\": \"38731ccd-1025-4c5a-92ec-dba04520ad02\",\n            \"createdAt\": \"2023-02-08T05:31:45.914Z\",\n            \"updatedAt\": \"2023-02-08T05:31:45.914Z\"\n        },\n        {\n            \"id\": \"44acd6aa-f68d-4291-ba0a-973fff37c7da\",\n            \"disclosureId\": \"8fc33a39-4ddd-42d7-ae25-10d7381e55c7\",\n            \"speakerId\": \"12995ba1-673c-4bbd-a2f2-ad06bfe09cc6\",\n            \"createdAt\": \"2023-02-08T05:31:46.304Z\",\n            \"updatedAt\": \"2023-02-08T05:31:46.304Z\"\n        },\n        {\n            \"id\": \"6299ae75-56ca-4e3e-80dd-e7e9a3fe1ed9\",\n            \"disclosureId\": \"9f0f0795-6c58-4943-8af2-4a19bc2f2851\",\n            \"speakerId\": \"e3efd422-b8c2-4b01-a80f-833396172580\",\n            \"createdAt\": \"2023-02-08T05:32:01.557Z\",\n            \"updatedAt\": \"2023-02-08T05:32:01.557Z\"\n        },\n        {\n            \"id\": \"a31c5643-311e-4559-a614-a34d3163d336\",\n            \"disclosureId\": \"a11fbaf6-eed4-4fc9-9868-0f6955f13a2a\",\n            \"speakerId\": \"0d058b4a-4be6-4a0f-a323-ff29831fada1\",\n            \"createdAt\": \"2023-01-05T15:53:19.989Z\",\n            \"updatedAt\": \"2023-01-05T15:53:19.989Z\"\n        },\n        {\n            \"id\": \"c69f5337-4ce4-4f5a-bb28-d374d45b82e3\",\n            \"disclosureId\": \"80778df2-7a4a-44e5-b03b-8aaef7aac4d2\",\n            \"speakerId\": \"60f3c546-3287-4dcf-b47c-81070f5bf1f2\",\n            \"createdAt\": \"2023-02-08T05:32:07.676Z\",\n            \"updatedAt\": \"2023-02-08T05:32:07.676Z\"\n        },\n        {\n            \"id\": \"4444ddb1-9037-4b1c-a9ad-3c839fccf9ea\",\n            \"disclosureId\": \"61793cca-7507-47b6-8cbc-da80c6013d31\",\n            \"speakerId\": \"debc66b8-2116-4bb3-b8cf-1fe4a609706d\",\n            \"createdAt\": \"2023-06-08T19:35:57.628Z\",\n            \"updatedAt\": \"2023-06-08T19:35:57.628Z\"\n        },\n        {\n            \"id\": \"87d728b5-4720-43ad-b411-b929570d1e8b\",\n            \"disclosureId\": \"37463183-3c39-4e4d-965d-159c91597e2f\",\n            \"speakerId\": \"f91776cf-39db-4a1d-980b-434ce35d3f34\",\n            \"createdAt\": \"2023-06-08T19:36:02.283Z\",\n            \"updatedAt\": \"2023-06-08T19:36:02.283Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 162,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 16117\n    }\n}"}],"_postman_id":"796d223a-8532-49be-af28-cbd456acbebf"},{"name":"Create a Disclosure-Speaker relationship","id":"a3215b88-1ce4-48b0-a29f-32a61520eb5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\r\n\"disclosureId\": \"49fc2850-5848-4916-abf6-7c216f06a528\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2","description":"<p>Create a new Disclosure-Sepaker relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Unique</strong></th>\n<th><strong>Minimum Characters</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>disclosureId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosure-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c4cac6ea-5fb7-4a14-8130-45a195762909","name":"Create a disclosure-speaker relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\r\n\"disclosureId\": \"49fc2850-5848-4916-abf6-7c216f06a528\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 18:05:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"228"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e4-l7gqyDuH5aVYvP2CceyYo9jPS4k\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d827b812-de14-49d4-9d5b-52792350e36f\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"disclosureId\": \"49fc2850-5848-4916-abf6-7c216f06a528\",\n    \"updatedAt\": \"2023-06-28T18:05:43.761Z\",\n    \"createdAt\": \"2023-06-28T18:05:43.761Z\"\n}"}],"_postman_id":"a3215b88-1ce4-48b0-a29f-32a61520eb5d"},{"name":"Read a Disclosure-Speaker relationship","id":"f893fb07-2ceb-4679-9538-e40b4987f9af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2/:id","description":"<p>Retrieve the single Disclosure-Speaker record of the supplied Disclosure-Speaker ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>disclosures</td>\n<td>speakers</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosure-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"0bd545e6-261e-4e00-a954-686a9edd63bc","description":{"content":"<p>Example: d827b812-de14-49d4-9d5b-52792350e36f</p>\n","type":"text/plain"},"type":"any","value":"<Enter Disclosure-Speaker ID here>","key":"id"}]}},"response":[{"id":"bd73f851-c8c6-4f2d-976a-9cb79ae05ed0","name":"Read a disclosure-speaker relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosure-speaker","v2",":id"],"variable":[{"key":"id","value":"d827b812-de14-49d4-9d5b-52792350e36f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 18:06:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"228"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e4-iQ5bXhEHDHKye2guo8lQGReH3EU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d827b812-de14-49d4-9d5b-52792350e36f\",\n    \"disclosureId\": \"49fc2850-5848-4916-abf6-7c216f06a528\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"createdAt\": \"2023-06-28T18:05:43.761Z\",\n    \"updatedAt\": \"2023-06-28T18:05:43.761Z\"\n}"},{"id":"d1386e82-b629-4fe3-a28e-91146bcb9102","name":"Read a Disclosure-Speaker relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2/:id?include=speakers,disclosures","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosure-speaker","v2",":id"],"query":[{"key":"include","value":"speakers,disclosures"}],"variable":[{"key":"id","value":"6a1ac43b-d58d-4856-91bd-dc11394e45f5","description":"Example: d827b812-de14-49d4-9d5b-52792350e36f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2194"},{"key":"ETag","value":"W/\"892-5hlF5VAocmDxTamO80wf+PjeK5U\""},{"key":"Date","value":"Mon, 10 Jun 2024 18:24:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6a1ac43b-d58d-4856-91bd-dc11394e45f5\",\n    \"disclosureId\": \"7f769891-b58e-4da7-b2dd-107a6b2b84b4\",\n    \"speakerId\": \"8166da0c-01cd-411f-82d6-2cd2a05761cf\",\n    \"createdAt\": \"2023-05-19T00:02:50.360Z\",\n    \"updatedAt\": \"2023-05-19T00:02:50.360Z\",\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"8166da0c-01cd-411f-82d6-2cd2a05761cf\",\n                \"producerRecordIdentifier\": \"zloo6\",\n                \"prefix\": \"Miss\",\n                \"preferredName\": \"Dejuan\",\n                \"firstName\": \"Shanon\",\n                \"middleName\": \"Skyler\",\n                \"lastName\": \"Prosacco\",\n                \"suffix\": \"I\",\n                \"degree\": \"Principal Program Developer\",\n                \"title\": \"Forward Paradigm Producer\",\n                \"organization\": \"Representative\",\n                \"city\": \"Lake Owenchester\",\n                \"state\": \"Michigan\",\n                \"country\": \"Cameroon\",\n                \"email\": \"Marc92@gmail.com\",\n                \"emailTwo\": \"Zoe_Harris@gmail.com\",\n                \"phoneNumber\": \"770.985.6424\",\n                \"mobileNumber\": \"1-249-420-3381 x65407\",\n                \"faxNumber\": \"1-928-695-1054\",\n                \"otherPhoneNumber\": \"1-769-403-6345\",\n                \"isVip\": false,\n                \"website\": \"https://composed-spork.name\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/532.jpg\",\n                \"biographyText\": \"Regional\",\n                \"customAttributes\": \"{\\\"foo\\\":47337,\\\"bar\\\":\\\"NB94[_^;0Q\\\",\\\"bike\\\":912,\\\"a\\\":\\\"6wl93LTxSS\\\",\\\"b\\\":76054,\\\"name\\\":\\\"Y1\\\\\\\"[eO$tys\\\",\\\"prop\\\":\\\",jEnFT`9`v\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:50.354Z\",\n                \"updatedAt\": \"2023-05-19T00:02:50.355Z\",\n                \"eventId\": \"e7d8701e-cb2a-40aa-b70e-095e52b33172\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"disclosures\": {\n        \"collection\": [\n            {\n                \"id\": \"7f769891-b58e-4da7-b2dd-107a6b2b84b4\",\n                \"producerRecordIdentifier\": \"w8zve\",\n                \"financialDisclosure\": \"Vision-oriented neutral capacity generate open-source convergence\",\n                \"displayType\": \"personal data disclosure\",\n                \"createdAt\": \"2023-05-19T00:02:50.345Z\",\n                \"updatedAt\": \"2023-05-19T00:02:50.345Z\",\n                \"eventId\": \"1f711bc0-82cc-4aba-9acb-f0674881b8d9\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"disclosure\": {\n                \"href\": \"/disclosures/v2/7f769891-b58e-4da7-b2dd-107a6b2b84b4\"\n            },\n            \"speaker\": {\n                \"href\": \"/speakers/v2/8166da0c-01cd-411f-82d6-2cd2a05761cf\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"f893fb07-2ceb-4679-9538-e40b4987f9af"},{"name":"Destroy a Disclosure-Speaker relationship","id":"906a62a2-aff4-410e-86c2-d001f937c57a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2/:id","description":"<p>Permanently delete the Disclosure-Speaker relationship record of the supplied Disclosure-Speaker ID. Destroying a relationship record will not destroy the supplied Disclosure or the supplied Speaker, it will instead cause the supplied Disclosure and Speaker to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["disclosure-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"58741574-6576-4891-9fc8-e0380358299c","description":{"content":"<p>Example: d827b812-de14-49d4-9d5b-52792350e36f</p>\n","type":"text/plain"},"type":"any","value":"<Enter Disclosure-Speaker ID here>","key":"id"}]}},"response":[{"id":"d06f5d99-da29-4282-a779-f3ffe103d3bb","name":"Destroy a disclosure-speaker relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/disclosure-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["disclosure-speaker","v2",":id"],"variable":[{"key":"id","value":"d827b812-de14-49d4-9d5b-52792350e36f"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 18:06:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"228"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e4-iQ5bXhEHDHKye2guo8lQGReH3EU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d827b812-de14-49d4-9d5b-52792350e36f\",\n    \"disclosureId\": \"49fc2850-5848-4916-abf6-7c216f06a528\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"createdAt\": \"2023-06-28T18:05:43.761Z\",\n    \"updatedAt\": \"2023-06-28T18:05:43.761Z\"\n}"}],"_postman_id":"906a62a2-aff4-410e-86c2-d001f937c57a"}],"id":"77685064-0419-4fd2-8ddc-b758fdcb06bb","description":"<p>The Disclosure-Speaker entity provides a way to interact with the relationships between Speakers and Disclosures. A single Speaker can have many Disclosures and a single Disclosure can belong to many Speakers.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>disclosureId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Disclosure.</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Speaker.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"77685064-0419-4fd2-8ddc-b758fdcb06bb","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Socialmediatype-Speaker (v2)","item":[{"name":"List Speaker-Socialmediatype relationships","id":"553ad2f6-6887-4cea-b75e-cd407d206737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2","description":"<p>Retrieve a collection of related speaker and scoialmediatype records.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["socialmediatype-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"e8dd3d19-c607-4747-986c-4ed69053a40f","name":"List speaker-socialmediatype relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["socialmediatype-speaker","v2"],"query":[{"key":"filter[socialmediatypeId][eq]","value":"ac393b59-fb54-46cc-aa68-bf7188684004","description":"List all the speaker socialmediatype relationships for a specific socialmediatype Id","disabled":true},{"key":"filter[sspeakerId][eq]","value":"faf800c5-a665-4669-a301-08d462b5fe95","description":"List all the speaker socialmediatype relationships for a specific speaker Id","disabled":true},{"key":"filter[handle][eq]","value":"handle5t6","description":"List all the speaker socialmediatype relationships for a specific Handle value","disabled":true},{"key":"page","value":"2","description":"List alll the records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 17:56:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27655"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"6c07-2svtku5Awrrz/u177AAVR76S9iI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"410aa0fb-a9ff-4375-8e67-184b3bb6f861\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"24a26843-34aa-4d37-9d33-64578e783f12\",\n            \"handle\": \"http://www.Aimee_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:40.334Z\",\n            \"updatedAt\": \"2023-02-08T11:34:40.334Z\"\n        },\n        {\n            \"id\": \"94a04d90-60bf-48c8-bbb6-da0ef87dda22\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"24a26843-34aa-4d37-9d33-64578e783f12\",\n            \"handle\": \"http://www.Aimee_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:40.526Z\",\n            \"updatedAt\": \"2023-02-08T11:34:40.526Z\"\n        },\n        {\n            \"id\": \"507d6f7d-4c69-4bcc-b590-b0faebc2de8a\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"24a26843-34aa-4d37-9d33-64578e783f12\",\n            \"handle\": \"http://www.Aimee_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:40.717Z\",\n            \"updatedAt\": \"2023-02-08T11:34:40.717Z\"\n        },\n        {\n            \"id\": \"9ad35fbe-3222-4c96-bffe-a6e31bc4d5b0\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"b2937a96-e88b-497b-9bdd-e3dd8d5a2898\",\n            \"handle\": \"http://www.Seunghyun_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:43.313Z\",\n            \"updatedAt\": \"2023-02-08T11:34:43.313Z\"\n        },\n        {\n            \"id\": \"23e3a161-1bba-4700-b319-3d88c52c6ec3\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"e5bf606f-0b2d-4d80-b6d6-e21fb36a109f\",\n            \"handle\": \"http://www.Briony_linkedinurl.com\",\n            \"createdAt\": \"2023-01-05T22:00:31.266Z\",\n            \"updatedAt\": \"2023-01-05T22:00:31.266Z\"\n        },\n        {\n            \"id\": \"eed3ab3f-884d-4967-b08a-5dfae750e9e7\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"b2937a96-e88b-497b-9bdd-e3dd8d5a2898\",\n            \"handle\": \"http://www.Seunghyun_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:43.502Z\",\n            \"updatedAt\": \"2023-02-08T11:34:43.502Z\"\n        },\n        {\n            \"id\": \"4a87cc9e-8251-4b0b-9030-296d1e3b47e0\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"b2937a96-e88b-497b-9bdd-e3dd8d5a2898\",\n            \"handle\": \"http://www.Seunghyun_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:43.691Z\",\n            \"updatedAt\": \"2023-02-08T11:34:43.691Z\"\n        },\n        {\n            \"id\": \"ace73076-dae1-46e2-bebc-1c0e903f7e8f\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"b2937a96-e88b-497b-9bdd-e3dd8d5a2898\",\n            \"handle\": \"http://www.Seunghyun_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:43.881Z\",\n            \"updatedAt\": \"2023-02-08T11:34:43.881Z\"\n        },\n        {\n            \"id\": \"41911193-e876-4b75-8e84-72a55815444c\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"53144315-fe35-4a04-84db-95fbe059a3fb\",\n            \"handle\": \"http://www.Kelly_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:44.393Z\",\n            \"updatedAt\": \"2023-02-08T11:34:44.393Z\"\n        },\n        {\n            \"id\": \"3d301c9f-c4a7-4d1e-8071-65c8158f68c3\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"53144315-fe35-4a04-84db-95fbe059a3fb\",\n            \"handle\": \"http://www.Kelly_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:44.584Z\",\n            \"updatedAt\": \"2023-02-08T11:34:44.584Z\"\n        },\n        {\n            \"id\": \"beccfcc6-c977-4005-9471-9bf16d759da6\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"53144315-fe35-4a04-84db-95fbe059a3fb\",\n            \"handle\": \"http://www.Kelly_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:44.774Z\",\n            \"updatedAt\": \"2023-02-08T11:34:44.774Z\"\n        },\n        {\n            \"id\": \"b349e84e-d5d3-4639-86f7-221d36feda4d\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"53144315-fe35-4a04-84db-95fbe059a3fb\",\n            \"handle\": \"http://www.Kelly_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:44.964Z\",\n            \"updatedAt\": \"2023-02-08T11:34:44.964Z\"\n        },\n        {\n            \"id\": \"ec82d2d8-73e8-4b70-8b26-2250fab82306\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"d37b6ce1-1bdb-401c-960e-910059999ac5\",\n            \"handle\": \"http://www.Robin_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:46.245Z\",\n            \"updatedAt\": \"2023-02-08T11:34:46.245Z\"\n        },\n        {\n            \"id\": \"aa8351a7-fafd-4cdf-bbdc-5981c805c0e0\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"d37b6ce1-1bdb-401c-960e-910059999ac5\",\n            \"handle\": \"http://www.Robin_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:46.440Z\",\n            \"updatedAt\": \"2023-02-08T11:34:46.440Z\"\n        },\n        {\n            \"id\": \"e38c78d3-2e70-45a6-8674-5398818682a4\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"d37b6ce1-1bdb-401c-960e-910059999ac5\",\n            \"handle\": \"http://www.Robin_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:46.637Z\",\n            \"updatedAt\": \"2023-02-08T11:34:46.637Z\"\n        },\n        {\n            \"id\": \"7e24324e-1fc3-485d-b216-9cc3e6c758d2\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"d37b6ce1-1bdb-401c-960e-910059999ac5\",\n            \"handle\": \"http://www.Robin_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:46.827Z\",\n            \"updatedAt\": \"2023-02-08T11:34:46.827Z\"\n        },\n        {\n            \"id\": \"065fd6ac-6ca7-466a-85fd-453c8687ea4c\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"6984d90f-eb7b-46a8-87f9-0112a49ab8d4\",\n            \"handle\": \"http://www.Mousam_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:57.349Z\",\n            \"updatedAt\": \"2023-02-08T13:36:57.349Z\"\n        },\n        {\n            \"id\": \"7388c5c0-ff84-4fb9-b674-6f29ead036a5\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"9c18b253-7fe3-42fe-81a3-902721c99810\",\n            \"handle\": \"http://www.Jonathan_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:58.871Z\",\n            \"updatedAt\": \"2023-02-08T13:36:58.871Z\"\n        },\n        {\n            \"id\": \"b7d6b71f-cc54-4983-972f-b9f1f552d0db\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"9c18b253-7fe3-42fe-81a3-902721c99810\",\n            \"handle\": \"http://www.Jonathan_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:59.059Z\",\n            \"updatedAt\": \"2023-02-08T13:36:59.059Z\"\n        },\n        {\n            \"id\": \"296a95ea-1a8d-4406-a031-d95a5e71c4ab\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"9c18b253-7fe3-42fe-81a3-902721c99810\",\n            \"handle\": \"http://www.Jonathan_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:59.246Z\",\n            \"updatedAt\": \"2023-02-08T13:36:59.246Z\"\n        },\n        {\n            \"id\": \"24875724-48e0-47ec-afac-3657d334253d\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"1fd7b8b8-687f-4a61-aea1-30244e30b80a\",\n            \"handle\": \"https://facebook.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.267Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.267Z\"\n        },\n        {\n            \"id\": \"4db0e746-0eea-4cf2-8427-f53f7e8c116a\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"1fd7b8b8-687f-4a61-aea1-30244e30b80a\",\n            \"handle\": \"https://www.instagram.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.457Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.457Z\"\n        },\n        {\n            \"id\": \"31cbdb52-dc19-4e57-9115-21db72434c0d\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"1fd7b8b8-687f-4a61-aea1-30244e30b80a\",\n            \"handle\": \"https://www.linkedin.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.646Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.646Z\"\n        },\n        {\n            \"id\": \"2eeeb802-f796-42c2-87f8-3b18396991f7\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"1fd7b8b8-687f-4a61-aea1-30244e30b80a\",\n            \"handle\": \"https://twitter.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.835Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.835Z\"\n        },\n        {\n            \"id\": \"2f9a1a68-81dd-4428-b76b-de779f168d18\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"9c18b253-7fe3-42fe-81a3-902721c99810\",\n            \"handle\": \"http://www.Jonathan_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:59.435Z\",\n            \"updatedAt\": \"2023-02-08T13:36:59.435Z\"\n        },\n        {\n            \"id\": \"414c8294-f706-4fe3-8119-99f7f1b3fb67\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"87e51f2b-8d16-4b22-aff4-3e18f1d886a5\",\n            \"handle\": \"http://www.Jeffrey_instagramurl.com\",\n            \"createdAt\": \"2023-02-27T10:33:10.348Z\",\n            \"updatedAt\": \"2023-02-27T10:33:10.348Z\"\n        },\n        {\n            \"id\": \"b2b92daf-5114-4094-a87e-94496c412e0f\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"d0e60170-ca37-4805-ba59-4f984cf57145\",\n            \"handle\": \"http://www.Michelle_facebookurl.com\",\n            \"createdAt\": \"2023-02-27T10:32:51.096Z\",\n            \"updatedAt\": \"2023-02-27T10:32:51.096Z\"\n        },\n        {\n            \"id\": \"d0a7518d-96c3-47c4-8098-354d863dd18d\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"0d10923a-942b-4900-8d72-e1489a5c5aef\",\n            \"handle\": \"http://www.Briony_facebookurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:10.428Z\",\n            \"updatedAt\": \"2023-02-24T15:34:10.428Z\"\n        },\n        {\n            \"id\": \"b54435e5-45c8-42c3-bcb4-b082ae995db1\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"0d10923a-942b-4900-8d72-e1489a5c5aef\",\n            \"handle\": \"http://www.Briony_instagramurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:10.619Z\",\n            \"updatedAt\": \"2023-02-24T15:34:10.619Z\"\n        },\n        {\n            \"id\": \"bcb22bef-528e-47c9-a726-66924e369799\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"0d10923a-942b-4900-8d72-e1489a5c5aef\",\n            \"handle\": \"http://www.Briony_linkedinurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:10.809Z\",\n            \"updatedAt\": \"2023-02-24T15:34:10.809Z\"\n        },\n        {\n            \"id\": \"2715bf8d-d247-41fa-b9d9-54a182068e26\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"0d10923a-942b-4900-8d72-e1489a5c5aef\",\n            \"handle\": \"http://www.Briony_twitterurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:11.000Z\",\n            \"updatedAt\": \"2023-02-24T15:34:11.000Z\"\n        },\n        {\n            \"id\": \"663b739c-64e0-4fd5-96b7-3c235fad70b8\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"61e5c857-b56c-497a-8b39-fda83b652614\",\n            \"handle\": \"http://www.Latoya_facebookurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:13.026Z\",\n            \"updatedAt\": \"2023-02-24T15:34:13.026Z\"\n        },\n        {\n            \"id\": \"8745dd95-55e3-4b56-9d86-865d8ffdc95e\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"61e5c857-b56c-497a-8b39-fda83b652614\",\n            \"handle\": \"http://www.Latoya_instagramurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:13.217Z\",\n            \"updatedAt\": \"2023-02-24T15:34:13.217Z\"\n        },\n        {\n            \"id\": \"8b36afe7-7de1-4939-8053-6d00a880af19\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"61e5c857-b56c-497a-8b39-fda83b652614\",\n            \"handle\": \"http://www.Latoya_linkedinurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:13.408Z\",\n            \"updatedAt\": \"2023-02-24T15:34:13.408Z\"\n        },\n        {\n            \"id\": \"05efaaca-266d-43ab-ba92-4b61b13f3c58\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"61e5c857-b56c-497a-8b39-fda83b652614\",\n            \"handle\": \"http://www.Latoya_twitterurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:13.598Z\",\n            \"updatedAt\": \"2023-02-24T15:34:13.598Z\"\n        },\n        {\n            \"id\": \"4d25e5a8-f125-4a84-929e-a7a01c574b4d\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"1b840984-958d-4c30-b710-f2dc1c55ba57\",\n            \"handle\": \"http://www.Jason_facebookurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:15.205Z\",\n            \"updatedAt\": \"2023-02-24T15:34:15.205Z\"\n        },\n        {\n            \"id\": \"7464dbed-7288-458c-b055-c65446948d87\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"1b840984-958d-4c30-b710-f2dc1c55ba57\",\n            \"handle\": \"http://www.Jason_instagramurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:15.396Z\",\n            \"updatedAt\": \"2023-02-24T15:34:15.396Z\"\n        },\n        {\n            \"id\": \"5ccb4da4-f092-4534-a5c5-6a3c6f8416d3\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"1b840984-958d-4c30-b710-f2dc1c55ba57\",\n            \"handle\": \"http://www.Jason_linkedinurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:15.587Z\",\n            \"updatedAt\": \"2023-02-24T15:34:15.587Z\"\n        },\n        {\n            \"id\": \"7e8c7ec1-8103-4778-a9b2-a1d3f864a7a8\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"1b840984-958d-4c30-b710-f2dc1c55ba57\",\n            \"handle\": \"http://www.Jason_twitterurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:15.778Z\",\n            \"updatedAt\": \"2023-02-24T15:34:15.778Z\"\n        },\n        {\n            \"id\": \"b483abb1-1f60-4faa-8f22-3a89c9c3fdc9\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"a15082b9-7fbb-4516-baf8-71f00fddf94e\",\n            \"handle\": \"http://www.Ladina_facebookurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:16.974Z\",\n            \"updatedAt\": \"2023-02-24T15:34:16.974Z\"\n        },\n        {\n            \"id\": \"e38a316c-c0fe-446e-b48f-af886c4a50c5\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"a15082b9-7fbb-4516-baf8-71f00fddf94e\",\n            \"handle\": \"http://www.Ladina_instagramurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:17.164Z\",\n            \"updatedAt\": \"2023-02-24T15:34:17.164Z\"\n        },\n        {\n            \"id\": \"e2bc99b6-5f53-4d59-88b2-0310ecd06a2b\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"49e49126-f3b3-4528-afd0-701c7db49b39\",\n            \"handle\": \"http://www.Christina_instagramurl.com\",\n            \"createdAt\": \"2022-12-16T22:27:33.686Z\",\n            \"updatedAt\": \"2022-12-16T22:27:33.686Z\"\n        },\n        {\n            \"id\": \"2365129f-d9f9-49d5-a1b0-a3a03731b553\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"bbdef004-d4e5-447c-bf25-732c6873b589\",\n            \"handle\": \"yebin-choi-74281180\",\n            \"createdAt\": \"2022-10-21T20:44:28.136Z\",\n            \"updatedAt\": \"2022-10-21T20:44:28.136Z\"\n        },\n        {\n            \"id\": \"afa730f0-b8ee-40a3-8249-649a2064780e\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"cc6cc1b8-a187-4d82-8621-87234641e1d2\",\n            \"handle\": \"yvette-lee-67476b129\",\n            \"createdAt\": \"2022-10-21T20:50:11.300Z\",\n            \"updatedAt\": \"2022-10-21T20:50:11.300Z\"\n        },\n        {\n            \"id\": \"686d034e-344c-473b-818f-ed476348a732\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"9e1dbea8-5ba6-4e4d-a3db-2e83b5a48158\",\n            \"handle\": \"walter-lewis-0689a145\",\n            \"createdAt\": \"2022-10-21T20:55:48.453Z\",\n            \"updatedAt\": \"2022-10-21T20:55:48.453Z\"\n        },\n        {\n            \"id\": \"b564fe48-24cb-4871-946f-f251d1ccaa4d\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"916df579-0187-47d3-88c5-7f1e11a4b13b\",\n            \"handle\": \"peggy-oneill\",\n            \"createdAt\": \"2022-10-21T20:56:25.391Z\",\n            \"updatedAt\": \"2022-10-21T20:56:25.391Z\"\n        },\n        {\n            \"id\": \"765df203-a998-42dd-b7f4-9f45cc8dc601\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"3d240311-be93-4689-a485-4330e52ffb77\",\n            \"handle\": \"andrewrmorton\",\n            \"createdAt\": \"2022-10-21T20:53:02.982Z\",\n            \"updatedAt\": \"2022-10-21T20:53:02.982Z\"\n        },\n        {\n            \"id\": \"2e19c828-10de-4800-8e87-028800d034a9\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"75f38543-f134-40ab-b82c-dd2b7ffe4de6\",\n            \"handle\": \"gennady-babankov-4022a7a\",\n            \"createdAt\": \"2022-10-21T20:55:41.667Z\",\n            \"updatedAt\": \"2022-10-21T20:55:41.667Z\"\n        },\n        {\n            \"id\": \"8df223ca-ceb2-48bc-b8f2-425056189502\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"9e1dbea8-5ba6-4e4d-a3db-2e83b5a48158\",\n            \"handle\": \"Walter-Lewis-Fitness-Solutions-158247410861407/\",\n            \"createdAt\": \"2022-10-21T20:55:48.076Z\",\n            \"updatedAt\": \"2022-10-21T20:55:48.076Z\"\n        },\n        {\n            \"id\": \"a0e44a49-ab03-4082-bec1-e2e16dfc158f\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"0994654a-6b27-4ec9-a92c-b4079346abfa\",\n            \"handle\": \"danielvillao\",\n            \"createdAt\": \"2022-10-21T20:57:06.268Z\",\n            \"updatedAt\": \"2022-10-21T20:57:06.268Z\"\n        },\n        {\n            \"id\": \"e9387ad4-3ca6-481d-9457-88006eb91e24\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"5cb5304f-1ecf-43d9-b637-82797969d2ce\",\n            \"handle\": \"dr-ed-hubbard-ph-d-312ba23\",\n            \"createdAt\": \"2022-10-21T20:57:31.357Z\",\n            \"updatedAt\": \"2022-10-21T20:57:31.357Z\"\n        },\n        {\n            \"id\": \"9237418b-e0ec-4b84-857d-cccb6f4c45a8\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"dd921900-29f1-4b75-8e33-9db3d9c282f7\",\n            \"handle\": \"chelseacwilliams\",\n            \"createdAt\": \"2022-10-21T20:57:37.748Z\",\n            \"updatedAt\": \"2022-10-21T20:57:37.748Z\"\n        },\n        {\n            \"id\": \"85b51e82-1337-4c8b-983b-3ea038f76208\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"65ef6d44-3f5c-48c1-8b46-ee91805e918d\",\n            \"handle\": \"integritydev\",\n            \"createdAt\": \"2022-10-21T20:57:46.357Z\",\n            \"updatedAt\": \"2022-10-21T20:57:46.357Z\"\n        },\n        {\n            \"id\": \"f2c721df-719a-42d7-a536-77272c9a9530\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"a516bf37-11c6-4afc-841d-0667391c2d3e\",\n            \"handle\": \"triciadowning\",\n            \"createdAt\": \"2022-10-21T20:57:52.726Z\",\n            \"updatedAt\": \"2022-10-21T20:57:52.726Z\"\n        },\n        {\n            \"id\": \"b1843ff7-9fc8-4c39-96b8-b30226bef6ed\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"442c2780-ed13-45f6-9ec6-f2175ea2ae12\",\n            \"handle\": \"ErikPKondo\",\n            \"createdAt\": \"2022-10-21T20:57:54.218Z\",\n            \"updatedAt\": \"2022-10-21T20:57:54.218Z\"\n        },\n        {\n            \"id\": \"bd46ed9a-605d-406b-95b6-81005d77331f\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"6fdc1f66-89ee-4429-9f8e-7a10949c299c\",\n            \"handle\": \"deepsee.consulting\",\n            \"createdAt\": \"2022-10-21T20:58:00.292Z\",\n            \"updatedAt\": \"2022-10-21T20:58:00.292Z\"\n        },\n        {\n            \"id\": \"0845c686-3508-4a2c-9e66-72118f0f9ade\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"7fb1841d-80b3-48c3-a471-14f38cf6f830\",\n            \"handle\": \"migueljoeyaviles\",\n            \"createdAt\": \"2022-10-21T20:58:07.478Z\",\n            \"updatedAt\": \"2022-10-21T20:58:07.478Z\"\n        },\n        {\n            \"id\": \"9ff20a4d-b1b6-46ba-abdd-09bb3c435b6b\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"963e18a4-17fb-42e4-82f5-10a752025ca8\",\n            \"handle\": \"catherinemattice\",\n            \"createdAt\": \"2022-10-21T20:58:14.415Z\",\n            \"updatedAt\": \"2022-10-21T20:58:14.415Z\"\n        },\n        {\n            \"id\": \"48679e07-7f31-4783-a6a5-2325b0bd57d5\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"d6bf4629-2ec3-4a2e-b53a-62910e1669ef\",\n            \"handle\": \"annette-fetterolf-d-ed-8142b413\",\n            \"createdAt\": \"2022-10-21T20:58:20.864Z\",\n            \"updatedAt\": \"2022-10-21T20:58:20.864Z\"\n        },\n        {\n            \"id\": \"68607bfa-fb5e-4d21-bda8-dd470116a992\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"6c99629c-ab50-47a4-b9d6-4dba12eeb43f\",\n            \"handle\": \"joy-johnsoncarruthers\",\n            \"createdAt\": \"2022-10-21T20:58:54.349Z\",\n            \"updatedAt\": \"2022-10-21T20:58:54.349Z\"\n        },\n        {\n            \"id\": \"ba65ae62-a6f5-4799-955b-912967068445\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"8a36903b-d760-4945-a7c1-f27ececf4a94\",\n            \"handle\": \"bob.lockett.12\",\n            \"createdAt\": \"2022-10-21T20:59:27.983Z\",\n            \"updatedAt\": \"2022-10-21T20:59:27.983Z\"\n        },\n        {\n            \"id\": \"b83ff635-5503-4836-bdd6-fd6d7ce1d720\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"8a36903b-d760-4945-a7c1-f27ececf4a94\",\n            \"handle\": \"boblockett\",\n            \"createdAt\": \"2022-10-21T20:59:28.363Z\",\n            \"updatedAt\": \"2022-10-21T20:59:28.363Z\"\n        },\n        {\n            \"id\": \"2c973b1d-dbac-497d-8ed8-ff0940d648a9\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"20d9663d-721a-449a-a4de-eef50122893f\",\n            \"handle\": \"mary-cheddie-shrm-scp-8418353\",\n            \"createdAt\": \"2022-10-21T20:59:39.534Z\",\n            \"updatedAt\": \"2022-10-21T20:59:39.534Z\"\n        },\n        {\n            \"id\": \"a3547892-6392-45fa-a170-e36203940bd3\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"d3b47dc1-c379-4cfc-b04c-4eede3483b5b\",\n            \"handle\": \"http://www.Lisa_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:40.336Z\",\n            \"updatedAt\": \"2023-02-08T11:34:40.336Z\"\n        },\n        {\n            \"id\": \"721ae0dd-3c76-4fa8-bda1-e02b4387a48b\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"d3b47dc1-c379-4cfc-b04c-4eede3483b5b\",\n            \"handle\": \"http://www.Lisa_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:40.525Z\",\n            \"updatedAt\": \"2023-02-08T11:34:40.525Z\"\n        },\n        {\n            \"id\": \"ac36603c-1cc8-49b6-88cc-ddcc1cd8d8a1\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"d3b47dc1-c379-4cfc-b04c-4eede3483b5b\",\n            \"handle\": \"http://www.Lisa_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:40.715Z\",\n            \"updatedAt\": \"2023-02-08T11:34:40.715Z\"\n        },\n        {\n            \"id\": \"30d88d57-333c-48c8-8572-a5f3060ee93a\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"94233ef9-1353-43b8-8f68-02a7a6b610fd\",\n            \"handle\": \"http://www.Latoya_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:43.807Z\",\n            \"updatedAt\": \"2023-02-08T11:34:43.807Z\"\n        },\n        {\n            \"id\": \"6cb05618-8d77-4bca-9d9d-cecd6cdb4590\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"94233ef9-1353-43b8-8f68-02a7a6b610fd\",\n            \"handle\": \"http://www.Latoya_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:43.996Z\",\n            \"updatedAt\": \"2023-02-08T11:34:43.996Z\"\n        },\n        {\n            \"id\": \"3b8d8da8-e9a2-44aa-b780-1aaf9ee889fc\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"94233ef9-1353-43b8-8f68-02a7a6b610fd\",\n            \"handle\": \"http://www.Latoya_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:44.186Z\",\n            \"updatedAt\": \"2023-02-08T11:34:44.186Z\"\n        },\n        {\n            \"id\": \"9b96ebb1-e804-479f-a3c1-b11ebeffd8ef\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"94233ef9-1353-43b8-8f68-02a7a6b610fd\",\n            \"handle\": \"http://www.Latoya_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:44.375Z\",\n            \"updatedAt\": \"2023-02-08T11:34:44.375Z\"\n        },\n        {\n            \"id\": \"44e0339e-f51c-4cb8-a93f-2fe756a6996c\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"798ed91c-bacf-4d21-b74c-7f2559658e8c\",\n            \"handle\": \"http://www.Shih-Shan_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:44.968Z\",\n            \"updatedAt\": \"2023-02-08T11:34:44.968Z\"\n        },\n        {\n            \"id\": \"5e25bf67-2ae7-4c58-b02f-2dab6590e68e\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"798ed91c-bacf-4d21-b74c-7f2559658e8c\",\n            \"handle\": \"http://www.Shih-Shan_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:45.158Z\",\n            \"updatedAt\": \"2023-02-08T11:34:45.158Z\"\n        },\n        {\n            \"id\": \"10946093-faef-4f7a-a825-22e80614a4f0\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"798ed91c-bacf-4d21-b74c-7f2559658e8c\",\n            \"handle\": \"http://www.Shih-Shan_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:45.347Z\",\n            \"updatedAt\": \"2023-02-08T11:34:45.347Z\"\n        },\n        {\n            \"id\": \"b4a5d895-6d00-4216-a5b9-0b0a58922054\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"798ed91c-bacf-4d21-b74c-7f2559658e8c\",\n            \"handle\": \"http://www.Shih-Shan_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:45.536Z\",\n            \"updatedAt\": \"2023-02-08T11:34:45.536Z\"\n        },\n        {\n            \"id\": \"3989e923-080a-41e6-9744-6e34cc4fe0ad\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"612119c3-e61d-435e-958e-8ba9841ccb88\",\n            \"handle\": \"http://www.Karin_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:45.928Z\",\n            \"updatedAt\": \"2023-02-08T11:34:45.928Z\"\n        },\n        {\n            \"id\": \"94bc0b75-d7cf-4558-b839-693bc8d25418\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"612119c3-e61d-435e-958e-8ba9841ccb88\",\n            \"handle\": \"http://www.Karin_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:46.119Z\",\n            \"updatedAt\": \"2023-02-08T11:34:46.119Z\"\n        },\n        {\n            \"id\": \"89a17fa2-3b6c-4f66-aeb8-f66ddbc13de5\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"612119c3-e61d-435e-958e-8ba9841ccb88\",\n            \"handle\": \"http://www.Karin_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:46.312Z\",\n            \"updatedAt\": \"2023-02-08T11:34:46.312Z\"\n        },\n        {\n            \"id\": \"64bbb138-00f6-4d1d-8ccf-c42af3bc95c7\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"612119c3-e61d-435e-958e-8ba9841ccb88\",\n            \"handle\": \"http://www.Karin_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T11:34:46.506Z\",\n            \"updatedAt\": \"2023-02-08T11:34:46.506Z\"\n        },\n        {\n            \"id\": \"e0a7597a-f75e-4082-a5af-728785afeca9\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"d42219f6-af44-42d9-9ccc-d7b8212870bc\",\n            \"handle\": \"http://www.Seunghyun_instagramurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:57.350Z\",\n            \"updatedAt\": \"2023-02-08T13:36:57.350Z\"\n        },\n        {\n            \"id\": \"c2145480-86d4-4daf-8a90-a17a710019c4\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"770ac2c0-2eb0-47b4-9c6f-625d2eb749b7\",\n            \"handle\": \"https://facebook.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.322Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.322Z\"\n        },\n        {\n            \"id\": \"1959bb44-7f3d-4b8d-b68f-560dd17c564d\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"d42219f6-af44-42d9-9ccc-d7b8212870bc\",\n            \"handle\": \"http://www.Seunghyun_linkedinurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:57.547Z\",\n            \"updatedAt\": \"2023-02-08T13:36:57.547Z\"\n        },\n        {\n            \"id\": \"f12b019c-15c2-442f-b13d-f60bb3586345\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"d42219f6-af44-42d9-9ccc-d7b8212870bc\",\n            \"handle\": \"http://www.Seunghyun_twitterurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:57.744Z\",\n            \"updatedAt\": \"2023-02-08T13:36:57.744Z\"\n        },\n        {\n            \"id\": \"8e0c3a1e-6004-414a-aa36-cb7385f050d0\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"770ac2c0-2eb0-47b4-9c6f-625d2eb749b7\",\n            \"handle\": \"https://www.instagram.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.512Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.512Z\"\n        },\n        {\n            \"id\": \"7851c8fb-f451-49d7-9090-3fc35b2258f0\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"770ac2c0-2eb0-47b4-9c6f-625d2eb749b7\",\n            \"handle\": \"https://www.linkedin.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.704Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.704Z\"\n        },\n        {\n            \"id\": \"18b5e8d3-f740-4a1f-992e-566d5aee77a7\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"770ac2c0-2eb0-47b4-9c6f-625d2eb749b7\",\n            \"handle\": \"https://twitter.com\",\n            \"createdAt\": \"2023-02-13T16:52:33.893Z\",\n            \"updatedAt\": \"2023-02-13T16:52:33.893Z\"\n        },\n        {\n            \"id\": \"8df3cef9-335a-4014-a791-4dd0a14ca17d\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"7f64c229-da7c-4fea-9873-e9db93fa75c2\",\n            \"handle\": \"http://www.Summer_facebookurl.com\",\n            \"createdAt\": \"2023-02-27T10:32:51.098Z\",\n            \"updatedAt\": \"2023-02-27T10:32:51.098Z\"\n        },\n        {\n            \"id\": \"dfece7c5-0989-4597-891e-1ae46750abde\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"13de0105-50c7-4ff4-823e-c4e39e46a89c\",\n            \"handle\": \"http://www.Kelly_facebookurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:13.961Z\",\n            \"updatedAt\": \"2023-02-24T15:34:13.961Z\"\n        },\n        {\n            \"id\": \"3c5e06d8-4da9-49d1-89e6-f4bc2ace8bdc\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"13de0105-50c7-4ff4-823e-c4e39e46a89c\",\n            \"handle\": \"http://www.Kelly_instagramurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:14.152Z\",\n            \"updatedAt\": \"2023-02-24T15:34:14.152Z\"\n        },\n        {\n            \"id\": \"b8669289-70c8-45c8-8dc2-9043b4337f7e\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"13de0105-50c7-4ff4-823e-c4e39e46a89c\",\n            \"handle\": \"http://www.Kelly_linkedinurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:14.344Z\",\n            \"updatedAt\": \"2023-02-24T15:34:14.344Z\"\n        },\n        {\n            \"id\": \"d179087d-1dbe-407e-b569-e3d34cefc008\",\n            \"socialmediatypeId\": \"4135dadb-392d-4e26-959d-fcb3a32b94a6\",\n            \"speakerId\": \"13de0105-50c7-4ff4-823e-c4e39e46a89c\",\n            \"handle\": \"http://www.Kelly_twitterurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:14.534Z\",\n            \"updatedAt\": \"2023-02-24T15:34:14.534Z\"\n        },\n        {\n            \"id\": \"f6142552-5e60-4b91-aed7-ba1deceda967\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"e76d67c8-4aad-4412-b4f6-2cb2b038a421\",\n            \"handle\": \"http://www.Leslie_facebookurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:15.199Z\",\n            \"updatedAt\": \"2023-02-24T15:34:15.199Z\"\n        },\n        {\n            \"id\": \"42ba2c68-ab39-4e17-94e0-556a2445ae18\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"a2cbc983-cf85-4049-9eab-205ad2fa9a4d\",\n            \"handle\": \"http://www.Karim_facebookurl.com\",\n            \"createdAt\": \"2023-02-08T13:36:58.762Z\",\n            \"updatedAt\": \"2023-02-08T13:36:58.762Z\"\n        },\n        {\n            \"id\": \"e9dd0098-23be-4506-8980-01129416b8de\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"e76d67c8-4aad-4412-b4f6-2cb2b038a421\",\n            \"handle\": \"http://www.Leslie_instagramurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:15.390Z\",\n            \"updatedAt\": \"2023-02-24T15:34:15.390Z\"\n        },\n        {\n            \"id\": \"aa45cffd-7a64-48f6-8e3e-762646220f6d\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"e76d67c8-4aad-4412-b4f6-2cb2b038a421\",\n            \"handle\": \"http://www.Leslie_linkedinurl.com\",\n            \"createdAt\": \"2023-02-24T15:34:15.584Z\",\n            \"updatedAt\": \"2023-02-24T15:34:15.584Z\"\n        },\n        {\n            \"id\": \"c2e4fd86-96d7-4bee-a3e6-5d98b108ac48\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"00c06a53-96df-446f-a9ef-125f050b5b43\",\n            \"handle\": \"www.facebook.com\",\n            \"createdAt\": \"2022-11-10T04:16:42.007Z\",\n            \"updatedAt\": \"2022-11-14T20:14:43.950Z\"\n        },\n        {\n            \"id\": \"b838b831-617d-4a20-9914-7d62f576a25d\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"00c06a53-96df-446f-a9ef-125f050b5b43\",\n            \"handle\": \"www.instgram.com\",\n            \"createdAt\": \"2022-11-10T04:16:42.194Z\",\n            \"updatedAt\": \"2022-11-14T20:14:44.145Z\"\n        },\n        {\n            \"id\": \"e4a4256c-41ec-4117-b6d8-d3e812af2092\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"00c06a53-96df-446f-a9ef-125f050b5b43\",\n            \"handle\": \"www.linkedln.com\",\n            \"createdAt\": \"2022-11-10T04:16:42.381Z\",\n            \"updatedAt\": \"2022-11-14T20:14:44.340Z\"\n        },\n        {\n            \"id\": \"9b79a109-9617-491a-a1f3-cdc7f83a6eac\",\n            \"socialmediatypeId\": \"ab8086c7-9977-42cf-b07d-1630ab19fbc2\",\n            \"speakerId\": \"a890f371-1b6a-44ed-a7e8-a2b0552348f0\",\n            \"handle\": \"http://www.Seunghyun_instagramurl.com\",\n            \"createdAt\": \"2022-12-16T22:27:33.757Z\",\n            \"updatedAt\": \"2022-12-16T22:27:33.757Z\"\n        },\n        {\n            \"id\": \"31529ed2-d6db-43bf-a1e4-420c2934e610\",\n            \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n            \"speakerId\": \"a890f371-1b6a-44ed-a7e8-a2b0552348f0\",\n            \"handle\": \"http://www.Seunghyun_linkedinurl.com\",\n            \"createdAt\": \"2022-12-16T22:27:33.948Z\",\n            \"updatedAt\": \"2022-12-16T22:27:33.948Z\"\n        },\n        {\n            \"id\": \"5a8156cf-ed01-43ee-993d-28bdbb097718\",\n            \"socialmediatypeId\": \"91e6ea58-3746-4b11-8d6a-aef8acf57b51\",\n            \"speakerId\": \"2524039a-7736-4a97-af77-d03046d8d1ca\",\n            \"handle\": \"https://www.facebookurl.com\",\n            \"createdAt\": \"2022-12-12T17:57:17.486Z\",\n            \"updatedAt\": \"2022-12-12T17:57:17.486Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 236,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 23538\n    }\n}"}],"_postman_id":"553ad2f6-6887-4cea-b75e-cd407d206737"},{"name":"Create a Speaker-Socialmediatype relationship","id":"8daf4640-d537-45a5-a379-222d8712cab6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"speakerId\":\"24a26843-34aa-4d37-9d33-64578e783f12\",\r\n\"socialmediatypeId\":\"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\r\n\"handle\": \"Instagram\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2","description":"<p>Create a speaker and socialmediatype relationship by passing along a Handle value</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["socialmediatype-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"a4b06327-f84f-4c8d-afaa-49f7fde2f9f5","name":"Create a speaker-socialmediatype relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"speakerId\":\"24a26843-34aa-4d37-9d33-64578e783f12\",\r\n\"socialmediatypeId\":\"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\r\n\"handle\": \"Instagram\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 17:58:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"254"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"fe-ZUOi1++pNxlf/yiQqE/Q4dprzg4\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5f04bd2e-5693-442a-85eb-5e3a75a81855\",\n    \"speakerId\": \"24a26843-34aa-4d37-9d33-64578e783f12\",\n    \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n    \"handle\": \"Instagram\",\n    \"updatedAt\": \"2023-06-28T17:58:55.265Z\",\n    \"createdAt\": \"2023-06-28T17:58:55.265Z\"\n}"}],"_postman_id":"8daf4640-d537-45a5-a379-222d8712cab6"},{"name":"Read a Speaker-Socialmediatype relationship","id":"9cade9dd-8a36-48eb-a1c8-f67396fb08db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2/:id","description":"<p>Retrieve single record for a related speaker and socialmediatype along with the Handle value</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>speakers</td>\n<td>socialmediatypes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["socialmediatype-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"748fd131-25de-4038-add1-5569ec4512b9","type":"any","value":"5f04bd2e-5693-442a-85eb-5e3a75a81855","key":"id"}]}},"response":[{"id":"e297814b-89e1-43ae-9f4a-fdbd98b3766f","name":"Read a speaker-socialmediatype relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["socialmediatype-speaker","v2",":id"],"variable":[{"key":"id","value":"5f04bd2e-5693-442a-85eb-5e3a75a81855"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 17:59:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"254"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"fe-zU+DltB8SNnRc9xm9QG8CSXsIGk\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5f04bd2e-5693-442a-85eb-5e3a75a81855\",\n    \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n    \"speakerId\": \"24a26843-34aa-4d37-9d33-64578e783f12\",\n    \"handle\": \"Instagram\",\n    \"createdAt\": \"2023-06-28T17:58:55.265Z\",\n    \"updatedAt\": \"2023-06-28T17:58:55.265Z\"\n}"},{"id":"d9f1b40c-9c52-4f05-8887-975d20700b1b","name":"Read a Speaker-Socialmediatype relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2/:id?include=socialmediatypes,speakers","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["socialmediatype-speaker","v2",":id"],"query":[{"key":"include","value":"socialmediatypes,speakers"}],"variable":[{"key":"id","value":"fc342438-2ab8-41c9-a35d-30a278ef406c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2188"},{"key":"ETag","value":"W/\"88c-PEQZCc5rmI8r/NDIsENU8GVPsJA\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:06:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fc342438-2ab8-41c9-a35d-30a278ef406c\",\n    \"socialmediatypeId\": \"82aa75cd-8d50-4376-a0b1-d1968da97c90\",\n    \"speakerId\": \"759641a6-e2ae-4f60-aef0-7148dfbc2646\",\n    \"handle\": \"Floyd-Barrows-Engineer\",\n    \"createdAt\": \"2023-06-08T16:58:51.801Z\",\n    \"updatedAt\": \"2023-06-08T16:58:51.801Z\",\n    \"socialmediatypes\": {\n        \"collection\": [\n            {\n                \"id\": \"82aa75cd-8d50-4376-a0b1-d1968da97c90\",\n                \"name\": \"Facebook wadtptzqvapimaedhjuimmisatufiaurhdrxlstjwgnhecj\",\n                \"domain\": \"closed-octavo.name\",\n                \"createdAt\": \"2023-06-08T16:58:51.793Z\",\n                \"updatedAt\": \"2023-06-08T16:58:51.793Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"759641a6-e2ae-4f60-aef0-7148dfbc2646\",\n                \"producerRecordIdentifier\": \"rHCto\",\n                \"prefix\": \"Ms.\",\n                \"preferredName\": \"Eladio\",\n                \"firstName\": \"Floyd\",\n                \"middleName\": \"Harper\",\n                \"lastName\": \"Barrows\",\n                \"suffix\": \"IV\",\n                \"degree\": \"Human Identity Facilitator\",\n                \"title\": \"Central Marketing Technician\",\n                \"organization\": \"Engineer\",\n                \"city\": \"Vandervortstad\",\n                \"state\": \"New York\",\n                \"country\": \"Cayman Islands\",\n                \"email\": \"Lemuel.Okuneva8@yahoo.com\",\n                \"emailTwo\": \"Estella.Willms30@yahoo.com\",\n                \"phoneNumber\": \"1-366-477-4646 x0905\",\n                \"mobileNumber\": \"1-227-291-2724 x090\",\n                \"faxNumber\": \"866.900.4944 x810\",\n                \"otherPhoneNumber\": \"(773) 974-6383\",\n                \"isVip\": false,\n                \"website\": \"https://studious-cormorant.net\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/858.jpg\",\n                \"biographyText\": \"Global\",\n                \"customAttributes\": \"{\\\"foo\\\":7580566467641344,\\\"bar\\\":5124849548656640,\\\"bike\\\":2004644668637184,\\\"a\\\":\\\"UPMRlGxNf*\\\",\\\"b\\\":7181339885305856,\\\"name\\\":2372641493090304,\\\"prop\\\":\\\"z3|WDsUvq,\\\"}\",\n                \"createdAt\": \"2023-06-08T16:58:51.799Z\",\n                \"updatedAt\": \"2023-06-08T16:58:51.799Z\",\n                \"eventId\": \"7dd92482-10ce-4e4a-b926-1101cf4c4c0e\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"socialmediatype\": {\n                \"href\": \"/socialmediatypes/v2/82aa75cd-8d50-4376-a0b1-d1968da97c90\"\n            },\n            \"speaker\": {\n                \"href\": \"/speakers/v2/759641a6-e2ae-4f60-aef0-7148dfbc2646\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"9cade9dd-8a36-48eb-a1c8-f67396fb08db"},{"name":"Destroy a Speaker-Socialmediatype relationship","id":"40ba6a3a-be33-4baa-bccc-ecefea77512c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2/:id","description":"<p>Delete a record so that speaker and socialmediatype records are no longer associated</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["socialmediatype-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"fe3ff273-8c75-4839-8f14-ab4cf8bc1e3e","type":"any","value":"5f04bd2e-5693-442a-85eb-5e3a75a81855","key":"id"}]}},"response":[{"id":"0793ef6c-74ee-4ebd-9169-04e28f82735e","name":"Destroy a speaker-socialmediatype relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/socialmediatype-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["socialmediatype-speaker","v2",":id"],"variable":[{"key":"id","value":"5f04bd2e-5693-442a-85eb-5e3a75a81855"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 18:00:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"254"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"fe-zU+DltB8SNnRc9xm9QG8CSXsIGk\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5f04bd2e-5693-442a-85eb-5e3a75a81855\",\n    \"socialmediatypeId\": \"fd768477-7f4e-4a29-b143-fb9f0a0bacb4\",\n    \"speakerId\": \"24a26843-34aa-4d37-9d33-64578e783f12\",\n    \"handle\": \"Instagram\",\n    \"createdAt\": \"2023-06-28T17:58:55.265Z\",\n    \"updatedAt\": \"2023-06-28T17:58:55.265Z\"\n}"}],"_postman_id":"40ba6a3a-be33-4baa-bccc-ecefea77512c"}],"id":"55440deb-8fb4-4910-8697-53d12a319781","description":"<p>Collection of CRUD operations and options to create, read and delete speaker-socialmediatype relationship</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID (uuid).</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>string</td>\n<td>Speaker ID (uuid).</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>string</td>\n<td>Socialmediatype ID (uuid).</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>string</td>\n<td>Handle associated to a socialmediatype for a speaker record</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"55440deb-8fb4-4910-8697-53d12a319781","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Sessions (v2)","item":[{"name":"List Sessions","id":"b50c85ad-b85f-4fca-90f9-1f0459f705f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2","description":"<p>Retrieve a collection of sessions.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"325c7da7-230f-4687-ad49-e27621d226a5","name":"List sessions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2"],"query":[{"key":"filter[eventId][eq]","value":"6e0d2e98-eafb-4777-ac79-25edbac7da54","description":"filter sessions where eventId equal to \"6e0d2e98-eafb-4777-ac79-25edbac7da54\".","disabled":true},{"key":"filter[sessiontypeId][eq]","value":"727cd05d-a900-4087-8423-868909ce2385","description":"filter sessions where sessiontypeId equal to \"727cd05d-a900-4087-8423-868909ce2385\".","disabled":true},{"key":"filter[clientIdentifier][eq]","value":"789","description":"filter sessions where clientidentifier equal to \"789\".","disabled":true},{"key":"filter[producerRecordIdentifier][substring]","value":"er456","description":"filter sessions where producerRecordIdentifier has a subsstring of \"er456\".","disabled":true},{"key":"filter[description][eq]","value":"null","description":"filter sessions where description equal to null","disabled":true},{"key":"page","value":"2","description":"filter sessions on page number 2","disabled":true},{"key":"filter[isFeatured][eq]","value":"false","description":"filter sessions where isFeatured flag is set to false","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Jun 2023 18:24:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"79305"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"135c9-W7HoM6DHceNXRiHUwmKpacGJK7A\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"585acdf7-b83a-4a53-a105-89d103e3f1b5\",\n            \"clientIdentifier\": \"613\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n            \"fullName\": \"Immune Monitoring\",\n            \"description\": \"This session will cover new advances in immune monitoring.\",\n            \"startsAt\": \"2022-12-02T08:00:00.000Z\",\n            \"endsAt\": \"2022-12-02T10:00:00.000Z\",\n            \"isFeatured\": false,\n            \"captureType\": \"livestream\",\n            \"hasAudienceResponseSystem\": true,\n            \"customAttributes\": {\n                \"patientReviews\": true,\n                \"SessionCustom1\": \"gen_23456\",\n                \"SessionCustom2\": \"education_credit\"\n            },\n             \"keywords\": [\n                \"transplant\",\n                \"visualization\",\n                \"impact\"\n            ],\n            \"createdAt\": \"2023-02-27T04:27:02.806Z\",\n            \"updatedAt\": \"2023-02-27T04:27:02.806Z\",\n            \"eventId\": \"0d68abe7-c878-4f7c-ba0b-cbf9ef81bfa1\",\n            \"roomId\": \"23229757-8627-45bb-8d07-8679596f651b\",\n            \"sessiontypeId\": \"b07be980-5505-489d-ba82-ef9b7f94f6b6\",\n            \"sessionformatId\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"b50c85ad-b85f-4fca-90f9-1f0459f705f1"},{"name":"Create a Session","id":"f87d4b42-6b3f-49a8-9fe3-e5b50e1e661f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"d3f28f28-aeef-4a87-bed3-c0b25e8f0e7f\",\n    \"sessiontypeId\": \"b07be980-5505-489d-ba82-ef9b7f94f6b6\",  \n    \"sessionformatId\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\",\n    \"roomId\": \"23229757-8627-45bb-8d07-8679596f651b\",\n    \"clientIdentifier\": \"613\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"fullName\": \"Immune Monitoring\",\n    \"description\": \"This session will cover new advances in immune monitoring.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": \"true\",\n    \"captureType\": \"livestream\",   \n    \"hasAudienceResponseSystem\": \"true\",\n    \"keywords\": [\"transplant\", \"visualization\", \"impact\"],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\" : \"gen_23456\",\n        \"sessionCustom2\" : \"education_credit\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2","description":"<p>Create a new session.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required field.  <br />Event ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>roomId</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Room ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>sessionformatId</td>\n<td>string</td>\n<td>Required field.  <br />Sessionformat ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>sessiontypeId</td>\n<td>string</td>\n<td>Optional field.  <br />Sessiontype ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Client identifier associated with the session record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Producer record identifier associated with the session record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Required field.  <br />Full name of a session.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Description.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Required field.  <br />Session start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Required field.  <br />Session end time.</td>\n</tr>\n<tr>\n<td>isFeatured</td>\n<td>boolean</td>\n<td>Optional field.  <br />Default value is false.  <br />Boolean flag to indicate if the session is featured.</td>\n</tr>\n<tr>\n<td>captureType</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Capture type of a session.</td>\n</tr>\n<tr>\n<td>hasAudienceResponseSystem</td>\n<td>boolean</td>\n<td>Optional field.  <br />Default value is false.  <br />Boolean to indicate if the session has audience response system.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Optional field.  <br />Nullable.  <br />Must be a valid JSON.  <br />Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>array of strings</td>\n<td>Optional field.  <br />Nullable.  <br />Must be a valid string array.  <br />List of session keywords.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-child-entities\">Includable Related Child Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subsessions</td>\n<td>sessionvideos</td>\n<td>sessionfiles</td>\n</tr>\n<tr>\n<td>sessionlinks</td>\n<td>session-speaker</td>\n<td>session-sessiontrack</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"cfe5236d-af2f-4e2b-baf6-aeb52ef52ffe","name":"Create a session","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"d3f28f28-aeef-4a87-bed3-c0b25e8f0e7f\",\n    \"sessiontypeId\": \"b07be980-5505-489d-ba82-ef9b7f94f6b6\",  \n    \"sessionformatId\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\",\n    \"roomId\": \"23229757-8627-45bb-8d07-8679596f651b\",\n    \"clientIdentifier\": \"613\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"fullName\": \"Immune Monitoring\",\n    \"description\": \"This session will cover new advances in immune monitoring.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": \"true\",\n    \"captureType\": \"livestream\",   \n    \"hasAudienceResponseSystem\": \"true\",\n    \"keywords\": [\"transplant\", \"visualization\", \"impact\"],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\" : \"gen_23456\",\n        \"sessionCustom2\" : \"education_credit\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Jun 2023 18:51:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"840"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"348-kwceiJQpt5gXV/bH8xZ48p446CU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c7d428c6-f6ca-4883-a951-31b3e921f97b\",\n    \"eventId\": \"d3f28f28-aeef-4a87-bed3-c0b25e8f0e7f\",\n    \"sessiontypeId\": \"b07be980-5505-489d-ba82-ef9b7f94f6b6\",\n    \"sessionformatId\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\",\n    \"roomId\": \"23229757-8627-45bb-8d07-8679596f651b\",\n    \"clientIdentifier\": \"613\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"fullName\": \"Immune Monitoring\",\n    \"description\": \"This session will cover new advances in immune monitoring.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": true,\n    \"captureType\": \"livestream\",\n    \"hasAudienceResponseSystem\": true,\n    \"keywords\": [\n        \"transplant\",\n        \"visualization\",\n        \"impact\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"updatedAt\": \"2023-06-14T18:51:21.083Z\",\n    \"createdAt\": \"2023-06-14T18:51:21.083Z\"\n}"},{"id":"ed7fed89-f5b6-4805-aa98-e1d55dc67312","name":"Create a Session with Related Child Entities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"sessiontypeId\": \"ba90212a-d86d-4e88-b1d8-e98c335a53b6\",  \n    \"sessionformatId\": \"497dcb00-99fc-49a5-8b2f-77b770ac509f\",\n    \"roomId\": \"c9afa611-e16b-4dff-a698-693bf84d2ef8\",\n    \"clientIdentifier\": \"613\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"fullName\": \"Immune Monitoring\",\n    \"description\": \"This session will cover new advances in immune monitoring.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": true,\n    \"captureType\": \"livestream\",   \n    \"hasAudienceResponseSystem\": true,\n    \"keywords\": [\"transplant\", \"visualization\", \"impact\"],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\" : \"gen_23456\",\n        \"sessionCustom2\" : \"education_credit\"\n    },\n    \"subsessions\": [\n        {\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n            \"clientIdentifier\": \"HOALABB_01-03\",\n            \"fullName\": \"VTE Guidelines\",   \n            \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n            \"sortOrder\": 2,\n            \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n            \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n            \"hasAudienceResponseSystem\": false,\n            \"customAttributes\": {\n                \"test\": \"Demo Data\"\n            },\n            \"subsessionformatId\": \"62567ce2-d59e-48fa-a950-03ed4f6a01d0\"\n        }\n    ],\n    \"sessionvideos\": [\n        {\n            \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n            \"type\":  \"mp3\",           \n            \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n            \"adminUrl\":  \"https://www.adminUrl.com\",\n            \"embedCode\": \"ibm_24579952\",        \n            \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n            \"streamKey\": \"BVRT879000VBNMH\",\n            \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n            \"closedcaptionStreamKey\":  \"STRCV109870\",\n            \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2235"},{"key":"ETag","value":"W/\"8bb-qozudG2LDtDzJpq+AZFT+Ph+8iU\""},{"key":"Date","value":"Thu, 21 Aug 2025 20:19:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a91223d1-5a2d-40e0-9477-6a93b182c582\",\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"sessiontypeId\": \"ba90212a-d86d-4e88-b1d8-e98c335a53b6\",\n    \"sessionformatId\": \"497dcb00-99fc-49a5-8b2f-77b770ac509f\",\n    \"roomId\": \"c9afa611-e16b-4dff-a698-693bf84d2ef8\",\n    \"clientIdentifier\": \"613\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"fullName\": \"Immune Monitoring\",\n    \"description\": \"This session will cover new advances in immune monitoring.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": true,\n    \"captureType\": \"livestream\",\n    \"hasAudienceResponseSystem\": true,\n    \"keywords\": [\n        \"transplant\",\n        \"visualization\",\n        \"impact\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"updatedAt\": \"2025-08-21T20:19:39.938Z\",\n    \"createdAt\": \"2025-08-21T20:19:39.938Z\",\n    \"subsessions\": {\n        \"collection\": [\n            {\n                \"id\": \"b1fd7e27-2345-4d64-9308-2037e07e53ec\",\n                \"sessionId\": \"a91223d1-5a2d-40e0-9477-6a93b182c582\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n                \"clientIdentifier\": \"HOALABB_01-03\",\n                \"fullName\": \"VTE Guidelines\",\n                \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n                \"sortOrder\": 2,\n                \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n                \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n                \"hasAudienceResponseSystem\": false,\n                \"customAttributes\": {\n                    \"test\": \"Demo Data\"\n                },\n                \"subsessionformatId\": \"62567ce2-d59e-48fa-a950-03ed4f6a01d0\",\n                \"updatedAt\": \"2025-08-21T20:19:39.950Z\",\n                \"createdAt\": \"2025-08-21T20:19:39.950Z\",\n                \"subsessiontypeId\": null\n            }\n        ]\n    },\n    \"sessionvideos\": {\n        \"collection\": [\n            {\n                \"id\": \"e56eb657-32b5-490b-ba75-f97b2483ed4c\",\n                \"sessionId\": \"a91223d1-5a2d-40e0-9477-6a93b182c582\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n                \"type\": \"mp3\",\n                \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n                \"adminUrl\": \"https://www.adminUrl.com\",\n                \"embedCode\": \"ibm_24579952\",\n                \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n                \"streamKey\": \"BVRT879000VBNMH\",\n                \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n                \"closedcaptionStreamKey\": \"STRCV109870\",\n                \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n                \"updatedAt\": \"2025-08-21T20:19:39.959Z\",\n                \"createdAt\": \"2025-08-21T20:19:39.959Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f87d4b42-6b3f-49a8-9fe3-e5b50e1e661f"},{"name":"Read a Session","id":"c7fed284-c532-403e-9207-050a080c294e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId","description":"<p>Retrieve a single session record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessiontypes</td>\n<td>rooms</td>\n</tr>\n<tr>\n<td>sessionformats</td>\n<td>speakers</td>\n<td>subsessions</td>\n</tr>\n<tr>\n<td>sessiontracks</td>\n<td>sessionlinks</td>\n<td>sessionfiles</td>\n</tr>\n<tr>\n<td>sessionvideos</td>\n<td>session-sessiontrack</td>\n<td>session-speaker</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessions","v2",":sessionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"8fe04069-71ab-40d4-a1f8-9eb6d729550e","description":{"content":"<p>Session ID.</p>\n","type":"text/plain"},"type":"any","value":"585acdf7-b83a-4a53-a105-89d103e3f1b5","key":"sessionId"}]}},"response":[{"id":"c845fc98-c513-4247-8751-6bf5ac0276cc","name":"Read a session","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2",":sessionId"],"variable":[{"key":"sessionId","value":"585acdf7-b83a-4a53-a105-89d103e3f1b5","description":"Session ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Jun 2023 18:52:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"885"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"375-yykL3zSSnUg07HONGXMYfXwkHQg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"585acdf7-b83a-4a53-a105-89d103e3f1b5\",\n    \"clientIdentifier\": \"613\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"fullName\": \"Immune Monitoring\",\n    \"description\": \"This session will cover new advances in immune monitoring.\",\n    \"startsAt\": \"2022-12-02T08:00:00.000Z\",\n    \"endsAt\": \"2022-12-02T10:00:00.000Z\",\n    \"isFeatured\": false,\n    \"captureType\": \"livestream\",\n    \"hasAudienceResponseSystem\": false,\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"keywords\": [\n        \"transplant\",\n        \"visualization\",\n        \"impact\"\n    ],\n    \"createdAt\": \"2023-02-27T04:27:02.806Z\",\n    \"updatedAt\": \"2023-02-27T04:27:02.806Z\",\n    \"eventId\": \"0d68abe7-c878-4f7c-ba0b-cbf9ef81bfa1\",\n    \"roomId\": \"23229757-8627-45bb-8d07-8679596f651b\",\n    \"sessiontypeId\": \"b07be980-5505-489d-ba82-ef9b7f94f6b6\",\n    \"sessionformatId\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\"\n}"},{"id":"d7224a77-f518-4b08-829e-9e25adba0512","name":"Read a Session with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId?include=sessiontypes,events,rooms","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2",":sessionId"],"query":[{"key":"include","value":"sessiontypes,events,rooms"}],"variable":[{"key":"sessionId","value":"9a232aa8-d8a7-4f51-8e4d-9c23a8e86521","description":"Session ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3792"},{"key":"ETag","value":"W/\"ed0-/0tFctfWFSWHeXkWHEEo5/HM95k\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:12:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\",\n    \"clientIdentifier\": \"7jp6q\",\n    \"producerRecordIdentifier\": \"zwm0r\",\n    \"fullName\": \"Consequatur ut libero dignissimos quis.\",\n    \"description\": \"Synchronised contextually-based toolset cultivate integrated infomediaries\",\n    \"startsAt\": \"2023-05-19T00:02:49.315Z\",\n    \"endsAt\": \"2023-05-21T00:02:48.920Z\",\n    \"isFeatured\": true,\n    \"captureType\": \"voluptatem\",\n    \"hasAudienceResponseSystem\": true,\n    \"customAttributes\": {\n        \"a\": 581,\n        \"b\": \"l*0nUB383b\",\n        \"bar\": 18812,\n        \"foo\": 11245,\n        \"bike\": \"&GTV1n^]pE\",\n        \"name\": \"FltDTw)ANN\",\n        \"prop\": \"-Vu!$EbNqC\"\n    },\n    \"keywords\": [\n        \"non\",\n        \"ut\",\n        \"reprehenderit\",\n        \"in\",\n        \"quidem\"\n    ],\n    \"createdAt\": \"2023-05-19T00:02:49.315Z\",\n    \"updatedAt\": \"2023-05-19T00:02:49.315Z\",\n    \"eventId\": \"985c326f-0f9a-4664-bda8-b2e8d86e5cb4\",\n    \"roomId\": \"6fe63e02-4bcc-4252-a252-b66b45a48356\",\n    \"sessiontypeId\": \"080248d4-9304-44e0-ba49-b469bd78f57d\",\n    \"sessionformatId\": \"8dc93260-21aa-4e5f-850c-d12f2e36131c\",\n    \"sessiontypes\": {\n        \"collection\": [\n            {\n                \"id\": \"080248d4-9304-44e0-ba49-b469bd78f57d\",\n                \"producerRecordIdentifier\": \"46vlk\",\n                \"fullName\": \"Functionality quisquam harum qui\",\n                \"description\": null,\n                \"createdAt\": \"2023-05-19T00:02:49.303Z\",\n                \"updatedAt\": \"2023-05-19T00:02:49.303Z\",\n                \"eventId\": \"efe5c1a7-92b7-46e4-bfa0-8ddd170a8773\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"985c326f-0f9a-4664-bda8-b2e8d86e5cb4\",\n                \"shortName\": \"Oriental Computers Conference 2023\",\n                \"fullName\": \"Handcrafted Bespoke Cotton Chicken Tools Conference 2023\",\n                \"systemName\": \"orientalcomputersconference2023-3649\",\n                \"website\": null,\n                \"description\": \"Future-proofed well-modulated portal syndicate open-source portals\",\n                \"startsAt\": \"2023-05-19T00:02:49.294Z\",\n                \"endsAt\": \"2023-05-22T00:02:48.920Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"0x0efaAC6313\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-05-19T00:02:49.294Z\",\n                \"updatedAt\": \"2023-05-19T00:02:49.295Z\",\n                \"organizationId\": \"a805517d-5238-4186-8af8-e740c1a66eeb\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"rooms\": {\n        \"collection\": [\n            {\n                \"id\": \"6fe63e02-4bcc-4252-a252-b66b45a48356\",\n                \"eventId\": \"2b35b11a-f82c-4e0d-bcff-39e55c896fe7\",\n                \"name\": \"Tamiastad Large Room\",\n                \"displayName\": \"Large Room\",\n                \"producerRecordIdentifier\": \"kgq2x\",\n                \"locationName\": \"East Tad\",\n                \"createdAt\": \"2023-05-19T00:02:49.311Z\",\n                \"updatedAt\": \"2023-05-19T00:02:49.311Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/985c326f-0f9a-4664-bda8-b2e8d86e5cb4\"\n            },\n            \"sessiontype\": {\n                \"href\": \"/sessiontypes/v2/080248d4-9304-44e0-ba49-b469bd78f57d\"\n            },\n            \"room\": {\n                \"href\": \"/rooms/v2/6fe63e02-4bcc-4252-a252-b66b45a48356\"\n            },\n            \"sessionformat\": {\n                \"href\": \"/sessionformats/v2/8dc93260-21aa-4e5f-850c-d12f2e36131c\"\n            }\n        },\n        \"children\": {\n            \"sessionlinks\": {\n                \"href\": \"/sessionlinks/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            },\n            \"sessionfiles\": {\n                \"href\": \"/sessionfiles/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            },\n            \"sessionvideos\": {\n                \"href\": \"/sessionvideos/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            },\n            \"subsessions\": {\n                \"href\": \"/subsessions/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            },\n            \"session-sessiontrack\": {\n                \"href\": \"/session-sessiontrack/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            },\n            \"session-speaker\": {\n                \"href\": \"/session-speaker/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            }\n        },\n        \"siblings\": {\n            \"sessiontracks\": {\n                \"href\": \"/sessiontracks/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            },\n            \"speakers\": {\n                \"href\": \"/speakers/v2?filter[sessionId][eq]=9a232aa8-d8a7-4f51-8e4d-9c23a8e86521\"\n            }\n        }\n    }\n}"}],"_postman_id":"c7fed284-c532-403e-9207-050a080c294e"},{"name":"Update a Session","id":"91edc1ca-6cff-4e3a-b651-f81630c62252","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"This session will cover new advances and researches in immune monitoring.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId","description":"<p>Modify a single session record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>roomId</td>\n<td>string</td>\n<td>Room ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>sessionformatId</td>\n<td>string</td>\n<td>Sessionformat ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>sessiontypeId</td>\n<td>string</td>\n<td>Sessiontype ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Client identifier associated with the session record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the session record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name of a session.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Session start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Session end time.</td>\n</tr>\n<tr>\n<td>isFeatured</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the session is featured.</td>\n</tr>\n<tr>\n<td>captureType</td>\n<td>string</td>\n<td>Capture type of a session.</td>\n</tr>\n<tr>\n<td>hasAudienceResponseSystem</td>\n<td>boolean</td>\n<td>Boolean to indicate if the session has audience response system.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Must be a valid JSON.  <br />Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>array of strings</td>\n<td>Must be a valid string array.  <br />List of session keywords.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-child-entities\">Includable Related Child Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subsessions</td>\n<td>sessionvideos</td>\n<td>sessionfiles</td>\n</tr>\n<tr>\n<td>sessionlinks</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessions","v2",":sessionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"22b52099-b23b-4de6-b0bf-ea238fc5cd6b","description":{"content":"<p>Session ID.</p>\n","type":"text/plain"},"type":"any","value":"c7d428c6-f6ca-4883-a951-31b3e921f97b","key":"sessionId"}]}},"response":[{"id":"84ceacb3-46b9-4f9c-8948-33129b9d8fc4","name":"Update a session","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"This session will cover new advances and researches in immune monitoring.\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2",":sessionId"],"variable":[{"key":"sessionId","value":"c7d428c6-f6ca-4883-a951-31b3e921f97b","description":"Session ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:10:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"638"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"27e-KzQKtrP6eOjDrYn1FbaTkeza44I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c7d428c6-f6ca-4883-a951-31b3e921f97b\",\n    \"clientIdentifier\": null,\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"Immune Research and Monitoring\",\n    \"description\": \"This session will cover new advances and researches in immune monitoring.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": true,\n    \"captureType\": null,\n    \"hasAudienceResponseSystem\": true,\n    \"customAttributes\": null,\n    \"keywords\": null,\n    \"createdAt\": \"2023-06-14T18:51:21.083Z\",\n    \"updatedAt\": \"2023-06-19T16:10:08.780Z\",\n    \"eventId\": \"d3f28f28-aeef-4a87-bed3-c0b25e8f0e7f\",\n    \"roomId\": null,\n    \"sessiontypeId\": null,\n    \"sessionformatId\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\"\n}"},{"id":"b4c4584a-01ed-4b16-83b5-f43d92082e4d","name":"Update a Session with Related Child Entities","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"This session will cover new advances and researches Computer AI.\",\n    \"subsessions\": [\n        {\n            \"id\": \"b1fd7e27-2345-4d64-9308-2037e07e53ec\",\n            \"startsAt\": \"2025-05-23T18:32:12.884Z\",\n            \"endsAt\": \"2025-06-23T18:32:12.884Z\"\n            \n        }\n    ],\n    \"sessionvideos\": [\n        {\n            \"id\": \"e56eb657-32b5-490b-ba75-f97b2483ed4c\",\n            \"type\":  \"mp4\"        \n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2",":sessionId"],"variable":[{"key":"sessionId","value":"a91223d1-5a2d-40e0-9477-6a93b182c582","description":"Session ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2241"},{"key":"ETag","value":"W/\"8c1-4gvLn5OyiuibnyRlcVW8Vi6s/OA\""},{"key":"Date","value":"Thu, 21 Aug 2025 20:24:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a91223d1-5a2d-40e0-9477-6a93b182c582\",\n    \"clientIdentifier\": \"613\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"fullName\": \"Immune Monitoring\",\n    \"description\": \"This session will cover new advances and researches Computer AI.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": true,\n    \"captureType\": \"livestream\",\n    \"hasAudienceResponseSystem\": true,\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"keywords\": [\n        \"transplant\",\n        \"visualization\",\n        \"impact\"\n    ],\n    \"createdAt\": \"2025-08-21T20:19:39.938Z\",\n    \"updatedAt\": \"2025-08-21T20:24:00.061Z\",\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"roomId\": \"c9afa611-e16b-4dff-a698-693bf84d2ef8\",\n    \"sessiontypeId\": \"ba90212a-d86d-4e88-b1d8-e98c335a53b6\",\n    \"sessionformatId\": \"497dcb00-99fc-49a5-8b2f-77b770ac509f\",\n    \"subsessions\": {\n        \"collection\": [\n            {\n                \"id\": \"b1fd7e27-2345-4d64-9308-2037e07e53ec\",\n                \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n                \"clientIdentifier\": \"HOALABB_01-03\",\n                \"fullName\": \"VTE Guidelines\",\n                \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n                \"hasAudienceResponseSystem\": false,\n                \"sortOrder\": 2,\n                \"startsAt\": \"2025-05-23T18:32:12.884Z\",\n                \"endsAt\": \"2025-06-23T18:32:12.884Z\",\n                \"customAttributes\": {\n                    \"test\": \"Demo Data\"\n                },\n                \"createdAt\": \"2025-08-21T20:19:39.950Z\",\n                \"updatedAt\": \"2025-08-21T20:24:00.071Z\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"sessionId\": \"a91223d1-5a2d-40e0-9477-6a93b182c582\",\n                \"subsessionformatId\": \"62567ce2-d59e-48fa-a950-03ed4f6a01d0\",\n                \"subsessiontypeId\": null\n            }\n        ]\n    },\n    \"sessionvideos\": {\n        \"collection\": [\n            {\n                \"id\": \"e56eb657-32b5-490b-ba75-f97b2483ed4c\",\n                \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n                \"type\": \"mp4\",\n                \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n                \"adminUrl\": \"https://www.adminUrl.com\",\n                \"embedCode\": \"ibm_24579952\",\n                \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n                \"streamKey\": \"BVRT879000VBNMH\",\n                \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n                \"closedcaptionStreamKey\": \"STRCV109870\",\n                \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n                \"createdAt\": \"2025-08-21T20:19:39.959Z\",\n                \"updatedAt\": \"2025-08-21T20:24:00.075Z\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"sessionId\": \"a91223d1-5a2d-40e0-9477-6a93b182c582\"\n            }\n        ]\n    }\n}"}],"_postman_id":"91edc1ca-6cff-4e3a-b651-f81630c62252"},{"name":"Destroy a Session","id":"abb0f428-7ba6-4bbe-8ec8-9ee9914700e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId","description":"<p>Delete an session record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessions","v2",":sessionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"fc19806c-a604-40e2-8a78-e045a680ec21","description":{"content":"<p>Session ID.</p>\n","type":"text/plain"},"type":"any","value":"c7d428c6-f6ca-4883-a951-31b3e921f97b","key":"sessionId"}]}},"response":[{"id":"4b3469ca-a929-40bf-996d-da936dd1fbe6","name":"Destroy a session","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2/:sessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2",":sessionId"],"variable":[{"key":"sessionId","value":"c7d428c6-f6ca-4883-a951-31b3e921f97b","description":"Session ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:11:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"638"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"27e-KzQKtrP6eOjDrYn1FbaTkeza44I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c7d428c6-f6ca-4883-a951-31b3e921f97b\",\n    \"clientIdentifier\": null,\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"Immune Research and Monitoring\",\n    \"description\": \"This session will cover new advances and researches in immune monitoring.\",\n    \"startsAt\": \"2022-02-07T00:00:00.000Z\",\n    \"endsAt\": \"2022-03-07T00:00:00.000Z\",\n    \"isFeatured\": true,\n    \"captureType\": null,\n    \"hasAudienceResponseSystem\": true,\n    \"customAttributes\": null,\n    \"keywords\": null,\n    \"createdAt\": \"2023-06-14T18:51:21.083Z\",\n    \"updatedAt\": \"2023-06-19T16:10:08.780Z\",\n    \"eventId\": \"d3f28f28-aeef-4a87-bed3-c0b25e8f0e7f\",\n    \"roomId\": null,\n    \"sessiontypeId\": null,\n    \"sessionformatId\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\"\n}"}],"_postman_id":"abb0f428-7ba6-4bbe-8ec8-9ee9914700e5"},{"name":"Sessions based on Speakers (Moderators)","id":"27a78f8c-0d11-4f26-aa6d-b0ccc5fb918a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2?filter[speakerId][in][]=6b6ea960-10fa-4fe1-87cc-89718f4bcb9c&filter[speakerId][in][]=f9b66222-4652-47ff-ac66-96fc81fd4972","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the sessions GET endpoint and applying the filter based on the \"speakerId\".</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessions","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[speakerId][in][]","value":"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c"},{"key":"filter[speakerId][in][]","value":"f9b66222-4652-47ff-ac66-96fc81fd4972"}],"variable":[]}},"response":[{"id":"d20f6a42-e9ce-4625-86ec-4443e727ba31","name":"Sessions based on Speakers (Moderators)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2?filter[speakerId][in][]=6b6ea960-10fa-4fe1-87cc-89718f4bcb9c&filter[speakerId][in][]=f9b66222-4652-47ff-ac66-96fc81fd4972","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2"],"query":[{"key":"filter[speakerId][in][]","value":"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c"},{"key":"filter[speakerId][in][]","value":"f9b66222-4652-47ff-ac66-96fc81fd4972"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:19:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"976"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"3d0-HLVVxPQUCR6it6slSZNqz2Yn65g\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n            \"clientIdentifier\": \"MS100\",\n            \"producerRecordIdentifier\": \"410484\",\n            \"fullName\": \"Abstract Session 9: Spine/Technology/Misc\",\n            \"description\": \"Desc_Abstract Session 9: Spine/Technology/Misc\",\n            \"startsAt\": \"2022-12-04T11:05:00.000Z\",\n            \"endsAt\": \"2022-12-04T11:39:00.000Z\",\n            \"isFeatured\": true,\n            \"captureType\": \"None\",\n            \"hasAudienceResponseSystem\": false,\n            \"customAttributes\": {\n                \"SessionCustom1\": \"gen_23456\",\n                \"SessionCustom2\": \"education_credit\"\n            },\n            \"keywords\": null,\n            \"createdAt\": \"2023-02-24T06:35:44.605Z\",\n            \"updatedAt\": \"2023-02-24T15:34:42.540Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n            \"roomId\": \"dbde8d02-782b-4a9a-bd1d-09068e6d984e\",\n            \"sessiontypeId\": \"b2ff0aeb-aaa8-4dbc-8396-81f8e4845363\",\n            \"sessionformatId\": \"0e7cd772-9083-4160-94de-3e6701547080\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"27a78f8c-0d11-4f26-aa6d-b0ccc5fb918a"},{"name":"Sessions based on Sessiontracks","id":"ff614f92-2dde-41f1-9eda-f2da27c419f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessions/v2?filter[sessiontrackId][in][]=7f207401-dcef-4c9f-9c3f-2ff380b21bfd","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the sessions GET endpoint and applying the filter based on the \"sessiontrackId\".</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessions","v2"],"host":["{{domain}}{{port}}"],"query":[{"description":{"content":"<p>Filters session records associated to \"9c41689e-8668-4c62-bc38-c644cfad82cc\" session track id</p>\n","type":"text/plain"},"key":"filter[sessiontrackId][in][]","value":"7f207401-dcef-4c9f-9c3f-2ff380b21bfd"}],"variable":[]}},"response":[{"id":"1a681ba3-8a37-40d6-b221-0ed167521ecd","name":"Sessions based on Sessiontracks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessions/v2?filter[sessiontrackId][in][]=7f207401-dcef-4c9f-9c3f-2ff380b21bfd","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessions","v2"],"query":[{"key":"filter[sessiontrackId][in][]","value":"7f207401-dcef-4c9f-9c3f-2ff380b21bfd","description":"Filters session records associated to \"9c41689e-8668-4c62-bc38-c644cfad82cc\" session track id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:27:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3116"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"c2c-W8bs/intVsdYcyY1fGkBVYy+TaQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"f95ed63a-f9ca-449a-9394-82a3939b0f44\",\n            \"clientIdentifier\": \"s2_1677239486369\",\n            \"producerRecordIdentifier\": \"410533\",\n            \"fullName\": \"Session2_1677239486369\",\n            \"description\": \"Quidem minus asperiores voluptatem temporibus possimus aut placeat aut cumque. Est esse non maxime hic veniam at in magni rerum. Cumque ut nostrum aut sint quis et.\",\n            \"startsAt\": \"2023-02-28T00:00:00.000Z\",\n            \"endsAt\": \"2023-02-28T23:59:00.000Z\",\n            \"isFeatured\": true,\n            \"captureType\": \"LiveStream\",\n            \"hasAudienceResponseSystem\": true,\n            \"customAttributes\": {\n                \"SessionCustom1\": \"Education Credit\",\n                \"SessionCustom2\": \"Generation\"\n            },\n            \"keywords\": [\n                \"Education\",\n                \"Generation\",\n                \"Credit\"\n            ],\n            \"createdAt\": \"2023-02-24T15:32:45.475Z\",\n            \"updatedAt\": \"2023-02-24T15:32:45.475Z\",\n            \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\",\n            \"roomId\": \"5c345a2c-4e9b-4d59-8df9-19c8fa240b70\",\n            \"sessiontypeId\": \"c152edbe-86a6-42eb-b42f-3bc51bd4f82a\",\n            \"sessionformatId\": \"0e7cd772-9083-4160-94de-3e6701547080\"\n        },\n        {\n            \"id\": \"3822c289-067b-4b21-a222-6b41038725ce\",\n            \"clientIdentifier\": \"s2_1677239445241\",\n            \"producerRecordIdentifier\": \"410532\",\n            \"fullName\": \"Session2_1677239445241\",\n            \"description\": \"Doloremque ratione asperiores cum qui et. Sunt aperiam hic id. Rerum perspiciatis minus autem aut est. Nisi quia praesentium et vero laborum facilis vel id illum.\",\n            \"startsAt\": \"2023-02-27T00:00:00.000Z\",\n            \"endsAt\": \"2023-02-27T23:59:00.000Z\",\n            \"isFeatured\": true,\n            \"captureType\": \"LiveStream\",\n            \"hasAudienceResponseSystem\": true,\n            \"customAttributes\": {\n                \"SessionCustom1\": \"Auto\",\n                \"SessionCustom2\": \"Credit\"\n            },\n            \"keywords\": null,\n            \"createdAt\": \"2023-02-24T15:32:45.409Z\",\n            \"updatedAt\": \"2023-02-24T15:32:45.409Z\",\n            \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\",\n            \"roomId\": \"5c345a2c-4e9b-4d59-8df9-19c8fa240b70\",\n            \"sessiontypeId\": \"e26918d0-e07e-4336-96b2-79a387cf041b\",\n            \"sessionformatId\": \"0e7cd772-9083-4160-94de-3e6701547080\"\n        },\n        {\n            \"id\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n            \"clientIdentifier\": \"MS100\",\n            \"producerRecordIdentifier\": \"410484\",\n            \"fullName\": \"Abstract Session 9: Spine/Technology/Misc\",\n            \"description\": \"Desc_Abstract Session 9: Spine/Technology/Misc\",\n            \"startsAt\": \"2022-12-04T11:05:00.000Z\",\n            \"endsAt\": \"2022-12-04T11:39:00.000Z\",\n            \"isFeatured\": true,\n            \"captureType\": \"None\",\n            \"hasAudienceResponseSystem\": false,\n            \"customAttributes\": {\n                \"SessionCustom1\": \"Language\",\n                \"SessionCustom2\": \"Education\"\n            },\n            \"keywords\": null,\n            \"createdAt\": \"2023-02-24T06:35:44.605Z\",\n            \"updatedAt\": \"2023-02-24T15:34:42.540Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n            \"roomId\": \"dbde8d02-782b-4a9a-bd1d-09068e6d984e\",\n            \"sessiontypeId\": \"b2ff0aeb-aaa8-4dbc-8396-81f8e4845363\",\n            \"sessionformatId\": \"0e7cd772-9083-4160-94de-3e6701547080\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 3,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 3\n    }\n}"}],"_postman_id":"ff614f92-2dde-41f1-9eda-f2da27c419f9"}],"id":"9195d529-059e-4e7c-a84e-fc0cdf29450c","description":"<p>Collection of CRUD operations and options to interact with Sessions.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Session ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>roomId</td>\n<td>string</td>\n<td>Room ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>sessionformatId</td>\n<td>string</td>\n<td>Sessionformat ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>sessiontypeId</td>\n<td>string</td>\n<td>Sessiontype ID to be linked to the session record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Client identifier associated with the session record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the session record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Session start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Session end time.</td>\n</tr>\n<tr>\n<td>isFeatured</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the session is featured.</td>\n</tr>\n<tr>\n<td>captureType</td>\n<td>string</td>\n<td>Capture type of a session.</td>\n</tr>\n<tr>\n<td>hasAudienceResponseSystem</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the session has audience response system.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>array of strings</td>\n<td>List of session keywords.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9195d529-059e-4e7c-a84e-fc0cdf29450c","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Session-Speaker (v2)","item":[{"name":"List Session-Speaker relationships","id":"1b5de6a7-bbd5-4db7-a5c7-ba5d85a89103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2","description":"<p>Retrieve a collection of related session and speaker records.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"ef195ac0-4c56-4bfd-a333-ae821320d75a","name":"List session-speaker relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-speaker","v2"],"query":[{"key":"filter[sessionId][eq]","value":"092e9fc5-043a-421d-8a82-0391b23a3ab4","description":"List all the session speaker relationships for a specific session Id","disabled":true},{"key":"filter[speakerId][eq]","value":"f996d394-6ffb-41ae-a9f6-797521056a59","description":"List all the session speaker relationships for a specific speaker Id","disabled":true},{"key":"page","value":"2","description":"List alll the records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:33:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22762"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"58ea-h6qpXWRafr4T0BIshBK+bm4ecHE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"f59d2802-c0bf-43ed-993a-a9b01bb43404\",\n            \"sessionId\": \"314fc52a-fbe7-4ecd-a419-551e25a44602\",\n            \"speakerId\": \"8ace98f1-7611-49f7-a28a-182ef596fdcb\",\n            \"createdAt\": \"2023-06-26T07:52:12.819Z\",\n            \"updatedAt\": \"2023-06-26T07:52:12.819Z\"\n        },\n        {\n            \"id\": \"71343797-4c18-4de9-8298-c96e5638a1c8\",\n            \"sessionId\": \"cd4ac809-477d-40aa-8057-dc57522d63aa\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:35:42.078Z\",\n            \"updatedAt\": \"2023-06-08T19:35:42.078Z\"\n        },\n        {\n            \"id\": \"4a1e023d-4e01-4369-b53a-fa8282a97735\",\n            \"sessionId\": \"9c88b752-1e46-4c34-acbf-e0371eaf7ae3\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:35:59.824Z\",\n            \"updatedAt\": \"2023-06-08T19:35:59.824Z\"\n        },\n        {\n            \"id\": \"f83cd113-b2ef-4840-aeda-c4890004fcbd\",\n            \"sessionId\": \"1ed6c407-71ff-4bfe-b79f-32b3b898f9be\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:36:07.047Z\",\n            \"updatedAt\": \"2023-06-08T19:36:07.047Z\"\n        },\n        {\n            \"id\": \"846b7bfb-3c96-4f03-952d-275574cc34dc\",\n            \"sessionId\": \"1790127a-a2fe-4ef4-ae88-0daae606fd45\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:36:38.150Z\",\n            \"updatedAt\": \"2023-06-08T19:36:38.150Z\"\n        },\n        {\n            \"id\": \"174f5c6a-7511-4a9b-ae0f-5959c5cef7c4\",\n            \"sessionId\": \"4a737332-34e9-4ed7-849e-72a68584b84b\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:08.062Z\",\n            \"updatedAt\": \"2023-06-08T19:37:08.062Z\"\n        },\n        {\n            \"id\": \"c008e976-582d-4482-8278-b15f3cc14cfc\",\n            \"sessionId\": \"47796935-5365-4507-8804-cc0f6e8760bf\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:14.632Z\",\n            \"updatedAt\": \"2023-06-08T19:37:14.632Z\"\n        },\n        {\n            \"id\": \"8dee0ca4-e7cd-4154-abcf-bfa2f04ce7c1\",\n            \"sessionId\": \"6c022c4d-df61-4b8f-9f38-e2b8a9fbb1c4\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:21.929Z\",\n            \"updatedAt\": \"2023-06-08T19:37:21.929Z\"\n        },\n        {\n            \"id\": \"ecef6056-ab73-4e7e-9e54-e279551781f3\",\n            \"sessionId\": \"8d3c7b77-a6ad-40cd-9b84-22f8b56d168c\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:45.807Z\",\n            \"updatedAt\": \"2023-06-08T19:37:45.807Z\"\n        },\n        {\n            \"id\": \"f9aa5d3f-275e-4128-8733-bde8693c8179\",\n            \"sessionId\": \"c646a477-b6d2-43e7-97bf-7db39e9293f9\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:16.906Z\",\n            \"updatedAt\": \"2023-06-08T19:38:16.906Z\"\n        },\n        {\n            \"id\": \"550a9959-9af9-4824-92a6-b6a19c7d5bc5\",\n            \"sessionId\": \"f75372e9-6ef5-4039-9819-704ab851d3cc\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:49.108Z\",\n            \"updatedAt\": \"2023-06-08T19:38:49.108Z\"\n        },\n        {\n            \"id\": \"e2ead495-8a31-432e-b2a9-ccf2658cb7f4\",\n            \"sessionId\": \"03c792c5-0011-4b52-967a-3b3be256dd88\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:39:52.596Z\",\n            \"updatedAt\": \"2023-06-08T19:39:52.596Z\"\n        },\n        {\n            \"id\": \"3295cb01-683c-4864-b37e-3a263ebe1e68\",\n            \"sessionId\": \"ee9347eb-17f5-4b0c-8bda-fb741238e03d\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:39:58.626Z\",\n            \"updatedAt\": \"2023-06-08T19:39:58.626Z\"\n        },\n        {\n            \"id\": \"ac5ab92f-e6d2-4fff-a5cf-b9b2fdb0f4c8\",\n            \"sessionId\": \"4b973871-e742-4ba6-be6d-86cf523b17e2\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:40:30.470Z\",\n            \"updatedAt\": \"2023-06-08T19:40:30.470Z\"\n        },\n        {\n            \"id\": \"17c013ca-8d8f-4d9c-8ce0-dfd06701589b\",\n            \"sessionId\": \"132f31f4-2122-42d5-9b80-870bade8aafe\",\n            \"speakerId\": \"264f3766-1ff2-4c55-99ed-a9eb619525c3\",\n            \"createdAt\": \"2023-06-08T22:14:44.993Z\",\n            \"updatedAt\": \"2023-06-08T22:14:44.993Z\"\n        },\n        {\n            \"id\": \"f5d126b7-873d-4b13-b8a4-61f0c3f635e7\",\n            \"sessionId\": \"8f7358d9-3cc5-4881-9289-fa0f27375b6a\",\n            \"speakerId\": \"ff60df1c-a5bc-4894-b2fa-3ac90dd4c25a\",\n            \"createdAt\": \"2023-06-12T20:32:09.937Z\",\n            \"updatedAt\": \"2023-06-12T20:32:09.937Z\"\n        },\n        {\n            \"id\": \"de74c369-065c-4b3c-9a4a-6055f4bd8a71\",\n            \"sessionId\": \"ee5520b0-044f-4fcb-9550-1f537d673667\",\n            \"speakerId\": \"fa4eeb4b-5f8c-4938-8c31-6ac6a5559a8d\",\n            \"createdAt\": \"2023-06-12T21:19:38.856Z\",\n            \"updatedAt\": \"2023-06-12T21:19:38.856Z\"\n        },\n        {\n            \"id\": \"da96ace4-4b53-44c8-986f-4fdc5cdc497b\",\n            \"sessionId\": \"20b8b6e3-5772-49ed-925a-c10fe1ece1e0\",\n            \"speakerId\": \"c42cf187-0e72-4d83-98ba-9f0518e0f6c4\",\n            \"createdAt\": \"2023-06-12T21:18:27.751Z\",\n            \"updatedAt\": \"2023-06-12T21:18:27.751Z\"\n        },\n        {\n            \"id\": \"b43f600d-8824-4528-a61e-a2ddcdff41b1\",\n            \"sessionId\": \"5bb20416-16b8-4cb1-a2a4-1a27d0623e3a\",\n            \"speakerId\": \"3b62202b-75fa-4bab-bee0-6fd432c77b7e\",\n            \"createdAt\": \"2023-06-23T18:07:51.557Z\",\n            \"updatedAt\": \"2023-06-23T18:07:51.557Z\"\n        },\n        {\n            \"id\": \"4ed0504c-4adc-4b51-8f7c-0bdf00bf3fb1\",\n            \"sessionId\": \"1015a8c4-320b-4570-a6ac-172807049869\",\n            \"speakerId\": \"d5f7a080-075e-4b0f-8287-e688b50cb841\",\n            \"createdAt\": \"2023-06-23T19:04:15.192Z\",\n            \"updatedAt\": \"2023-06-23T19:04:15.192Z\"\n        },\n        {\n            \"id\": \"4372de2b-119d-464d-b317-2b971c2cc800\",\n            \"sessionId\": \"dd750191-eb41-4c7a-b852-dc76f12c69f0\",\n            \"speakerId\": \"c96e8c57-3822-4c5c-97bc-7368e3c172b8\",\n            \"createdAt\": \"2023-06-26T15:21:57.527Z\",\n            \"updatedAt\": \"2023-06-26T15:21:57.527Z\"\n        },\n        {\n            \"id\": \"05802137-b8be-4077-8e5f-bc1f55ccf402\",\n            \"sessionId\": \"44149389-b40d-448e-b52a-67dd73a096ef\",\n            \"speakerId\": \"9ae99c3c-435a-47d0-b0ae-6e1b233457f0\",\n            \"createdAt\": \"2023-06-26T15:17:34.133Z\",\n            \"updatedAt\": \"2023-06-26T15:17:34.133Z\"\n        },\n        {\n            \"id\": \"d203e44c-2b95-4f73-a68f-391fac9cf865\",\n            \"sessionId\": \"0afffc4b-754d-48c3-8b64-6fa1280589d9\",\n            \"speakerId\": \"b7110933-8ba4-4370-8522-3f4e4e1e400e\",\n            \"createdAt\": \"2023-06-26T15:13:18.189Z\",\n            \"updatedAt\": \"2023-06-26T15:13:18.189Z\"\n        },\n        {\n            \"id\": \"1b1e5f58-f40d-4159-b083-33cbed075f45\",\n            \"sessionId\": \"af091ed4-739b-434f-a6c1-3f07093f2bff\",\n            \"speakerId\": \"cdead3df-265e-4d7a-8ff5-94eabe83cf96\",\n            \"createdAt\": \"2023-06-26T15:18:44.877Z\",\n            \"updatedAt\": \"2023-06-26T15:18:44.877Z\"\n        },\n        {\n            \"id\": \"dfd3da72-c4bc-42f0-a2b1-c583548f21a3\",\n            \"sessionId\": \"25eeec60-b0a0-46ec-9951-b37ab9dd5328\",\n            \"speakerId\": \"01a69a74-bc43-4bc3-b527-f337993e6630\",\n            \"createdAt\": \"2023-06-26T15:53:46.989Z\",\n            \"updatedAt\": \"2023-06-26T15:53:46.989Z\"\n        },\n        {\n            \"id\": \"39277b9f-1ea5-4a1e-87ed-0dcc89380ea0\",\n            \"sessionId\": \"9bf1819b-c33e-48d4-8078-bf83d41bcab7\",\n            \"speakerId\": \"8129fe30-75c4-4566-b051-1ea49989603c\",\n            \"createdAt\": \"2023-06-26T15:58:46.448Z\",\n            \"updatedAt\": \"2023-06-26T15:58:46.448Z\"\n        },\n        {\n            \"id\": \"f18e7125-14ef-4ecd-a5eb-756c1354db51\",\n            \"sessionId\": \"a395af0a-d0bd-482a-bdf1-439d37c9cdd0\",\n            \"speakerId\": \"6c12c30e-94e9-44ff-bed6-4dca4986056b\",\n            \"createdAt\": \"2023-06-26T18:19:53.023Z\",\n            \"updatedAt\": \"2023-06-26T18:19:53.023Z\"\n        },\n        {\n            \"id\": \"a55de7cc-cf5d-4fbf-af97-39029d35ea05\",\n            \"sessionId\": \"a4e910ac-891d-4784-9a22-7bff70c197bd\",\n            \"speakerId\": \"193d8eb4-3a5d-41bd-bf0a-865f2e5b2876\",\n            \"createdAt\": \"2023-06-26T18:24:12.639Z\",\n            \"updatedAt\": \"2023-06-26T18:24:12.639Z\"\n        },\n        {\n            \"id\": \"20710534-3ba8-4511-bd89-dc61dc9fa740\",\n            \"sessionId\": \"1595a6b5-21f2-42a3-a465-4340dcb45381\",\n            \"speakerId\": \"dc081127-e7d2-4e3f-9f7b-cfd91fa3bd75\",\n            \"createdAt\": \"2023-06-26T18:24:36.765Z\",\n            \"updatedAt\": \"2023-06-26T18:24:36.765Z\"\n        },\n        {\n            \"id\": \"e3e58b57-b574-4dc6-8e86-40391b20bd5b\",\n            \"sessionId\": \"9df8a064-2aa8-44c8-8ce6-9dc8ec11b51c\",\n            \"speakerId\": \"302519c9-d8c2-4dfa-aae9-3858b737c7d4\",\n            \"createdAt\": \"2023-06-26T18:28:19.063Z\",\n            \"updatedAt\": \"2023-06-26T18:28:19.063Z\"\n        },\n        {\n            \"id\": \"44a26e62-f6f2-4b00-b02d-9ae20ba5134e\",\n            \"sessionId\": \"882c6103-38ea-4805-83a1-1d193804d194\",\n            \"speakerId\": \"a3ddf1c6-8312-45b8-a4e7-a8594fe7e4aa\",\n            \"createdAt\": \"2023-06-26T18:29:20.745Z\",\n            \"updatedAt\": \"2023-06-26T18:29:20.745Z\"\n        },\n        {\n            \"id\": \"ca2ee6c3-cc61-4e16-b164-e0323b728546\",\n            \"sessionId\": \"ba122b4e-77dd-4007-a44c-dadbdc5fee08\",\n            \"speakerId\": \"19bf1486-0a6b-486e-be66-d4603213defd\",\n            \"createdAt\": \"2023-06-26T18:29:25.139Z\",\n            \"updatedAt\": \"2023-06-26T18:29:25.139Z\"\n        },\n        {\n            \"id\": \"da4a9dff-92aa-47a5-b133-522f08e8a127\",\n            \"sessionId\": \"02229b20-ea45-42f7-a163-1af16c6c3320\",\n            \"speakerId\": \"2000cc8b-f9b9-4eb0-aae0-95ccfbac294f\",\n            \"createdAt\": \"2023-06-26T18:34:12.259Z\",\n            \"updatedAt\": \"2023-06-26T18:34:12.259Z\"\n        },\n        {\n            \"id\": \"b1099f0f-2a4f-4f91-b4f8-eb82fdabef92\",\n            \"sessionId\": \"747991a0-43cf-40ec-a9a1-4dbe9a2fba6e\",\n            \"speakerId\": \"0e0a476c-6a1e-422e-b208-fc6c40c12c25\",\n            \"createdAt\": \"2023-06-26T18:35:02.077Z\",\n            \"updatedAt\": \"2023-06-26T18:35:02.077Z\"\n        },\n        {\n            \"id\": \"0b1c3d04-143d-48a7-8c4b-4a339f68427f\",\n            \"sessionId\": \"43d1caec-1285-4070-9787-a1ef850c4ff6\",\n            \"speakerId\": \"6f3c117e-da18-4297-af59-68a9af204695\",\n            \"createdAt\": \"2023-06-26T18:35:06.496Z\",\n            \"updatedAt\": \"2023-06-26T18:35:06.496Z\"\n        },\n        {\n            \"id\": \"4fa39019-fd36-4bcd-961e-5bf7fbc7d748\",\n            \"sessionId\": \"962dd661-501b-417e-a5ef-8afaedf16f65\",\n            \"speakerId\": \"95d00a4f-f4d7-41db-902d-ea9bb12a4b32\",\n            \"createdAt\": \"2023-06-26T18:36:21.168Z\",\n            \"updatedAt\": \"2023-06-26T18:36:21.168Z\"\n        },\n        {\n            \"id\": \"f41aa7c9-797e-4ad3-b78e-ebc67e86b74f\",\n            \"sessionId\": \"9afbff42-9a48-4a55-b4a8-b87ee2d9e52d\",\n            \"speakerId\": \"eed2022a-2738-40c3-925a-35fc4ec3e969\",\n            \"createdAt\": \"2023-06-26T22:46:40.785Z\",\n            \"updatedAt\": \"2023-06-26T22:46:40.785Z\"\n        },\n        {\n            \"id\": \"d183ce57-48e9-4fc3-ac65-3cce845c488b\",\n            \"sessionId\": \"5f962c18-0045-4577-aa88-6fc673baefdf\",\n            \"speakerId\": \"a131d079-f14c-469d-aeac-850bc94ab12b\",\n            \"createdAt\": \"2023-06-26T22:53:44.956Z\",\n            \"updatedAt\": \"2023-06-26T22:53:44.956Z\"\n        },\n        {\n            \"id\": \"8396a240-cf64-402d-9716-b7af2bab6ce3\",\n            \"sessionId\": \"8f6a13d9-4fbc-4622-9814-2a5f36c6c0c3\",\n            \"speakerId\": \"cb342fe7-e880-47c7-9261-ac7aa472c019\",\n            \"createdAt\": \"2023-06-26T22:57:58.228Z\",\n            \"updatedAt\": \"2023-06-26T22:57:58.228Z\"\n        },\n        {\n            \"id\": \"4678f608-e028-49ff-afe2-8f082fa37c15\",\n            \"sessionId\": \"c7c985ba-b361-4b73-9092-21bfe8e0fb6f\",\n            \"speakerId\": \"54ede9c9-a828-44c4-b8a6-712c9861fb7a\",\n            \"createdAt\": \"2023-06-26T22:58:07.419Z\",\n            \"updatedAt\": \"2023-06-26T22:58:07.419Z\"\n        },\n        {\n            \"id\": \"2176f386-f2b6-4c1c-b699-f7b830d327bc\",\n            \"sessionId\": \"db95ee0b-d796-4e6d-b446-fb522f65faed\",\n            \"speakerId\": \"24c8cf68-343d-443e-9965-b7820baa1af1\",\n            \"createdAt\": \"2023-06-26T23:39:42.197Z\",\n            \"updatedAt\": \"2023-06-26T23:39:42.197Z\"\n        },\n        {\n            \"id\": \"39625a9b-9503-4126-a107-bc5c10ba9ea9\",\n            \"sessionId\": \"092b2008-4c0e-4271-b34a-f9f08688a66d\",\n            \"speakerId\": \"4e71dd06-124a-49d8-8cc7-2eb238fc5f3c\",\n            \"createdAt\": \"2023-06-27T22:17:18.972Z\",\n            \"updatedAt\": \"2023-06-27T22:17:18.972Z\"\n        },\n        {\n            \"id\": \"097139b4-0cd1-4852-bf49-4e6b6a9931cc\",\n            \"sessionId\": \"a6a0ec2f-b78d-4d54-af81-3c0386bd1ffe\",\n            \"speakerId\": \"c9b10bcf-c267-4af5-af34-a4c9b509e177\",\n            \"createdAt\": \"2023-06-27T22:18:09.982Z\",\n            \"updatedAt\": \"2023-06-27T22:18:09.982Z\"\n        },\n        {\n            \"id\": \"c03259bb-82e6-4e9f-ab1f-3cc4f1ff4da5\",\n            \"sessionId\": \"b48b37a1-ad68-4a45-87b3-fcabc799a174\",\n            \"speakerId\": \"61283b46-0685-4403-9bca-29e3f780f25f\",\n            \"createdAt\": \"2023-06-27T22:22:18.548Z\",\n            \"updatedAt\": \"2023-06-27T22:22:18.548Z\"\n        },\n        {\n            \"id\": \"e1da27db-8627-4387-b14d-a20d1ee7e4b5\",\n            \"sessionId\": \"4f474f40-c66e-4edc-98e9-74dab0568038\",\n            \"speakerId\": \"83ae2ab7-6567-462e-a2d7-debe59b1765e\",\n            \"createdAt\": \"2023-06-07T16:17:29.327Z\",\n            \"updatedAt\": \"2023-06-07T16:17:29.327Z\"\n        },\n        {\n            \"id\": \"ddce5ee5-c548-4cad-a37f-5e18a2b5df41\",\n            \"sessionId\": \"d39f734e-8a8a-4d16-a5d9-7716e9c53f68\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:35:53.047Z\",\n            \"updatedAt\": \"2023-06-08T19:35:53.047Z\"\n        },\n        {\n            \"id\": \"050e808c-0522-4355-bbe8-810c5136dd28\",\n            \"sessionId\": \"fa8eb26b-4895-4373-a53d-dabc1ec5cf64\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:36:22.575Z\",\n            \"updatedAt\": \"2023-06-08T19:36:22.575Z\"\n        },\n        {\n            \"id\": \"afe3b438-7a34-4aa8-a629-aa34b90f0761\",\n            \"sessionId\": \"9b10d71b-19d4-4290-8160-fcc535585861\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:29.372Z\",\n            \"updatedAt\": \"2023-06-08T19:37:29.372Z\"\n        },\n        {\n            \"id\": \"bcf267c9-d8ae-4d07-ad91-a2c72a11727a\",\n            \"sessionId\": \"508a49fb-772a-416a-a0d7-25f6cb6ba1e3\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:39.218Z\",\n            \"updatedAt\": \"2023-06-08T19:37:39.218Z\"\n        },\n        {\n            \"id\": \"c3f20ce0-66c5-445a-9a98-73c4cccf235e\",\n            \"sessionId\": \"1e949400-3750-47fc-9370-c402eb9eeb58\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:51.548Z\",\n            \"updatedAt\": \"2023-06-08T19:37:51.548Z\"\n        },\n        {\n            \"id\": \"a02deaf6-564b-44cc-b0a1-3db15551109c\",\n            \"sessionId\": \"b3d851bf-1130-4632-827f-1c53bdc3901a\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:37:58.082Z\",\n            \"updatedAt\": \"2023-06-08T19:37:58.082Z\"\n        },\n        {\n            \"id\": \"23ee9bef-8ccc-46ed-be90-4bd07bba5104\",\n            \"sessionId\": \"89f897ba-8394-4949-a13d-d07a785357f8\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:04.954Z\",\n            \"updatedAt\": \"2023-06-08T19:38:04.954Z\"\n        },\n        {\n            \"id\": \"911e4374-1e76-4e4f-8676-a579f9fdf39f\",\n            \"sessionId\": \"2996ab9f-f7f0-49f4-a1ef-8a26ef09da38\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:11.755Z\",\n            \"updatedAt\": \"2023-06-08T19:38:11.755Z\"\n        },\n        {\n            \"id\": \"3fc55a91-e8fe-48a8-aed2-70998c4324fb\",\n            \"sessionId\": \"ef216753-5774-4eaa-9b5e-6cfd9e283fbf\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:22.973Z\",\n            \"updatedAt\": \"2023-06-08T19:38:22.973Z\"\n        },\n        {\n            \"id\": \"39cd14e8-6140-4f9d-8e3b-40ce5faf61a7\",\n            \"sessionId\": \"0bcdc19f-c0ae-4b13-9aca-6a25dcf11c29\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:29.859Z\",\n            \"updatedAt\": \"2023-06-08T19:38:29.859Z\"\n        },\n        {\n            \"id\": \"6008e7fa-14d0-4ccd-9780-bbe072babe8c\",\n            \"sessionId\": \"dee49ffa-56ee-40a2-9b0e-559ef305638a\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:35.946Z\",\n            \"updatedAt\": \"2023-06-08T19:38:35.946Z\"\n        },\n        {\n            \"id\": \"1b468f79-c91d-421e-9e40-cdc076f17483\",\n            \"sessionId\": \"fca95583-8b1d-42da-a370-926043722a93\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:38:42.059Z\",\n            \"updatedAt\": \"2023-06-08T19:38:42.059Z\"\n        },\n        {\n            \"id\": \"113a2a8c-e8de-4861-94b1-fbb629c5ac1f\",\n            \"sessionId\": \"a02fb887-2bb0-431d-aa94-ced2711369c8\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:39:02.483Z\",\n            \"updatedAt\": \"2023-06-08T19:39:02.483Z\"\n        },\n        {\n            \"id\": \"85b0ec97-797a-49e7-804d-9c5df72f7b15\",\n            \"sessionId\": \"2b64b1f0-aa35-4fad-b68e-ad634c5b908f\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:39:18.428Z\",\n            \"updatedAt\": \"2023-06-08T19:39:18.428Z\"\n        },\n        {\n            \"id\": \"f4c7d245-854f-4449-937e-ac4be1777611\",\n            \"sessionId\": \"047de712-9168-4350-97c1-11d9dee6bf59\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:39:25.703Z\",\n            \"updatedAt\": \"2023-06-08T19:39:25.703Z\"\n        },\n        {\n            \"id\": \"ea40aa1d-87d4-48a3-9cad-9b3a29847576\",\n            \"sessionId\": \"725778d8-dd28-45eb-a36e-1bba35aca0ea\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:39:31.061Z\",\n            \"updatedAt\": \"2023-06-08T19:39:31.061Z\"\n        },\n        {\n            \"id\": \"d916836a-4963-4e7b-a39e-672972a9888c\",\n            \"sessionId\": \"beede7e4-4c65-4a06-b75a-a3860c56f08f\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:39:39.511Z\",\n            \"updatedAt\": \"2023-06-08T19:39:39.511Z\"\n        },\n        {\n            \"id\": \"94c413bc-d214-4f80-9ef8-49a1ae699b5f\",\n            \"sessionId\": \"f037ee36-c3aa-4f53-ab9f-2b7e2fcd6bbb\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:40:12.732Z\",\n            \"updatedAt\": \"2023-06-08T19:40:12.732Z\"\n        },\n        {\n            \"id\": \"6288d990-013b-4566-a694-d635fea28358\",\n            \"sessionId\": \"0714f5c6-739e-4237-ac46-4df758e53cb7\",\n            \"speakerId\": \"ae1d21a6-fc91-426e-b305-02182f603888\",\n            \"createdAt\": \"2023-06-08T19:40:17.063Z\",\n            \"updatedAt\": \"2023-06-08T19:40:17.063Z\"\n        },\n        {\n            \"id\": \"48fb0bc1-1948-4472-b863-70c117dc589d\",\n            \"sessionId\": \"da8da044-e3ae-4b54-90cb-5f9a5aa32f8f\",\n            \"speakerId\": \"cce9e1e4-4445-4da4-b2d9-34cc013608c9\",\n            \"createdAt\": \"2023-06-08T22:15:18.771Z\",\n            \"updatedAt\": \"2023-06-08T22:15:18.771Z\"\n        },\n        {\n            \"id\": \"29dcf37c-fcbc-4c80-9b7e-557fe4894794\",\n            \"sessionId\": \"b8ad452f-1302-40c9-8b32-7d5c29c3713d\",\n            \"speakerId\": \"94a2cda4-4208-4f96-baa1-f50514a8d471\",\n            \"createdAt\": \"2023-06-23T19:54:57.777Z\",\n            \"updatedAt\": \"2023-06-23T19:54:57.777Z\"\n        },\n        {\n            \"id\": \"8c18c5e9-3d58-457c-ac40-ba6ad90c617d\",\n            \"sessionId\": \"629cf9f0-5d7c-46a7-ac4d-8ac3780026d4\",\n            \"speakerId\": \"602593da-8dd1-48cf-a37f-53e191937222\",\n            \"createdAt\": \"2023-06-12T20:32:13.185Z\",\n            \"updatedAt\": \"2023-06-12T20:32:13.185Z\"\n        },\n        {\n            \"id\": \"bd2b0cfb-b736-4866-b2d7-fde74dccacbc\",\n            \"sessionId\": \"4a9e1dec-6274-446f-9bc8-9ed24cf23155\",\n            \"speakerId\": \"c9cc5151-7924-4cdd-87b4-d78210a5dd79\",\n            \"createdAt\": \"2023-06-23T19:48:38.534Z\",\n            \"updatedAt\": \"2023-06-23T19:48:38.534Z\"\n        },\n        {\n            \"id\": \"0cd25571-c732-4b03-aae8-3f565cf464dc\",\n            \"sessionId\": \"9ef6f2f5-da49-4cc7-ac1d-98bc214795ea\",\n            \"speakerId\": \"695b9f35-fe50-48e5-92a2-21ff48854ee0\",\n            \"createdAt\": \"2023-06-23T18:57:01.032Z\",\n            \"updatedAt\": \"2023-06-23T18:57:01.032Z\"\n        },\n        {\n            \"id\": \"1a5988f0-1554-4905-b7e2-c7b639257145\",\n            \"sessionId\": \"773dfcba-89cd-44c8-ab7f-52cf55ba8b79\",\n            \"speakerId\": \"d60450e9-990c-47a5-9b98-d4c7e9586e38\",\n            \"createdAt\": \"2023-06-12T21:18:36.022Z\",\n            \"updatedAt\": \"2023-06-12T21:18:36.022Z\"\n        },\n        {\n            \"id\": \"a8d8e9fb-21d9-4c11-8b52-c6e97f9dde81\",\n            \"sessionId\": \"c37ad17d-1ddd-4f98-8cdf-ccc00dddc3e4\",\n            \"speakerId\": \"fa90943d-0adc-40a6-98e4-cf97977361bd\",\n            \"createdAt\": \"2023-06-23T19:18:01.490Z\",\n            \"updatedAt\": \"2023-06-23T19:18:01.490Z\"\n        },\n        {\n            \"id\": \"5a799959-915c-4c4c-98ef-52d822e879a0\",\n            \"sessionId\": \"e26311de-4200-46d7-933f-537a2bf7274c\",\n            \"speakerId\": \"41b48be3-b31f-41a8-91cb-0b3c6a3aba5b\",\n            \"createdAt\": \"2023-06-12T21:22:09.062Z\",\n            \"updatedAt\": \"2023-06-12T21:22:09.062Z\"\n        },\n        {\n            \"id\": \"e2e23137-e6a9-4360-b9d3-92269ee95d0f\",\n            \"sessionId\": \"06a5c0a2-afce-4968-ab77-f40b96b17a5b\",\n            \"speakerId\": \"46df484d-a15b-4aed-b844-bcb6f493910a\",\n            \"createdAt\": \"2023-06-23T19:06:09.177Z\",\n            \"updatedAt\": \"2023-06-23T19:06:09.177Z\"\n        },\n        {\n            \"id\": \"8361a663-a5e7-4228-bed7-fc5fd97ad514\",\n            \"sessionId\": \"28af945b-00a8-47b2-ac93-8bcc1f57b979\",\n            \"speakerId\": \"d7db0288-a9f1-4c37-9e7e-1dcc44086e17\",\n            \"createdAt\": \"2023-06-26T15:21:59.683Z\",\n            \"updatedAt\": \"2023-06-26T15:21:59.683Z\"\n        },\n        {\n            \"id\": \"787b987e-76bb-4f48-922f-a602813ba682\",\n            \"sessionId\": \"36efba0f-e3b2-421e-b3b5-c38a3c2b6b6f\",\n            \"speakerId\": \"c781faaa-bd1f-4146-8380-91424f9c2d0b\",\n            \"createdAt\": \"2023-06-23T19:19:14.602Z\",\n            \"updatedAt\": \"2023-06-23T19:19:14.602Z\"\n        },\n        {\n            \"id\": \"a7187920-4d22-42a0-a37a-76ec3bac228d\",\n            \"sessionId\": \"8d5d3fdf-1c61-446c-b2ea-04102aebd09b\",\n            \"speakerId\": \"d32d1bba-1cb5-4be3-b0ec-9394e4d660e5\",\n            \"createdAt\": \"2023-06-23T19:17:10.895Z\",\n            \"updatedAt\": \"2023-06-23T19:17:10.895Z\"\n        },\n        {\n            \"id\": \"a6900f88-8911-41f3-8635-c9c8bf241b8f\",\n            \"sessionId\": \"7cbbe1ab-e014-4e03-b33d-83283cd01c26\",\n            \"speakerId\": \"76b68f25-415d-4ee0-b7f1-64a842d4b3c1\",\n            \"createdAt\": \"2023-06-23T19:20:24.028Z\",\n            \"updatedAt\": \"2023-06-23T19:20:24.028Z\"\n        },\n        {\n            \"id\": \"bd2f547c-81cc-42bc-82cb-490fe44c8dcf\",\n            \"sessionId\": \"6783d01b-6657-4466-8f8a-c7d360d22021\",\n            \"speakerId\": \"353656d7-aede-4046-a7d6-5459e2bdf6ea\",\n            \"createdAt\": \"2023-06-23T19:39:26.513Z\",\n            \"updatedAt\": \"2023-06-23T19:39:26.513Z\"\n        },\n        {\n            \"id\": \"ec6e30a3-dbf5-4040-a094-0463ffa9dc37\",\n            \"sessionId\": \"e921120c-a5a9-4008-a216-1440b6260311\",\n            \"speakerId\": \"05d0756f-e8ac-4419-9296-eb54ba79525e\",\n            \"createdAt\": \"2023-06-23T19:47:58.947Z\",\n            \"updatedAt\": \"2023-06-23T19:47:58.947Z\"\n        },\n        {\n            \"id\": \"eb51abf0-2e7d-4d5b-b75c-42a3fa518d3e\",\n            \"sessionId\": \"fa0f1d34-3b71-40c6-b363-1555041b440a\",\n            \"speakerId\": \"2a29676e-02a5-4aaf-a12c-668b412ca899\",\n            \"createdAt\": \"2023-06-26T15:53:55.003Z\",\n            \"updatedAt\": \"2023-06-26T15:53:55.003Z\"\n        },\n        {\n            \"id\": \"8e055052-f99f-45ee-a81f-d356d89106f8\",\n            \"sessionId\": \"a012ea85-4d3b-4683-bb52-104183f35753\",\n            \"speakerId\": \"7ed50abe-3fea-4365-85df-f06b0e522dcc\",\n            \"createdAt\": \"2023-06-26T16:58:39.633Z\",\n            \"updatedAt\": \"2023-06-26T16:58:39.633Z\"\n        },\n        {\n            \"id\": \"ae51bc01-125b-4203-b70f-8e39a7863e6b\",\n            \"sessionId\": \"fb9d0dbe-1f08-4099-abdf-7d7e40d1bef8\",\n            \"speakerId\": \"d8a5c6d6-90ff-4b61-8e3a-df62f69e4238\",\n            \"createdAt\": \"2023-06-26T15:21:56.530Z\",\n            \"updatedAt\": \"2023-06-26T15:21:56.530Z\"\n        },\n        {\n            \"id\": \"00fc95ff-e848-405f-9d66-facd0a140d7f\",\n            \"sessionId\": \"d4d97da2-9dfb-44ac-8ed7-11dfde2e000e\",\n            \"speakerId\": \"44db3bb8-0695-4250-9eab-d701ae56bf86\",\n            \"createdAt\": \"2023-06-26T15:50:15.863Z\",\n            \"updatedAt\": \"2023-06-26T15:50:15.863Z\"\n        },\n        {\n            \"id\": \"444f4628-2c12-47e0-8657-ba331d3db8d4\",\n            \"sessionId\": \"79b9fbc9-9085-46bf-a3d9-c2244cc5a7a4\",\n            \"speakerId\": \"75e29afd-c4c9-4f7a-9796-4cdd329bbde1\",\n            \"createdAt\": \"2023-06-26T18:21:01.962Z\",\n            \"updatedAt\": \"2023-06-26T18:21:01.962Z\"\n        },\n        {\n            \"id\": \"7cac2dfe-3a76-4d45-87b3-067ac9bbb9d5\",\n            \"sessionId\": \"6155793d-8381-408f-86e7-7f87ec3c467a\",\n            \"speakerId\": \"bb80d356-13d8-409b-9eac-be4fcfe1385b\",\n            \"createdAt\": \"2023-06-26T18:22:04.003Z\",\n            \"updatedAt\": \"2023-06-26T18:22:04.003Z\"\n        },\n        {\n            \"id\": \"c7152f4b-1dde-40dc-8ad1-7c09d6f50c78\",\n            \"sessionId\": \"25f59ed9-f79c-4477-99e5-426daa33ffae\",\n            \"speakerId\": \"b8055340-68a7-4de4-85dd-93c89ab4b6b5\",\n            \"createdAt\": \"2023-06-26T18:24:20.713Z\",\n            \"updatedAt\": \"2023-06-26T18:24:20.713Z\"\n        },\n        {\n            \"id\": \"7277bbe2-78ad-4980-b5b9-83aae98875c2\",\n            \"sessionId\": \"65393f13-039d-4ba4-a17c-664128443f3f\",\n            \"speakerId\": \"5e7dc79f-d2f0-4322-adf6-48398d3e1a26\",\n            \"createdAt\": \"2023-06-26T18:25:13.185Z\",\n            \"updatedAt\": \"2023-06-26T18:25:13.185Z\"\n        },\n        {\n            \"id\": \"e3010def-5a8a-4d89-b9c8-c2382f18b139\",\n            \"sessionId\": \"dffe913b-4423-4288-a4b1-1dfe35d4f1a6\",\n            \"speakerId\": \"4968c9e1-b747-48b3-914b-f987e4176f22\",\n            \"createdAt\": \"2023-06-26T18:28:37.196Z\",\n            \"updatedAt\": \"2023-06-26T18:28:37.196Z\"\n        },\n        {\n            \"id\": \"8977b295-cdae-46b7-b0b6-5e11dad9488b\",\n            \"sessionId\": \"a405b8dc-af26-461b-8ea7-a03ecfa7fecf\",\n            \"speakerId\": \"174c0659-be62-4902-a919-a2fcd1058c76\",\n            \"createdAt\": \"2023-06-26T18:28:59.289Z\",\n            \"updatedAt\": \"2023-06-26T18:28:59.289Z\"\n        },\n        {\n            \"id\": \"4be12c3a-5044-486c-b4be-7292ff859de3\",\n            \"sessionId\": \"5923f6c3-100c-43fc-9f9c-284a76838087\",\n            \"speakerId\": \"b20ebeed-cba7-4125-b650-ebf20997f1bf\",\n            \"createdAt\": \"2023-06-26T18:34:40.196Z\",\n            \"updatedAt\": \"2023-06-26T18:34:40.196Z\"\n        },\n        {\n            \"id\": \"afef6812-123d-464e-96cc-58f582594b03\",\n            \"sessionId\": \"a979311b-1dfd-4b09-84b8-3363dfb6464e\",\n            \"speakerId\": \"2d369651-5a56-4b44-9565-5cb326006033\",\n            \"createdAt\": \"2023-06-26T18:35:16.503Z\",\n            \"updatedAt\": \"2023-06-26T18:35:16.503Z\"\n        },\n        {\n            \"id\": \"33600ce2-8133-4bfe-9d7e-8ce071adc077\",\n            \"sessionId\": \"f3e59622-77ae-4e84-adcd-ca4c4ac8229e\",\n            \"speakerId\": \"fcb63301-bbb3-4113-8dcb-47213443fdf6\",\n            \"createdAt\": \"2023-06-26T22:42:15.703Z\",\n            \"updatedAt\": \"2023-06-26T22:42:15.703Z\"\n        },\n        {\n            \"id\": \"830b1aef-edb8-4a99-90ac-7d2a055a330f\",\n            \"sessionId\": \"56ca3d6c-ff08-45c4-a6ad-5879aaf6ef60\",\n            \"speakerId\": \"dd700cd3-a19a-4cf0-8ab0-c4c36456bd53\",\n            \"createdAt\": \"2023-06-26T22:48:03.874Z\",\n            \"updatedAt\": \"2023-06-26T22:48:03.874Z\"\n        },\n        {\n            \"id\": \"8650ef00-7b1b-4a56-9375-b076c2ce75a0\",\n            \"sessionId\": \"34ccd2dd-0552-441c-aa24-f192822b7176\",\n            \"speakerId\": \"20b384cd-95c7-448e-b2e6-ca0fca0e78c7\",\n            \"createdAt\": \"2023-06-26T22:49:39.949Z\",\n            \"updatedAt\": \"2023-06-26T22:49:39.949Z\"\n        },\n        {\n            \"id\": \"7a1fb7ca-12e1-463b-9c25-98e0b364932a\",\n            \"sessionId\": \"bb470c49-f0e3-4cdb-844c-34abf539ae87\",\n            \"speakerId\": \"dd6993db-b813-4c6a-aab1-955c109be8b3\",\n            \"createdAt\": \"2023-06-26T22:51:20.400Z\",\n            \"updatedAt\": \"2023-06-26T22:51:20.400Z\"\n        },\n        {\n            \"id\": \"a8e19876-09ea-4a71-ad01-4b2841540818\",\n            \"sessionId\": \"23790dac-ee07-4c39-aad9-261ed500a0ec\",\n            \"speakerId\": \"2430bffe-a1d9-471c-8bac-2369e881731a\",\n            \"createdAt\": \"2023-06-26T22:53:52.681Z\",\n            \"updatedAt\": \"2023-06-26T22:53:52.681Z\"\n        },\n        {\n            \"id\": \"e963ecdc-e44a-4734-a813-ae821c061e08\",\n            \"sessionId\": \"a157bc97-d965-49ef-aa66-7e5a7ea15b28\",\n            \"speakerId\": \"051af24a-c1d2-496e-9b57-df90974cd154\",\n            \"createdAt\": \"2023-06-26T22:54:08.828Z\",\n            \"updatedAt\": \"2023-06-26T22:54:08.828Z\"\n        },\n        {\n            \"id\": \"8e120f41-c8f5-4012-8c1b-2a19429340af\",\n            \"sessionId\": \"36b7e3de-3c02-4bf1-ba5e-d5ffa5f60ffd\",\n            \"speakerId\": \"34c138e6-7663-4d11-8ac1-b46b9bf9935a\",\n            \"createdAt\": \"2023-06-26T22:58:54.821Z\",\n            \"updatedAt\": \"2023-06-26T22:58:54.821Z\"\n        },\n        {\n            \"id\": \"e3d02ec9-3486-48d3-9fbd-cc71c224f298\",\n            \"sessionId\": \"bc7fead9-f746-4c63-98ce-1e71f75c11af\",\n            \"speakerId\": \"d692c7a2-7539-482d-95b5-ef78126c81c6\",\n            \"createdAt\": \"2023-06-27T00:24:02.683Z\",\n            \"updatedAt\": \"2023-06-27T00:24:02.683Z\"\n        },\n        {\n            \"id\": \"93b65bf4-96f4-468c-bff5-87fff981bda9\",\n            \"sessionId\": \"aa19aed7-c2e6-4713-9962-fa115795776e\",\n            \"speakerId\": \"46d3407f-54b5-4e16-b8b6-f07c99d7d7f6\",\n            \"createdAt\": \"2023-06-26T23:44:14.577Z\",\n            \"updatedAt\": \"2023-06-26T23:44:14.577Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 8,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 761\n    }\n}"}],"_postman_id":"1b5de6a7-bbd5-4db7-a5c7-ba5d85a89103"},{"name":"Create a Session-Speaker relationship","id":"862b6c7f-a097-4829-a856-2cdc73797ee4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"sessionId\":\"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\r\n\"speakerId\":\"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2","description":"<p>Create a session and speaker relationship.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessionId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Session.</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Speaker.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>sessionId</code> and <code>speakerId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"31e7d0fb-1247-4cef-87c9-909af58b0277","name":"Create a session-speaker relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"sessionId\":\"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\r\n\"speakerId\":\"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:34:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"225"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e1-o7+MQNSWD8rB1R21J/htDjDDlZU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"05e76073-8c22-4c3c-9178-073a8808e7b9\",\n    \"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"updatedAt\": \"2023-06-28T19:34:38.877Z\",\n    \"createdAt\": \"2023-06-28T19:34:38.877Z\"\n}"}],"_postman_id":"862b6c7f-a097-4829-a856-2cdc73797ee4"},{"name":"Read a Session-Speaker relationship","id":"75e773b4-b3c0-4ce7-8496-2b14dcc35022","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2/:id","description":"<p>Retrieve single record for a related session and speaker</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessions</td>\n<td>speakers</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"21db338e-0510-42a7-8d00-2977f50aaa24","type":"any","value":"05e76073-8c22-4c3c-9178-073a8808e7b9","key":"id"}]}},"response":[{"id":"e9f7bad3-375e-4539-ac2d-faf428e74ae2","name":"Read a session-speaker relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-speaker","v2",":id"],"variable":[{"key":"id","value":"05e76073-8c22-4c3c-9178-073a8808e7b9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:35:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"225"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e1-Z9rPoqzxZV6xoYQl8mk8rqplrFk\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"05e76073-8c22-4c3c-9178-073a8808e7b9\",\n    \"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"createdAt\": \"2023-06-28T19:34:38.877Z\",\n    \"updatedAt\": \"2023-06-28T19:34:38.877Z\"\n}"},{"id":"dc7cb715-cfb0-4258-98b4-7664c41c43cb","name":"Read a Session-Speaker relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2/:id?include=sessions,speakers","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-speaker","v2",":id"],"query":[{"key":"include","value":"sessions,speakers"}],"variable":[{"key":"id","value":"2b257944-442a-4dc0-82cd-c39d41d4a603"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2702"},{"key":"ETag","value":"W/\"a8e-i16Kh5SJyFU7azi26MCquh2rNsw\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:13:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2b257944-442a-4dc0-82cd-c39d41d4a603\",\n    \"sessionId\": \"28ab75ae-3ed4-4ad4-bd40-347d1efa1b66\",\n    \"speakerId\": \"5ab3e8ea-2945-4f72-aacd-34d7f0c14b67\",\n    \"createdAt\": \"2023-05-19T00:02:52.523Z\",\n    \"updatedAt\": \"2023-05-19T00:02:52.523Z\",\n    \"sessions\": {\n        \"collection\": [\n            {\n                \"id\": \"28ab75ae-3ed4-4ad4-bd40-347d1efa1b66\",\n                \"clientIdentifier\": \"p4ek1\",\n                \"producerRecordIdentifier\": \"xi57l\",\n                \"fullName\": \"Aut quae vel occaecati unde.\",\n                \"description\": \"Up-sized mission-critical conglomeration enhance integrated e-business\",\n                \"startsAt\": \"2023-05-19T00:02:52.509Z\",\n                \"endsAt\": \"2023-05-22T00:02:52.479Z\",\n                \"isFeatured\": true,\n                \"captureType\": \"voluptatem\",\n                \"hasAudienceResponseSystem\": false,\n                \"customAttributes\": \"{\\\"foo\\\":\\\"nZ\\\\\\\"|$hK:Gt\\\",\\\"bar\\\":\\\"iQkCL/::$p\\\",\\\"bike\\\":91624,\\\"a\\\":53125,\\\"b\\\":\\\"Wu<S0=S}Pr\\\",\\\"name\\\":1778,\\\"prop\\\":49414}\",\n                \"keywords\": [\n                    \"aut\",\n                    \"minus\",\n                    \"exercitationem\",\n                    \"rerum\",\n                    \"animi\"\n                ],\n                \"createdAt\": \"2023-05-19T00:02:52.509Z\",\n                \"updatedAt\": \"2023-05-19T00:02:52.509Z\",\n                \"eventId\": \"97253b56-1410-4b8d-832f-5f48ea357c50\",\n                \"roomId\": \"4072f879-c4fc-4a02-a4f1-bd08115b1cbb\",\n                \"sessiontypeId\": \"76cab365-c120-41da-8f9a-17358eaf095a\",\n                \"sessionformatId\": \"9536ebb8-5037-4037-80a2-a62617ba3e3a\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"5ab3e8ea-2945-4f72-aacd-34d7f0c14b67\",\n                \"producerRecordIdentifier\": \"2xv6a\",\n                \"prefix\": \"Mrs.\",\n                \"preferredName\": \"Branson\",\n                \"firstName\": \"Kiel\",\n                \"middleName\": \"Harper\",\n                \"lastName\": \"Reilly\",\n                \"suffix\": \"Sr.\",\n                \"degree\": \"Central Security Architect\",\n                \"title\": \"Human Web Consultant\",\n                \"organization\": \"Officer\",\n                \"city\": \"West Ivah\",\n                \"state\": \"Connecticut\",\n                \"country\": \"Belize\",\n                \"email\": \"Denis_Gusikowski@yahoo.com\",\n                \"emailTwo\": \"Zack49@hotmail.com\",\n                \"phoneNumber\": \"482.667.2630 x0564\",\n                \"mobileNumber\": \"812.452.4335\",\n                \"faxNumber\": \"1-487-233-3884\",\n                \"otherPhoneNumber\": \"731.650.4657 x128\",\n                \"isVip\": false,\n                \"website\": \"https://upset-job.biz\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1005.jpg\",\n                \"biographyText\": \"Corporate\",\n                \"customAttributes\": \"{\\\"foo\\\":92790,\\\"bar\\\":7840,\\\"bike\\\":84827,\\\"a\\\":\\\"g<EFyD*K,N\\\",\\\"b\\\":\\\"Sy%4uC`bX^\\\",\\\"name\\\":11043,\\\"prop\\\":\\\"n0AJ?0Ng*P\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:52.519Z\",\n                \"updatedAt\": \"2023-05-19T00:02:52.520Z\",\n                \"eventId\": \"a328ec31-8230-45fa-a374-ec1811bde668\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"session\": {\n                \"href\": \"/sessions/v2/28ab75ae-3ed4-4ad4-bd40-347d1efa1b66\"\n            },\n            \"speaker\": {\n                \"href\": \"/speakers/v2/5ab3e8ea-2945-4f72-aacd-34d7f0c14b67\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"75e773b4-b3c0-4ce7-8496-2b14dcc35022"},{"name":"Destroy a Session-Speaker relationship","id":"bd61bd46-03da-4720-b53d-4ed61a029a8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2/:id","description":"<p>Delete a record so that session and speaker records are no longer associated</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"66ebbd88-cf96-47b9-b04f-751f5a7a3ccd","type":"any","value":"05e76073-8c22-4c3c-9178-073a8808e7b9","key":"id"}]}},"response":[{"id":"f547c0d9-c6f3-4715-87ba-4f26efaf30a4","name":"Destroy a session-speaker relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-speaker","v2",":id"],"variable":[{"key":"id","value":"05e76073-8c22-4c3c-9178-073a8808e7b9"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:35:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"225"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e1-Z9rPoqzxZV6xoYQl8mk8rqplrFk\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"05e76073-8c22-4c3c-9178-073a8808e7b9\",\n    \"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"createdAt\": \"2023-06-28T19:34:38.877Z\",\n    \"updatedAt\": \"2023-06-28T19:34:38.877Z\"\n}"}],"_postman_id":"bd61bd46-03da-4720-b53d-4ed61a029a8b"}],"id":"81a0f7c4-aa3d-49b0-a8bc-205b0186a9da","description":"<p>Collection of CRUD operations and options to create, read and delete session-speaker relationship</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID (uuid).</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>string</td>\n<td>Speaker ID (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Session ID (uuid).</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"81a0f7c4-aa3d-49b0-a8bc-205b0186a9da","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Sessiontypes (v2)","item":[{"name":"List Sessiontypes","id":"61042070-9507-41e2-8bef-c3964559224e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2","description":"<p>Retrieve a collection of sessiontypes along with meta information.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"81bfcc02-2c52-4189-a4bf-0eb2dd3e1d18","name":"List sessiontypes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontypes","v2"],"query":[{"key":"filter[fullName][startsWith]","value":"Satellite","description":"fullName startsWith \"Satellite\".","disabled":true},{"key":"filter[producerRecordIdentifier][substring]","value":"qnzqo","description":"producerRecordIdentifier with a substring of \"qnzqo\".","disabled":true},{"key":"filter[description][ne]","value":"null","description":"description not equal to null.","disabled":true},{"key":"filter[eventId][eq]","value":"7cc82e26-38a9-4a85-b172-56c4767afa2e","description":"list sessiontypes for eventId \"7cc82e26-38a9-4a85-b172-56c4767afa2e\".","disabled":true},{"key":"page","value":"2","description":"page number to retrieve the records.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:23:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"26693"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"6845-7J+WLPxhORKBKyBqFIoAS4by0Yc\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"649232a1-096f-4a8b-b8f9-0ffebc97aaa6\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa175\",\n            \"fullName\": \"Satellite Symposia\",\n            \"description\": Satellite Symposia,\n            \"createdAt\": \"2023-01-31T19:17:45.716Z\",\n            \"updatedAt\": \"2023-01-31T19:17:45.716Z\",\n            \"eventId\": \"6dd24a6c-4cef-48c3-ae8b-249aa5f7cd57\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"61042070-9507-41e2-8bef-c3964559224e"},{"name":"Create a Sessiontype","id":"617c8dac-4d50-48bf-a74b-477d93df2ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"6dd24a6c-4cef-48c3-ae8b-249aa5f7cd57\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa175\",\n    \"fullName\": \"Parallel and Satellite Symposia\",\n    \"description\": \"Parallel and Satellite Symposia\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2","description":"<p>Create a new sessiontype.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Sessiontype ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required field.  <br />Must exist in <code>events</code>.  <br />Event ID to be linked to the sessiontype record. (uuid)</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Producer record identifier associated with a sessiontype.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Required field.  <br />Full name of a sessiontype.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Description of a sessiontype.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"1ffafac5-f636-4b6f-8720-7d84d009abd4","name":"Create a sessiontype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"6dd24a6c-4cef-48c3-ae8b-249aa5f7cd57\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa175\",\n    \"fullName\": \"Parallel and Satellite Symposia\",\n    \"description\": \"Parallel and Satellite Symposia\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:28:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"331"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"14b-PUgAAuKdqMZDXO1DBW7aldCD66o\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d22d5c47-e6bf-47b0-88b8-35208f16f55f\",\n    \"eventId\": \"6dd24a6c-4cef-48c3-ae8b-249aa5f7cd57\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa175\",\n    \"fullName\": \"Parallel and Satellite Symposia\",\n    \"description\": \"Parallel and Satellite Symposia\",\n    \"updatedAt\": \"2023-06-19T16:28:05.169Z\",\n    \"createdAt\": \"2023-06-19T16:28:05.169Z\"\n}"}],"_postman_id":"617c8dac-4d50-48bf-a74b-477d93df2ccd"},{"name":"Read a Sessiontype","id":"c6c3a14a-914d-4147-aae1-f32894783d22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2/:sessiontypeId","description":"<p>Retrieve a single sessiontype record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontypes","v2",":sessiontypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Sessiontype ID.</p>\n","type":"text/plain"},"type":"any","value":"5ed36260-b83e-4b41-9a70-90576ecd1f41","key":"sessiontypeId"}]}},"response":[{"id":"1ca615b6-58ba-46c3-9bdf-8751d78cce2e","name":"Read a sessiontype","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2/:sessiontypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontypes","v2",":sessiontypeId"],"variable":[{"key":"sessiontypeId","value":"649232a1-096f-4a8b-b8f9-0ffebc97aaa6","description":"Sessiontype ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:28:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"267"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"10b-WqvATuUFNKRPLlBFdUYPlVhlMmE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"649232a1-096f-4a8b-b8f9-0ffebc97aaa6\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa175\",\n    \"fullName\": \"Satellite Symposia\",\n    \"description\": Satellite Symposia,\n    \"createdAt\": \"2023-01-31T19:17:45.716Z\",\n    \"updatedAt\": \"2023-01-31T19:17:45.716Z\",\n    \"eventId\": \"6dd24a6c-4cef-48c3-ae8b-249aa5f7cd57\"\n}"},{"id":"10c997cd-39d2-4b0a-91e8-88ed65f82cb0","name":"Read a Sessiontype with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2/:sessiontypeId?include=sessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontypes","v2",":sessiontypeId"],"query":[{"key":"include","value":"sessions"}],"variable":[{"key":"sessiontypeId","value":"5ed36260-b83e-4b41-9a70-90576ecd1f41","description":"Sessiontype ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1560"},{"key":"ETag","value":"W/\"618-If0tkDteqv5m/JKeb2y7nPD12lw\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:17:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5ed36260-b83e-4b41-9a70-90576ecd1f41\",\n    \"producerRecordIdentifier\": \"vo6k9\",\n    \"fullName\": \"Intranet aut eos perspiciatis\",\n    \"description\": \"Grass-roots heuristic success visualize world-class deliverables\",\n    \"createdAt\": \"2023-05-19T00:02:50.901Z\",\n    \"updatedAt\": \"2023-05-19T00:02:50.901Z\",\n    \"eventId\": \"691f6db8-f076-4255-8dce-7e88a702ee96\",\n    \"sessions\": {\n        \"collection\": [\n            {\n                \"id\": \"157d8aad-bc24-4a73-a10f-6b017a4d8da0\",\n                \"clientIdentifier\": \"2l61i\",\n                \"producerRecordIdentifier\": \"vga5t\",\n                \"fullName\": \"Aliquid consequatur ipsum.\",\n                \"description\": null,\n                \"startsAt\": \"2023-05-19T00:02:50.916Z\",\n                \"endsAt\": \"2023-05-22T00:02:50.891Z\",\n                \"isFeatured\": true,\n                \"captureType\": \"repellat\",\n                \"hasAudienceResponseSystem\": false,\n                \"customAttributes\": \"{\\\"foo\\\":\\\";|w08nw|Wl\\\",\\\"bar\\\":\\\"qQ9+P6GAKY\\\",\\\"bike\\\":\\\"f;qKMMMcs1\\\",\\\"a\\\":\\\"LFA\\\\\\\\q<:-_4\\\",\\\"b\\\":89688,\\\"name\\\":56148,\\\"prop\\\":77535}\",\n                \"keywords\": [\n                    \"dicta\",\n                    \"voluptatem\",\n                    \"iure\",\n                    \"minus\",\n                    \"facilis\"\n                ],\n                \"createdAt\": \"2023-05-19T00:02:50.916Z\",\n                \"updatedAt\": \"2023-05-19T00:02:50.916Z\",\n                \"eventId\": \"0280d692-ab70-410e-a58a-104b83060f80\",\n                \"roomId\": \"8e6a68ab-4503-48e4-bc08-604a35481a5f\",\n                \"sessiontypeId\": \"5ed36260-b83e-4b41-9a70-90576ecd1f41\",\n                \"sessionformatId\": \"4013a85c-0d35-4ced-bdc2-5c6de9f9e7f9\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/691f6db8-f076-4255-8dce-7e88a702ee96\"\n            }\n        },\n        \"children\": {\n            \"sessions\": {\n                \"href\": \"/sessions/v2?filter[sessiontypeId][eq]=5ed36260-b83e-4b41-9a70-90576ecd1f41\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"c6c3a14a-914d-4147-aae1-f32894783d22"},{"name":"Update a Sessiontype","id":"9320fb8c-3c60-4139-9a63-7729c29d8830","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"Scientific and Satellite Sessions\",\n    \"description\": \"Scientific and Satellite Sessions\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2/:sessiontypeId","description":"<p>Modify a single sessiontype record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Must exist in <code>events</code>.  <br />Event ID to be linked to the sessiontype record. (uuid)</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with a sessiontype.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name of a sessiontype.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of a sessiontype.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontypes","v2",":sessiontypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"db400483-48b3-4030-abb0-f13304859282","description":{"content":"<p>Sessiontype ID.</p>\n","type":"text/plain"},"type":"any","value":"d22d5c47-e6bf-47b0-88b8-35208f16f55f","key":"sessiontypeId"}]}},"response":[{"id":"a6e2be1b-683b-4323-8a68-d7b1353e4d37","name":"Update a sessiontype","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"Scientific and Satellite Sessions\",\n    \"description\": \"Scientific and Satellite Sessions\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2/:sessiontypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontypes","v2",":sessiontypeId"],"variable":[{"key":"sessiontypeId","value":"d22d5c47-e6bf-47b0-88b8-35208f16f55f","description":"Sessiontype ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:33:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"301"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"12d-XHbnkZGWnyO2xHQ8OP8pewyaa5Y\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d22d5c47-e6bf-47b0-88b8-35208f16f55f\",\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"Scientific and Satellite Sessions\",\n    \"description\": \"Scientific and Satellite Sessions\",\n    \"createdAt\": \"2023-06-19T16:28:05.169Z\",\n    \"updatedAt\": \"2023-06-19T16:33:56.057Z\",\n    \"eventId\": \"6dd24a6c-4cef-48c3-ae8b-249aa5f7cd57\"\n}"}],"_postman_id":"9320fb8c-3c60-4139-9a63-7729c29d8830"},{"name":"Destroy a Sessiontype","id":"eca95885-885c-4df1-825c-8b8d03ff5a69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2/:sessiontypeId","description":"<p>Delete a sessiontype record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontypes","v2",":sessiontypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"069a11ab-7251-45e1-9750-cda4694d9dee","description":{"content":"<p>Sessiontype ID.</p>\n","type":"text/plain"},"type":"any","value":"d22d5c47-e6bf-47b0-88b8-35208f16f55f","key":"sessiontypeId"}]}},"response":[{"id":"233c246b-6437-4625-978e-379d32a525b3","name":"Destroy a sessiontype","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontypes/v2/:sessiontypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontypes","v2",":sessiontypeId"],"variable":[{"key":"sessiontypeId","value":"d22d5c47-e6bf-47b0-88b8-35208f16f55f","description":"Sessiontype ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:34:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"301"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"12d-XHbnkZGWnyO2xHQ8OP8pewyaa5Y\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d22d5c47-e6bf-47b0-88b8-35208f16f55f\",\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"Scientific and Satellite Sessions\",\n    \"description\": \"Scientific and Satellite Sessions\",\n    \"createdAt\": \"2023-06-19T16:28:05.169Z\",\n    \"updatedAt\": \"2023-06-19T16:33:56.057Z\",\n    \"eventId\": \"6dd24a6c-4cef-48c3-ae8b-249aa5f7cd57\"\n}"}],"_postman_id":"eca95885-885c-4df1-825c-8b8d03ff5a69"}],"id":"9d303862-ed2b-4751-93e4-fe80ee8c957d","description":"<p>Collection of CRUD operations and options to interact with Sessiontypes.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Sessiontype ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID to be linked to the sessiontype record. (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with a sessiontype.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9d303862-ed2b-4751-93e4-fe80ee8c957d","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Sessionlinks (v2)","item":[{"name":"List Sessionlinks","id":"c32d396a-bdb6-4d09-9ca1-da5e419b82e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2","description":"<p>Retrieve a collection of sessionlinks.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"a0fef4e9-c47c-4591-b18a-aaa3301fad49","name":"List sessionlinks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionlinks","v2"],"query":[{"key":"filter[fullName][eq]","value":"session Link 1234","description":"filter session links with full name equals to \"session Link 1234\" ","disabled":true},{"key":"filter[fullName][substring]","value":"ame","description":"filter session links having \"ame\" as a substring in full name","disabled":true},{"key":"filter[fullName][startsWith]","value":"Ergo","description":"filter session links having full name starting with \"Ergo\"","disabled":true},{"key":"filter[value][eq]","value":"industrial2022","description":"filter session links with value equals to \"industrial2022\"","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"filter session links with Id equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"filter session links created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filter session links created on and before \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filter session links created before \"2022-04-12\"","disabled":true},{"key":"filter[createdAt][eq]","value":"2022-03-31T15:27:01.076Z","description":"filter session links created on \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[value][eq]","value":"null","description":"filter session links having value as NULL","disabled":true},{"key":"filter[createdAt][gt]","value":"2022-05-14T21:41:49.525Z","description":"filter session links created after \"2022-05-14T21:41:49.525Z\"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:18:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"37468"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"925c-kUnrzkbXhIwAxGQ6cCDOyDIavi4\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"7fdb8d85-9af9-4c2c-bae5-6925b0d07a51\",\n            \"producerRecordIdentifier\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\",\n            \"type\": \"SessionSurveyLink\",\n            \"fullName\": null,\n            \"value\": \"www.sessionsurveylink.com\",\n            \"createdAt\": \"2023-02-24T11:25:37.881Z\",\n            \"updatedAt\": \"2023-02-24T11:25:37.881Z\",\n            \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\",\n            \"sessionId\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\"\n        },\n        {\n            \"id\": \"f738f03c-4930-4068-a99d-70d458827320\",\n            \"producerRecordIdentifier\": \"2a483e87-bc7e-466d-92c5-13e140d044bc\",\n            \"type\": \"GroupMeetingLink\",\n            \"fullName\": null,\n            \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n            \"createdAt\": \"2023-02-08T06:05:38.386Z\",\n            \"updatedAt\": \"2023-02-08T12:29:23.431Z\",\n            \"eventId\": \"2eadc4bc-be32-4a7d-aa4c-a8b11e106d35\",\n            \"sessionId\": \"2a483e87-bc7e-466d-92c5-13e140d044bc\"\n        },\n        {\n            \"id\": \"bb48a7be-d30e-4ce4-adfe-0e8c8fd7a158\",\n            \"producerRecordIdentifier\": \"f0cf8f52-1b43-412a-b414-2a05a3b692dd\",\n            \"type\": \"SessionExternalLink\",\n            \"fullName\": null,\n            \"value\": \"www.externallink.com\",\n            \"createdAt\": \"2023-02-24T11:25:38.250Z\",\n            \"updatedAt\": \"2023-02-24T11:25:38.250Z\",\n            \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\",\n            \"sessionId\": \"f0cf8f52-1b43-412a-b414-2a05a3b692dd\"\n        },\n        {\n            \"id\": \"ca371ed1-1cc1-4727-a0df-0d7f1b35975a\",\n            \"producerRecordIdentifier\": \"dc207e06-c260-425e-8685-5f05600f8e11\",\n            \"type\": \"SessionCMELink\",\n            \"fullName\": null,\n            \"value\": \"www.cmelink.com\",\n            \"createdAt\": \"2023-02-24T11:25:38.621Z\",\n            \"updatedAt\": \"2023-02-24T11:25:38.621Z\",\n            \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\",\n            \"sessionId\": \"dc207e06-c260-425e-8685-5f05600f8e11\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 4,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 4\n    }\n}"}],"_postman_id":"c32d396a-bdb6-4d09-9ca1-da5e419b82e3"},{"name":"Create a Sessionlink","id":"fded3277-3fc4-426e-8977-c8c156aef1a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"External Link\",\n    \"fullName\": \"External Link\",\n    \"value\": \"www.externallink.com\",\n    \"sessionId\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\",\n    \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2","description":"<p>Create a new session Link.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Required field.  <br />Session ID linked to the session Link (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field.  <br />Event ID linked to the Session Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated to the session link record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Required field.  <br />Type of session link</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Optional field.  <br />Value associated to the session Link record.</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>string</td>\n<td>Optional field.  <br />Full Name for the Session Link record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"ca2b4a3b-9581-4c2f-858c-c9fcc8208cc7","name":"Create a sessionlink","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"External Link\",\n    \"fullName\": \"External Link\",\n    \"value\": \"www.externallink.com\",\n    \"sessionId\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\",\n    \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:24:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"336"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"150-+Dw7N2IHvnTo6JywzOLX4+RLW9M\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"cde206e9-c082-4110-a7ee-601349c54368\",\n    \"type\": \"External Link\",\n    \"fullName\": \"External Link\",\n    \"value\": \"www.externallink.com\",\n    \"sessionId\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\",\n    \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\",\n    \"updatedAt\": \"2023-06-19T17:24:20.310Z\",\n    \"createdAt\": \"2023-06-19T17:24:20.310Z\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\"\n}"}],"_postman_id":"fded3277-3fc4-426e-8977-c8c156aef1a4"},{"name":"Read a Sessionlink","id":"b1a22a3a-1e87-47f6-8325-3de96cd65c0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2/:sessionlinkId","description":"<p>Retrieve a single sessionlink record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionlinks","v2",":sessionlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"86cb4b67-59f3-4ee5-86a7-7c6bec11067c","description":{"content":"<p>Session Link Id</p>\n","type":"text/plain"},"type":"any","value":"cde206e9-c082-4110-a7ee-601349c54368","key":"sessionlinkId"}]}},"response":[{"id":"480df939-7c08-4a53-9fcb-b202e0e99b91","name":"Read a sessionlink","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2/:sessionlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionlinks","v2",":sessionlinkId"],"variable":[{"key":"sessionlinkId","value":"cde206e9-c082-4110-a7ee-601349c54368","description":"Session Link Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:25:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"336"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"150-NChKdZhcMtrF8DpXsKqjgAab8c4\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"cde206e9-c082-4110-a7ee-601349c54368\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n    \"type\": \"External Link\",\n    \"fullName\": \"External Link\",\n    \"value\": \"www.externallink.com\",\n    \"createdAt\": \"2023-06-19T17:24:20.310Z\",\n    \"updatedAt\": \"2023-06-19T17:24:20.310Z\",\n    \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\",\n    \"sessionId\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\"\n}"},{"id":"ff8fcd3a-6887-45a9-a81c-5dd975f4f839","name":"Read a Sessionlink with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2/:sessionlinkId?include=sessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionlinks","v2",":sessionlinkId"],"query":[{"key":"include","value":"sessions"}],"variable":[{"key":"sessionlinkId","value":"1b33a1cc-c3c4-45ac-8571-9275971045db","description":"Session Link Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1585"},{"key":"ETag","value":"W/\"631-tw254d3ehSpJM9jFrDgD+OKzMvQ\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:20:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1b33a1cc-c3c4-45ac-8571-9275971045db\",\n    \"producerRecordIdentifier\": \"js47u\",\n    \"type\": \"cmeLink\",\n    \"fullName\": \"Rustic Cotton Pizza\",\n    \"value\": \"https://cavernous-fen.com\",\n    \"createdAt\": \"2023-05-19T00:02:48.350Z\",\n    \"updatedAt\": \"2023-05-19T00:02:48.350Z\",\n    \"eventId\": \"970b2b55-de21-4cc1-a169-84145c76c6e3\",\n    \"sessionId\": \"62dd1c95-8414-4c25-aa31-de2244325f4d\",\n    \"sessions\": {\n        \"collection\": [\n            {\n                \"id\": \"62dd1c95-8414-4c25-aa31-de2244325f4d\",\n                \"clientIdentifier\": \"8t1wd\",\n                \"producerRecordIdentifier\": \"5nw8i\",\n                \"fullName\": \"Minima est id ratione quo aut voluptates.\",\n                \"description\": \"Virtual local hub synergize clicks-and-mortar portals\",\n                \"startsAt\": \"2023-05-19T00:02:48.348Z\",\n                \"endsAt\": \"2023-05-22T00:02:48.322Z\",\n                \"isFeatured\": false,\n                \"captureType\": \"ratione\",\n                \"hasAudienceResponseSystem\": false,\n                \"customAttributes\": \"{\\\"foo\\\":15330,\\\"bar\\\":\\\"1K)=3FM[B$\\\",\\\"bike\\\":\\\"-Y(yl14/e5\\\",\\\"a\\\":49693,\\\"b\\\":52410,\\\"name\\\":29711,\\\"prop\\\":19135}\",\n                \"keywords\": [\n                    \"nobis\",\n                    \"sapiente\",\n                    \"est\",\n                    \"nihil\",\n                    \"eos\"\n                ],\n                \"createdAt\": \"2023-05-19T00:02:48.348Z\",\n                \"updatedAt\": \"2023-05-19T00:02:48.348Z\",\n                \"eventId\": \"d55b0ca2-1d65-47b5-ad34-4bf352204562\",\n                \"roomId\": \"fc51d743-a532-4cb3-91b7-890fd415ea7c\",\n                \"sessiontypeId\": \"dabeb6af-049b-4584-a718-c19fd313c9dc\",\n                \"sessionformatId\": \"b5e2a421-c6a8-425c-9b05-64516da3481c\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/970b2b55-de21-4cc1-a169-84145c76c6e3\"\n            },\n            \"session\": {\n                \"href\": \"/sessions/v2/62dd1c95-8414-4c25-aa31-de2244325f4d\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"b1a22a3a-1e87-47f6-8325-3de96cd65c0c"},{"name":"Update a Sessionlink","id":"1b11a1b5-4d0c-4bd7-b868-b8cd6197521c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"CME Link\",\n    \"value\": \"www.cmelink.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2/:sessionlinkId","description":"<p>Modify a single sessionlink record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Session ID linked to the session Link (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Session Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the session link record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of session link</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the session Link record.</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>string</td>\n<td>Full Name for the Session Link record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionlinks","v2",":sessionlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"febad7e2-ccdc-4713-a19d-eb82db90736a","description":{"content":"<p>Session Link Id</p>\n","type":"text/plain"},"type":"any","value":"cde206e9-c082-4110-a7ee-601349c54368","key":"sessionlinkId"}]}},"response":[{"id":"b5d3cc92-fd64-478f-bc7b-bd2904ab0588","name":"Update a sessionlink","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"CME Link\",\n    \"value\": \"www.cmelink.com\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2/:sessionlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionlinks","v2",":sessionlinkId"],"variable":[{"key":"sessionlinkId","value":"cde206e9-c082-4110-a7ee-601349c54368","description":"Session Link Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:29:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"315"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"13b-RwplM6bIGGvI1u33xxpqwAHKewY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"cde206e9-c082-4110-a7ee-601349c54368\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n    \"type\": \"CME Link\",\n    \"fullName\": null,\n    \"value\": \"www.cmelink.com\",\n    \"createdAt\": \"2023-06-19T17:24:20.310Z\",\n    \"updatedAt\": \"2023-06-19T17:29:42.623Z\",\n    \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\",\n    \"sessionId\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\"\n}"}],"_postman_id":"1b11a1b5-4d0c-4bd7-b868-b8cd6197521c"},{"name":"Destroy a Sessionlink","id":"92f1b87d-3d9d-46f0-9fc8-edf5e0262bdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2/:sessionlinkId","description":"<p>Delete an sessionlink record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionlinks","v2",":sessionlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"63498145-4b24-4204-bfcb-6feb36293f04","description":{"content":"<p>Session Link Id</p>\n","type":"text/plain"},"type":"any","value":"cde206e9-c082-4110-a7ee-601349c54368","key":"sessionlinkId"}]}},"response":[{"id":"0f530fa2-0c44-47fe-9ceb-504278e9f57f","name":"Destroy a sessionlink","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionlinks/v2/:sessionlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionlinks","v2",":sessionlinkId"],"variable":[{"key":"sessionlinkId","value":"cde206e9-c082-4110-a7ee-601349c54368","description":"Session Link Id"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:31:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"315"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"13b-RwplM6bIGGvI1u33xxpqwAHKewY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"cde206e9-c082-4110-a7ee-601349c54368\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n    \"type\": \"CME Link\",\n    \"fullName\": null,\n    \"value\": \"www.cmelink.com\",\n    \"createdAt\": \"2023-06-19T17:24:20.310Z\",\n    \"updatedAt\": \"2023-06-19T17:29:42.623Z\",\n    \"eventId\": \"972894ab-73e1-4251-ab40-4d8642951749\",\n    \"sessionId\": \"238c5825-cdf8-4848-8a0f-9b99d19c3e15\"\n}"}],"_postman_id":"92f1b87d-3d9d-46f0-9fc8-edf5e0262bdf"}],"id":"08214f05-6574-4e44-8e0d-0f9c0e8c6788","description":"<p>Collection of CRUD operations and options to interact with Session Links.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Session Link ID (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Session ID linked to the session Link (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Session Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the session link record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of session link</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the session Link record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full Name for the Session Link record</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"08214f05-6574-4e44-8e0d-0f9c0e8c6788","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Sessionfiles (v2)","item":[{"name":"List Sessionfiles","id":"d71414b4-e9c2-42ba-ac37-f19600446ff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2","description":"<p>Retrieve a collection of sessionfiles.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>speakers</td>\n<td>disclosure-speaker</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionfiles","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"f6408513-8dda-46a8-b84f-7dd8674d0aef","name":"List sessionfiles","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionfiles","v2"],"query":[{"key":"filter[name][eq]","value":"Sample FIle","description":"Filters session file with name equals to \"Sample File\"","disabled":true},{"key":"filter[name][substring]","value":"Ame","description":"Filters session file where name has substring \"Ame\"","disabled":true},{"key":"filter[type][eq]","value":"Data","description":"Filters session file with type equals to \"Data\"","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"Filters session file with Id equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"Filters session file created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"Filters session file created on and befoe \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"Filters session file created before \"2022-04-12\"","disabled":true},{"key":"filter[createdAt]","value":"2022-03-31T15:27:01.076Z","description":"Filters session file created at \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[producerRecordIdentifier][is]","value":"null","description":"Filters session file with producerRecordIdentifier equals Null","disabled":true},{"key":"filter[systemPath][substring]","value":"Local","description":"Filters session file where path has substring \"Local\"","disabled":true},{"key":"filter[extension][like]","value":"Excel","description":"Filters session file where extension equals to \"Excel\"","disabled":true},{"key":"page","value":"2","description":"Filters session files on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:40:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"39975"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"9c27-Xcintnd7XfuxgX6ujUNmJqoxK8c\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"sizeInBytes\": null,\n            \"id\": \"65ae55c6-5143-4b6c-ab3e-c9f2021bdc43\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n            \"name\": \"Exhibitor List\",\n            \"url\": \"www.exhibitor.com\",\n            \"type\": \"Auxilary\",\n            \"extension\": \"pdf\",\n            \"systemPath\": \"EventFiles\\\\asmbs2022\\\\ModeratorFiles\\\\Uploads\\\\25372432\\\\Exh_List.pdf\",\n            \"createdAt\": \"2023-06-12T20:12:57.444Z\",\n            \"updatedAt\": \"2023-06-12T20:12:57.444Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"sessionId\": \"0b9a7a49-a664-4d35-a1c7-20d1e9f275ad\"\n        },\n        {\n            \"sizeInBytes\": null,\n            \"id\": \"75809620-d9b4-4ba2-96aa-1ccbf513f4f1\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa120\",\n            \"name\": \"4 Mid-Afternoon Poll\",\n            \"url\": null,\n            \"type\": null,\n            \"extension\": \"pptx\",\n            \"systemPath\": \"EventFiles\\\\asmbs2022\\\\ModeratorFiles\\\\Uploads\\\\25372432\\\\4 Mid-Afternoon Poll.pptx\",\n            \"createdAt\": \"2023-06-12T20:13:06.032Z\",\n            \"updatedAt\": \"2023-06-12T20:13:06.032Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"sessionId\": \"cae4b06a-fafb-4037-aedf-c98d5b27de0b\"\n        },\n        {\n            \"sizeInBytes\": null,\n            \"id\": \"dd94f11f-769c-4d9b-8963-1e9cee88a346\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\",\n            \"name\": \"5 End of Day Poll\",\n            \"url\": null,\n            \"type\": null,\n            \"extension\": \"pptx\",\n            \"systemPath\": \"EventFiles\\\\asmbs2022\\\\ModeratorFiles\\\\Uploads\\\\25372432\\\\5 End of Day Poll.pptx\",\n            \"createdAt\": \"2023-06-12T20:12:15.806Z\",\n            \"updatedAt\": \"2023-06-12T20:12:15.806Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"sessionId\": \"8abf3eb4-4fbe-4f8b-9e4f-e34688987653\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 3,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 3\n    }\n}"}],"_postman_id":"d71414b4-e9c2-42ba-ac37-f19600446ff8"},{"name":"Create a Sessionfile","id":"062f3df0-cbc0-415d-ae9f-8596e57f0c75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\",\n    \"name\": \"Satellite Session File\",\n    \"url\": \"www.satellite.com\",\n    \"type\": \"Satellite\",\n    \"extension\": \"pdf\",\n    \"systemPath\": \"EventFiles\\\\asmbs2022\\\\ModeratorFiles\\\\Uploads\\\\25372432\\\\Satellite Session.pdf\",\n    \"eventId\": \"b8e0f929-5e76-40a6-acf6-3f22e1cb28df\",\n    \"sessionId\": \"9b5f2b64-6294-4ef8-bb09-9eadee3c729a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2","description":"<p>Create a new session File record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field.  <br />Event ID linked to the session file (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Required Field.  <br />Session ID linked to the session file (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional Field.  <br />Producer record identifier associated with the session file record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Required Field.  <br />Name assigned to the session file</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Optional Field.  <br />URL/path associated to the session file.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Optional Field.  <br />Type of session file</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Optional Field.  <br />Extension of the session file</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>Optional Field.  <br />system path associated to the session file.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>Optional Field.  <br />size of file in bytes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionfiles","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"719d5763-cf4a-417e-973a-5946829749bd","name":"Create a sessionfile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\",\n    \"name\": \"Satellite Session File\",\n    \"url\": \"www.satellite.com\",\n    \"type\": \"Satellite\",\n    \"extension\": \"pdf\",\n    \"systemPath\": \"EventFiles\\\\asmbs2022\\\\ModeratorFiles\\\\Uploads\\\\25372432\\\\Satellite Session.pdf\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"sessionId\": \"8abf3eb4-4fbe-4f8b-9e4f-e34688987653\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:51:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"498"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1f2-OWMUxF6aTIEEzKLlwJyaMgXk64g\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"e8168ffe-3e2d-4526-9f15-4403f5ada7e9\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\",\n    \"name\": \"Satellite Session File\",\n    \"url\": \"www.satellite.com\",\n    \"type\": \"Satellite\",\n    \"extension\": \"pdf\",\n    \"systemPath\": \"EventFiles\\\\asmbs2022\\\\ModeratorFiles\\\\Uploads\\\\25372432\\\\Satellite Session.pdf\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"sessionId\": \"8abf3eb4-4fbe-4f8b-9e4f-e34688987653\",\n    \"updatedAt\": \"2023-06-19T17:51:47.605Z\",\n    \"createdAt\": \"2023-06-19T17:51:47.605Z\"\n}"}],"_postman_id":"062f3df0-cbc0-415d-ae9f-8596e57f0c75"},{"name":"Read a Sessionfile","id":"7cdbc3b6-230e-44f8-9bd5-6e80ff5ab4a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2/:sessionfileId","description":"<p>Retrieve a single sessionfile record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionfiles","v2",":sessionfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"fb42d47b-1748-49b6-9c37-6b6ad1e305bc","description":{"content":"<p>Sessionfile ID.</p>\n","type":"text/plain"},"type":"any","value":"65ae55c6-5143-4b6c-ab3e-c9f2021bdc43","key":"sessionfileId"}]}},"response":[{"id":"1c0498e8-afa5-479b-8cf6-3c9be470ba2d","name":"Read a sessionfile","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2/:sessionfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionfiles","v2",":sessionfileId"],"variable":[{"key":"sessionfileId","value":"65ae55c6-5143-4b6c-ab3e-c9f2021bdc43","description":"Sessionfile ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:53:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"395"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"18b-nz0dBomwUR9Sh6oEUVlooIB4o88\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"65ae55c6-5143-4b6c-ab3e-c9f2021bdc43\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa199\",\n    \"name\": \"Awesome Kids File\",\n    \"url\": \"https://hailee.name\",\n    \"type\": \"model\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/root/architectures.ai\",\n    \"createdAt\": \"2023-06-12T20:12:57.444Z\",\n    \"updatedAt\": \"2023-06-12T20:12:57.444Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"sessionId\": \"0b9a7a49-a664-4d35-a1c7-20d1e9f275ad\"\n}"},{"id":"146d4753-fe09-4d8f-b950-ed70142e56da","name":"Read a Sessionfile with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2/:sessionfileId?include=sessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionfiles","v2",":sessionfileId"],"query":[{"key":"include","value":"sessions"}],"variable":[{"key":"sessionfileId","value":"47bb9560-8f19-48c0-bf4d-94f219af7cb2","description":"Sessionfile ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1744"},{"key":"ETag","value":"W/\"6d0-vpdoOXKreOpRjgCjCFRADZw2PdY\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:22:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": 1737369065,\n    \"id\": \"47bb9560-8f19-48c0-bf4d-94f219af7cb2\",\n    \"producerRecordIdentifier\": \"4kO4N\",\n    \"name\": \"Gorgeous Granite Salad\",\n    \"url\": \"https://sparse-jewel.org\",\n    \"type\": \"image\",\n    \"extension\": \"xls\",\n    \"systemPath\": \"/usr/bin\",\n    \"createdAt\": \"2023-05-30T15:56:40.425Z\",\n    \"updatedAt\": \"2023-05-30T15:56:40.425Z\",\n    \"eventId\": \"3b0523c7-7715-4683-ae48-5e97a3de623e\",\n    \"sessionId\": \"7cc8efda-a714-4587-860d-504b328c7069\",\n    \"sessions\": {\n        \"collection\": [\n            {\n                \"id\": \"7cc8efda-a714-4587-860d-504b328c7069\",\n                \"clientIdentifier\": \"TF6cC\",\n                \"producerRecordIdentifier\": \"z1zPd\",\n                \"fullName\": \"Soluta sapiente dolores iste quisquam velit eum voluptas.\",\n                \"description\": \"Open-source object-oriented frame revolutionize clicks-and-mortar e-business\",\n                \"startsAt\": \"2023-05-30T15:56:40.421Z\",\n                \"endsAt\": \"2023-06-01T15:56:40.392Z\",\n                \"isFeatured\": false,\n                \"captureType\": \"similique\",\n                \"hasAudienceResponseSystem\": true,\n                \"customAttributes\": \"{\\\"foo\\\":\\\"X]r0g{7WP8\\\",\\\"bar\\\":\\\"^97|RK!<n-\\\",\\\"bike\\\":4966571441127424,\\\"a\\\":7928326370885632,\\\"b\\\":3237995035492352,\\\"name\\\":\\\"&Kr_1`<DO$\\\",\\\"prop\\\":201747073073152}\",\n                \"keywords\": [\n                    \"nemo\",\n                    \"dolor\",\n                    \"doloremque\",\n                    \"qui\",\n                    \"corrupti\"\n                ],\n                \"createdAt\": \"2023-05-30T15:56:40.422Z\",\n                \"updatedAt\": \"2023-05-30T15:56:40.422Z\",\n                \"eventId\": \"ba77c708-cd7d-4bdd-9dbe-b9f3de6d7702\",\n                \"roomId\": \"31676d9c-a36b-4de3-b19d-9709444bfbd0\",\n                \"sessiontypeId\": \"d1f651f0-06be-438e-8cb1-93c6236055db\",\n                \"sessionformatId\": \"524b4c0a-2aa3-424d-9352-4215fda05761\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/3b0523c7-7715-4683-ae48-5e97a3de623e\"\n            },\n            \"session\": {\n                \"href\": \"/sessions/v2/7cc8efda-a714-4587-860d-504b328c7069\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"7cdbc3b6-230e-44f8-9bd5-6e80ff5ab4a9"},{"name":"Update a Sessionfile","id":"9463e84c-ddd2-44c4-9bae-47592acdb0fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fantastic Garden and Homemade File\",\n    \"url\": \"http://santa.name\",\n    \"type\": \"text\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2/:sessionfileId","description":"<p>Modify a single sessionfile record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the session file (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Session ID linked to the session file (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the session file record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name assigned to the session file</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>URL/path associated to the session file.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of session file</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Extension of the session file</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>System path associated to the session file.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>Size of file in bytes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionfiles","v2",":sessionfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"f06e20c6-579a-4178-acea-c347f5c4ccb1","description":{"content":"<p>Sessionfile ID.</p>\n","type":"text/plain"},"type":"any","value":"e8168ffe-3e2d-4526-9f15-4403f5ada7e9","key":"sessionfileId"}]}},"response":[{"id":"e95f40a3-4bfa-4cfd-8180-034692a6e627","name":"Update a sessionfile","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fantastic Garden and Homemade File\",\n    \"url\": \"http://santa.name\",\n    \"type\": \"text\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2/:sessionfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionfiles","v2",":sessionfileId"],"variable":[{"key":"sessionfileId","value":"e8168ffe-3e2d-4526-9f15-4403f5ada7e9","description":"Sessionfile ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:58:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"423"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1a7-GfZMA+1FIDX52uvI0XUneGJ81t8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"e8168ffe-3e2d-4526-9f15-4403f5ada7e9\",\n    \"producerRecordIdentifier\": \"1UquRQtnATtvpuAucjxJcU11sy3tTMPY\",\n    \"name\": \"Fantastic Garden and Homemade File\",\n    \"url\": \"http://santa.name\",\n    \"type\": \"text\",\n    \"extension\": null,\n    \"systemPath\": null,\n    \"createdAt\": \"2023-06-19T17:51:47.605Z\",\n    \"updatedAt\": \"2023-06-19T17:58:41.160Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"sessionId\": \"8abf3eb4-4fbe-4f8b-9e4f-e34688987653\"\n}"}],"_postman_id":"9463e84c-ddd2-44c4-9bae-47592acdb0fe"},{"name":"Destroy a Sessionfile","id":"5615d30f-4cda-496a-b949-8be104f95ac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2/:sessionfileId","description":"<p>Delete a sessionfile record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionfiles","v2",":sessionfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"2672f892-5e6a-45b0-8a34-174a8096f801","description":{"content":"<p>Sessionfile ID.</p>\n","type":"text/plain"},"type":"any","value":"e8168ffe-3e2d-4526-9f15-4403f5ada7e9","key":"sessionfileId"}]}},"response":[{"id":"85dcfa22-b791-46d4-815b-3ecbad2e88f8","name":"Destroy a sessionfile","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionfiles/v2/:sessionfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionfiles","v2",":sessionfileId"],"variable":[{"key":"sessionfileId","value":"e8168ffe-3e2d-4526-9f15-4403f5ada7e9","description":"Sessionfile ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 17:59:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"423"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1a7-GfZMA+1FIDX52uvI0XUneGJ81t8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"e8168ffe-3e2d-4526-9f15-4403f5ada7e9\",\n    \"producerRecordIdentifier\": \"1UquRQtnATtvpuAucjxJcU11sy3tTMPY\",\n    \"name\": \"Fantastic Garden and Homemade File\",\n    \"url\": \"http://santa.name\",\n    \"type\": \"text\",\n    \"extension\": null,\n    \"systemPath\": null,\n    \"createdAt\": \"2023-06-19T17:51:47.605Z\",\n    \"updatedAt\": \"2023-06-19T17:58:41.160Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"sessionId\": \"8abf3eb4-4fbe-4f8b-9e4f-e34688987653\"\n}"}],"_postman_id":"5615d30f-4cda-496a-b949-8be104f95ac1"}],"id":"01e19c58-066f-427d-9f5b-09bdde943029","description":"<p>Collection of CRUD operations and options to interact with Session Files</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Session File ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the session file (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Session ID linked to the session file (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the session file record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>name assigned to the session file</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>URL/path associated to the session file.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of session file</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Extension of the session file</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>system path associated to the session file.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>size of the file in bytes</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"01e19c58-066f-427d-9f5b-09bdde943029","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Sessionformats (v2)","item":[{"name":"List Sessionformats","id":"db1e67e5-0490-4a90-afc9-1c42b948802f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionformats/v2","description":"<p>Retrieve a collection of sessionformats.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionformats","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"020a893e-2fca-4c7b-9833-72b9858d5e3f","name":"List sessionformats","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionformats/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionformats","v2"],"query":[{"key":"filter[fullName][eq]","value":"Virtual","description":"fullName equals \"Virtual\".","disabled":true},{"key":"page","value":"2","description":"page number to retrieve the records.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:35:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1252"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"4e4-3AZuGL84D2MzGRN5oqlq7GW4WtU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\",\n            \"fullName\": \"In-Person\",\n            \"createdAt\": \"2022-09-23T16:15:16.022Z\",\n            \"updatedAt\": \"2022-09-23T16:15:16.022Z\"\n        },\n        {\n            \"id\": \"39261534-a9b3-4df4-a218-2231d391addf\",\n            \"fullName\": \"Virtual Live Stream\",\n            \"createdAt\": \"2022-09-23T16:15:16.022Z\",\n            \"updatedAt\": \"2022-09-30T21:35:41.823Z\"\n        },\n        {\n            \"id\": \"0e7cd772-9083-4160-94de-3e6701547080\",\n            \"fullName\": \"Virtual Hybrid\",\n            \"createdAt\": \"2022-09-23T16:15:16.022Z\",\n            \"updatedAt\": \"2022-09-30T21:35:42.431Z\"\n        },\n        {\n            \"id\": \"e70156e9-5a5f-4cff-951b-cebfa1042090\",\n            \"fullName\": \"Virtual On-Demand\",\n            \"createdAt\": \"2022-09-23T16:15:16.022Z\",\n            \"updatedAt\": \"2022-09-30T21:35:43.055Z\"\n        },\n        {\n            \"id\": \"1371efe2-2e4f-48be-83a7-0d2469e07332\",\n            \"fullName\": \"Virtual Display Only\",\n            \"createdAt\": \"2022-09-30T21:35:44.315Z\",\n            \"updatedAt\": \"2022-09-30T21:35:44.315Z\"\n        },\n        {\n            \"id\": \"9b7b3da7-ccd8-4f3d-8fb0-e247f86d4adf\",\n            \"fullName\": \"Virtual Hybrid Display Only\",\n            \"createdAt\": \"2022-09-30T21:35:44.967Z\",\n            \"updatedAt\": \"2022-09-30T21:35:44.967Z\"\n        },\n        {\n            \"id\": \"a0e95e6b-fff4-4862-bd24-8aace4480269\",\n            \"fullName\": \"Virtual On-Demand Only\",\n            \"createdAt\": \"2023-05-19T01:05:43.808Z\",\n            \"updatedAt\": \"2023-06-12T14:08:58.185Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 7,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 7\n    }\n}"}],"_postman_id":"db1e67e5-0490-4a90-afc9-1c42b948802f"},{"name":"Read a Sessionformat","id":"94a06469-a73e-4d58-a5f6-af1baf16daf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionformats/v2/:sessionformatId","description":"<p>Retrieve a single sessionformat record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionformats","v2",":sessionformatId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Sessionformat ID.</p>\n","type":"text/plain"},"type":"any","value":"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da","key":"sessionformatId"}]}},"response":[{"id":"2074d058-85bc-407d-9bbc-f9ce6662e06e","name":"Read a sessionformat","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionformats/v2/:sessionformatId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionformats","v2",":sessionformatId"],"variable":[{"key":"sessionformatId","value":"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da","description":"Sessionformat ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jun 2023 16:38:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"146"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"92-TzU5BWZcNGgwu1LVcGByk9jb8aI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4c52f05c-5e4e-427b-8eb3-5e8dd50a84da\",\n    \"fullName\": \"In-Person\",\n    \"createdAt\": \"2022-09-23T16:15:16.022Z\",\n    \"updatedAt\": \"2022-09-23T16:15:16.022Z\"\n}"}],"_postman_id":"94a06469-a73e-4d58-a5f6-af1baf16daf1"}],"id":"eca57c34-9f95-402c-bc97-de4078337fb9","description":"<p>Collection of operations and options to interact with Sessionformats.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Sessionformat ID (uuid).</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name of a sessionformat record.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"eca57c34-9f95-402c-bc97-de4078337fb9","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Sessionvideos (v2)","item":[{"name":"List Sessionvideos","id":"0ea1182e-4a25-420c-9abb-7800fd409802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2","description":"<p>Retrieve a collection of sessionvideos.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionvideos","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"1a4b253b-8601-4990-a15c-4ee3a6207609","name":"List sessionvideos","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionvideos","v2"],"query":[{"key":"filter[producerRecordIdentifier][substring]","value":"4rgjc","description":"producerRecordIdentifier with a substring of \"4rgjc\".","disabled":true},{"key":"filter[type][eq]","value":"mp3","description":"type equals to \"mp3\".","disabled":true},{"key":"filter[closedcaptionDashboardUrl][eq]","value":"https://www.closedcaptionDashboardUrl.com","description":"closedcaptionDashboardUrl equals \"https://www.closedcaptionDashboardUrl.com\".","disabled":true},{"key":"filter[streamKey][startsWith]","value":"SRC","description":"streamKey startswith \"SRC\".","disabled":true},{"key":"page","value":"2","description":"page number to retrieve the records.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 14:52:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"57662"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e13e-N+jfy2g+ACtiCTbHiJRlMKtsoDU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"cff4fcb2-98a6-42bd-9935-571f26a61a71\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n            \"type\": null,\n            \"directPlayerLink\": \"http://placeimg.com/640/480\",\n            \"adminUrl\": \"http://marlee.org\",\n            \"embedCode\": \"https://player.vimeo.com/video/284834103?h=676e1ce2fd&title=0&byline=0&portrait=0\",\n            \"rtmpUrl\": \"rtmp://rtmp-global.cloud.vimeo.com/live\",\n            \"streamKey\": \"8c3f0c81-d512-4895-9a53-ef382cbfbadd\",\n            \"closedcaptionRtmpUrl\": \"http://lempi.biz\",\n            \"closedcaptionStreamKey\": \"uhvrfg4561\",\n            \"closedcaptionDashboardUrl\": \"http://susie.com\",\n            \"createdAt\": \"2023-02-24T07:11:04.022Z\",\n            \"updatedAt\": \"2023-02-24T07:11:04.022Z\",\n            \"eventId\": \"57fcd09f-e29f-40f1-b147-bb26ca2b89bb\",\n            \"sessionId\": \"6e2c0a8f-ac0f-40d5-97c3-628cdea84919\"\n        },\n        {\n            \"id\": \"c4fb3c7e-2a74-457b-80ee-bed859aa147c\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e56d\",\n            \"type\": null,\n            \"directPlayerLink\": \"http://placeimg.com/640/480\",\n            \"adminUrl\": \"http://marlee.org\",\n            \"embedCode\": \"https://player.vimeo.com/video/284834103?h=676e1ce2fd&title=0&byline=0&portrait=0\",\n            \"rtmpUrl\": \"https://darlene.org\",\n            \"streamKey\": \"auto key 123\",\n            \"closedcaptionRtmpUrl\": \"http://lempi.biz\",\n            \"closedcaptionStreamKey\": \"uhvrfg4561\",\n            \"closedcaptionDashboardUrl\": \"http://susie.com\",\n            \"createdAt\": \"2023-04-07T21:40:25.139Z\",\n            \"updatedAt\": \"2023-04-07T21:49:08.846Z\",\n            \"eventId\": \"927c4f03-95af-48bc-8107-f1b5bfc3308b\",\n            \"sessionId\": \"8be1ae5a-286e-42d1-b138-6ccc25c862c0\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"0ea1182e-4a25-420c-9abb-7800fd409802"},{"name":"Create a Sessionvideo","id":"da0b4e83-3ecb-430b-ad3c-a50cd2b5aec9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\":  \"mp3\",           \n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\":  \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",        \n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\":  \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"sessionId\": \"8be1ae5a-286e-42d1-b138-6ccc25c862c0\",\n    \"eventId\": \"927c4f03-95af-48bc-8107-f1b5bfc3308b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2","description":"<p>Create a new sessionvideo record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Required field.  <br />Session ID linked to the session Video (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field.  <br />Event ID linked to the Session Video(uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated with the sessionvideo record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable  <br />File type of the sessionvideo.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Optional field.  <br />Direct player link of the sessionvideo.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Admin url.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Rtmp url.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption rtmp url.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption dashboard url.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionvideos","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"40d53989-8430-4fe7-b2e4-85d5b6257ab1","name":"Create a sessionvideo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\":  \"mp3\",           \n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\":  \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",        \n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\":  \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"sessionId\": \"8be1ae5a-286e-42d1-b138-6ccc25c862c0\",\n    \"eventId\": \"927c4f03-95af-48bc-8107-f1b5bfc3308b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 14:59:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"660"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"294-aHrnOxY6mKH44aWzOlVj8PFsrpo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6\",\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\": \"mp3\",\n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\": \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",\n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\": \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"sessionId\": \"8be1ae5a-286e-42d1-b138-6ccc25c862c0\",\n    \"eventId\": \"927c4f03-95af-48bc-8107-f1b5bfc3308b\",\n    \"updatedAt\": \"2023-06-20T14:59:38.973Z\",\n    \"createdAt\": \"2023-06-20T14:59:38.973Z\"\n}"}],"_postman_id":"da0b4e83-3ecb-430b-ad3c-a50cd2b5aec9"},{"name":"Read a Sessionvideo","id":"92526e60-42e3-423f-ae8d-93047baef435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2/:sessionvideoId","description":"<p>Retrieve a single sessionvideo record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionvideos","v2",":sessionvideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"8248935e-7896-4065-b73e-31472d78b711","description":{"content":"<p>Sessionvideo ID.</p>\n","type":"text/plain"},"type":"any","value":"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6","key":"sessionvideoId"}]}},"response":[{"id":"d3c820d2-28ae-4d37-bf08-95218daea6a1","name":"Read a sessionvideo","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2/:sessionvideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionvideos","v2",":sessionvideoId"],"variable":[{"key":"sessionvideoId","value":"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6","description":"Sessionvideo ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:00:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"660"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"294-n2t7WUAguPpg/ATHeN4y8DjdXfc\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6\",\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\": \"mp3\",\n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\": \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",\n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\": \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"createdAt\": \"2023-06-20T14:59:38.973Z\",\n    \"updatedAt\": \"2023-06-20T14:59:38.973Z\",\n    \"eventId\": \"927c4f03-95af-48bc-8107-f1b5bfc3308b\",\n    \"sessionId\": \"8be1ae5a-286e-42d1-b138-6ccc25c862c0\"\n}"},{"id":"81ddccdd-96ac-4144-8075-a5a798f65fed","name":"Read a Sessionvideo with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2/:sessionvideoId?include=sessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionvideos","v2",":sessionvideoId"],"query":[{"key":"include","value":"sessions"}],"variable":[{"key":"sessionvideoId","value":"6e27b63d-0320-4969-9d2d-5fe874b2c589","description":"Sessionvideo ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1948"},{"key":"ETag","value":"W/\"79c-vezqJcXjz5tAw7QL97yQjN28gF4\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:23:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6e27b63d-0320-4969-9d2d-5fe874b2c589\",\n    \"producerRecordIdentifier\": \"YFOMm\",\n    \"type\": \"application\",\n    \"directPlayerLink\": \"https://different-last.net\",\n    \"adminUrl\": \"https://shoddy-pince-nez.biz/\",\n    \"embedCode\": \"S7fSHRmBdf\",\n    \"rtmpUrl\": \"https://limp-stack.net\",\n    \"streamKey\": \"m8ohnOcvVfFcCvF\",\n    \"closedcaptionRtmpUrl\": \"https://potable-faucet.net/\",\n    \"closedcaptionStreamKey\": \"446LmNkaTHPuHJg\",\n    \"closedcaptionDashboardUrl\": \"https://nutritious-inclusion.name\",\n    \"createdAt\": \"2023-06-08T16:58:47.925Z\",\n    \"updatedAt\": \"2023-06-08T16:58:47.925Z\",\n    \"eventId\": \"fbc18c02-6e51-4db4-8133-d55941b829f5\",\n    \"sessionId\": \"1ab668c1-1882-4252-a170-395c727a893f\",\n    \"sessions\": {\n        \"collection\": [\n            {\n                \"id\": \"1ab668c1-1882-4252-a170-395c727a893f\",\n                \"clientIdentifier\": \"KZoxh\",\n                \"producerRecordIdentifier\": \"l8Fc6\",\n                \"fullName\": \"Doloribus officiis vero consectetur ad veniam blanditiis mollitia fuga.\",\n                \"description\": \"Cross-group full-range encryption transform seamless channels\",\n                \"startsAt\": \"2023-06-08T16:58:47.922Z\",\n                \"endsAt\": \"2023-06-10T16:58:47.902Z\",\n                \"isFeatured\": false,\n                \"captureType\": \"dolore\",\n                \"hasAudienceResponseSystem\": false,\n                \"customAttributes\": \"{\\\"foo\\\":6838555693285376,\\\"bar\\\":\\\"@jKmTE375X\\\",\\\"bike\\\":2324834711240704,\\\"a\\\":\\\"pnWYR#>>KH\\\",\\\"b\\\":4525054513643520,\\\"name\\\":5438695712751616,\\\"prop\\\":\\\"j})*GgY=6'\\\"}\",\n                \"keywords\": [\n                    \"hic\",\n                    \"doloribus\",\n                    \"in\",\n                    \"fuga\",\n                    \"qui\"\n                ],\n                \"createdAt\": \"2023-06-08T16:58:47.922Z\",\n                \"updatedAt\": \"2023-06-08T16:58:47.922Z\",\n                \"eventId\": \"92d785be-644a-4314-a1fa-201e13da8772\",\n                \"roomId\": \"a7da7d7d-396e-47ed-8aea-8da98ea96b28\",\n                \"sessiontypeId\": \"c23c69ed-afab-485a-b943-64dd329fb0e9\",\n                \"sessionformatId\": \"7282819d-2b84-4465-86fd-cecd01099c03\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/fbc18c02-6e51-4db4-8133-d55941b829f5\"\n            },\n            \"session\": {\n                \"href\": \"/sessions/v2/1ab668c1-1882-4252-a170-395c727a893f\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"92526e60-42e3-423f-ae8d-93047baef435"},{"name":"Update a Sessionvideo","id":"8da761e9-17c0-4c2b-a0ab-b6f3e3ea9c79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{          \n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2/:sessionvideoId","description":"<p>Modify a single sessionvideo record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Required field.  <br />Session ID linked to the session Video (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field.  <br />Event ID linked to the Session Video(uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated with the sessionvideo record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable  <br />File type of the sessionvideo.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Optional field.  <br />Direct player link of the sessionvideo.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Admin url.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Rtmp url.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption rtmp url.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption dashboard url.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionvideos","v2",":sessionvideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"ce79c2c4-6e96-4cfd-b4c6-f9e2b57b9d3a","description":{"content":"<p>Sessionvideo ID.</p>\n","type":"text/plain"},"type":"any","value":"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6","key":"sessionvideoId"}]}},"response":[{"id":"3e84bc21-90be-4998-b416-c37d420829d4","name":"Update a sessionvideo","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{          \n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2/:sessionvideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionvideos","v2",":sessionvideoId"],"variable":[{"key":"sessionvideoId","value":"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6","description":"Sessionvideo ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:02:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"493"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1ed-jjsbjSxOZ7qXsVSNYqRWaVy2eL8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"application\",\n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\",\n    \"adminUrl\": null,\n    \"embedCode\": null,\n    \"rtmpUrl\": null,\n    \"streamKey\": null,\n    \"closedcaptionRtmpUrl\": null,\n    \"closedcaptionStreamKey\": null,\n    \"closedcaptionDashboardUrl\": null,\n    \"createdAt\": \"2023-06-20T14:59:38.973Z\",\n    \"updatedAt\": \"2023-06-20T15:02:09.728Z\",\n    \"eventId\": \"927c4f03-95af-48bc-8107-f1b5bfc3308b\",\n    \"sessionId\": \"8be1ae5a-286e-42d1-b138-6ccc25c862c0\"\n}"}],"_postman_id":"8da761e9-17c0-4c2b-a0ab-b6f3e3ea9c79"},{"name":"Destroy a Sessionvideo","id":"bb03cb9b-2ad0-49b3-8064-dbe14ccd043e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2/:sessionvideoId","description":"<p>Delete a sessionvideo record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessionvideos","v2",":sessionvideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"b02de970-9331-4b47-ac16-3c520cb24e1c","description":{"content":"<p>Sessionvideo ID.</p>\n","type":"text/plain"},"type":"any","value":"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6","key":"sessionvideoId"}]}},"response":[{"id":"4f623338-21b2-49c0-aff1-5fe7a364d0c3","name":"Destroy a sessionvideo","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessionvideos/v2/:sessionvideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessionvideos","v2",":sessionvideoId"],"variable":[{"key":"sessionvideoId","value":"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6","description":"Sessionvideo ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:02:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"493"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1ed-jjsbjSxOZ7qXsVSNYqRWaVy2eL8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8b345fe1-5ada-4ccd-9b2f-113a7a760bd6\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"application\",\n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\",\n    \"adminUrl\": null,\n    \"embedCode\": null,\n    \"rtmpUrl\": null,\n    \"streamKey\": null,\n    \"closedcaptionRtmpUrl\": null,\n    \"closedcaptionStreamKey\": null,\n    \"closedcaptionDashboardUrl\": null,\n    \"createdAt\": \"2023-06-20T14:59:38.973Z\",\n    \"updatedAt\": \"2023-06-20T15:02:09.728Z\",\n    \"eventId\": \"927c4f03-95af-48bc-8107-f1b5bfc3308b\",\n    \"sessionId\": \"8be1ae5a-286e-42d1-b138-6ccc25c862c0\"\n}"}],"_postman_id":"bb03cb9b-2ad0-49b3-8064-dbe14ccd043e"}],"id":"c2bccd61-747e-4a85-a8a2-9548bd06f5cc","description":"<p>Collection of CRUD operations and options to interact with Sessionvideos.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Sessionvideo ID (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Session ID linked to the session Video(uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Session Video (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the sessionvideo record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>File type.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Direct player link.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Admin URL.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Rtmp URL.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Closed caption rtmp URL.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Closed caption dashboard URL.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c2bccd61-747e-4a85-a8a2-9548bd06f5cc","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Sessiontracks (v2)","item":[{"name":"List Sessiontracks","id":"6699c0f1-23cb-40a4-a487-d8e3bfd15f46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2","description":"<p>Retrieve a collection of sessiontracks.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontracks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"6e7e38e6-eaac-49b0-acbc-6b6349b08f2b","name":"List sessiontracks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontracks","v2"],"query":[{"key":"filter[eventId][eq]","value":"1494a8bc-1b09-4922-b0a2-b6a8b1106c79","description":"Filter sessiontracks with eventId equals to \"1494a8bc-1b09-4922-b0a2-b6a8b1106c79\"","disabled":true},{"key":"filter[name][eq]","value":"Sample Track","description":"Filters session tracks with name equals to \"Sample Track\"","disabled":true},{"key":"filter[name][substring]","value":"Sample","description":"Filters session tracks with name having a substring \"Sample\"","disabled":true},{"key":"filter[description][eq]","value":"Sample String","description":"Filters session tracks with name equals to \"Sample String\"","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"Filters session tracks with Id equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"Filters session tracks created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"Filters session tracks created on and before \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"Filters session tracks created after \"2022-04-12\"","disabled":true},{"key":"filter[createdAt]","value":"2022-03-31T15:27:01.076Z","description":"Filters session tracks created at \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[producerRecordIdentifier][is]","value":"null","description":"Filters session tracks with producerRecordIdentifier as Null","disabled":true},{"key":"page","value":"2","description":"Filters session tracks on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:23:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27913"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"6d09-WTbYAmoY+VTzjk1ynxeg95sGJrc\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e599\",\n            \"name\": \"Garden Track\",\n            \"description\": \"Organized well-modulated support implement frictionless experiences\",\n            \"createdAt\": \"2023-02-24T06:35:44.263Z\",\n            \"updatedAt\": \"2023-02-24T06:35:44.263Z\"\n        },\n        {\n            \"id\": \"7f207401-dcef-4c9f-9c3f-2ff380b21bfd\",\n            \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e510\",\n            \"name\": \"Toys Track\",\n            \"description\": \"Persistent 24/7 projection optimize bleeding-edge methodologies\",\n            \"createdAt\": \"2023-02-24T15:32:45.018Z\",\n            \"updatedAt\": \"2023-02-24T15:32:45.018Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"6699c0f1-23cb-40a4-a487-d8e3bfd15f46"},{"name":"Create a Sessiontrack","id":"d22e9355-ce16-4a33-a4a1-c6fabdacca81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n    \"name\": \"Movies Track\",\n    \"description\": \"Drive compelling action-items\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e500\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2","description":"<p>Create a new sessiontrack record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field. Event ID (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional Field.  <br />Producer record identifier associated to the session track record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Required Field.  <br />Name of session track</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional Field.  <br />description associated to the session track</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontracks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c806dfdf-9581-42c5-8a51-2f957251fe7d","name":"Create a sessiontrack","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n    \"name\": \"Movies Track\",\n    \"description\": \"Drive compelling action-items\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e500\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:28:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"306"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"132-mgfReS3BqrkncoEvnFv/Yb/ixdA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d998dfbb-6c0a-46fb-ab91-8c10f644fba7\",\n    \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n    \"name\": \"Movies Track\",\n    \"description\": \"Drive compelling action-items\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e500\",\n    \"updatedAt\": \"2023-06-20T15:28:40.406Z\",\n    \"createdAt\": \"2023-06-20T15:28:40.406Z\"\n}"}],"_postman_id":"d22e9355-ce16-4a33-a4a1-c6fabdacca81"},{"name":"Read a Sessiontrack","id":"644c3001-1642-4225-9d83-786f513038ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2/:sessiontrackId","description":"<p>Retrieve a single sessiontrack record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td>session-sessiontrack</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontracks","v2",":sessiontrackId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"e3157795-cb22-451a-9b44-97dbd0015da9","description":{"content":"<p>Sessiontrack ID.</p>\n","type":"text/plain"},"type":"any","value":"d998dfbb-6c0a-46fb-ab91-8c10f644fba7","key":"sessiontrackId"}]}},"response":[{"id":"2079197b-40e2-47b0-97c9-cff293de6d4b","name":"Read a sessiontrack","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2/:sessiontrackId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontracks","v2",":sessiontrackId"],"variable":[{"key":"sessiontrackId","value":"d998dfbb-6c0a-46fb-ab91-8c10f644fba7","description":"Sessiontrack ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:29:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"306"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"132-Wq2MKTxduprqODtlTaWBcI/GdVc\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d998dfbb-6c0a-46fb-ab91-8c10f644fba7\",\n    \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e500\",\n    \"name\": \"Movies Track\",\n    \"description\": \"Drive compelling action-items\",\n    \"createdAt\": \"2023-06-20T15:28:40.406Z\",\n    \"updatedAt\": \"2023-06-20T15:28:40.406Z\"\n}"},{"id":"a3bdf2e2-f667-4e66-b3c6-c1926dd59b85","name":"Read a Sessiontrack with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2/:sessiontrackId?include=events","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontracks","v2",":sessiontrackId"],"query":[{"key":"include","value":"events"}],"variable":[{"key":"sessiontrackId","value":"90a647cd-8ccf-422f-b74c-41abcd5e6548"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1465"},{"key":"ETag","value":"W/\"5b9-oemeuRNRsv9s4MdgF+Iaw+9jnig\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:54:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"90a647cd-8ccf-422f-b74c-41abcd5e6548\",\n    \"eventId\": \"8baa9574-a662-4d02-b8e3-bf76feaab7f1\",\n    \"producerRecordIdentifier\": \"SU06C\",\n    \"name\": \"Music Track\",\n    \"description\": \"Face to face dedicated hierarchy unleash value-added deliverables\",\n    \"createdAt\": \"2023-05-30T15:56:41.069Z\",\n    \"updatedAt\": \"2023-05-30T15:56:41.069Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"8baa9574-a662-4d02-b8e3-bf76feaab7f1\",\n                \"shortName\": \"Tasty Clothing Review Meeting 2025\",\n                \"fullName\": \"Bespoke Handmade Soft Soap Kids Review Meeting 2025\",\n                \"systemName\": \"tastyclothingreviewmeeting2025-959d\",\n                \"website\": \"https://some-turban.name\",\n                \"description\": \"Streamlined 4th generation functionalities target bleeding-edge e-business\",\n                \"startsAt\": \"2023-05-30T15:56:41.064Z\",\n                \"endsAt\": \"2023-05-31T15:56:41.061Z\",\n                \"timezoneOffsetInMinutes\": 798,\n                \"freemanJobIdentifier\": \"f9e4047\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-05-30T15:56:41.064Z\",\n                \"updatedAt\": \"2023-05-30T15:56:41.064Z\",\n                \"organizationId\": \"6d032b56-97b5-4582-ab20-ad84c7df56e9\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/8baa9574-a662-4d02-b8e3-bf76feaab7f1\"\n            }\n        },\n        \"children\": {\n            \"session-sessiontrack\": {\n                \"href\": \"/session-sessiontrack/v2?filter[sessiontrackId][eq]=90a647cd-8ccf-422f-b74c-41abcd5e6548\"\n            }\n        },\n        \"siblings\": {\n            \"sessions\": {\n                \"href\": \"/sessions/v2?filter[sessiontrackId][eq]=90a647cd-8ccf-422f-b74c-41abcd5e6548\"\n            }\n        }\n    }\n}"}],"_postman_id":"644c3001-1642-4225-9d83-786f513038ca"},{"name":"Update a Sessiontrack","id":"fa73a860-7b40-4002-b3c0-a39e7954cb15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"Recontextualize integrated methodologies\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2/:sessiontrackId","description":"<p>Modify a single sessiontrack record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the session track record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of session track</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description associated to the session track</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontracks","v2",":sessiontrackId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"aea61226-c197-4124-8900-2a24f6a4db79","description":{"content":"<p>Sessiontrack ID.</p>\n","type":"text/plain"},"type":"any","value":"d998dfbb-6c0a-46fb-ab91-8c10f644fba7","key":"sessiontrackId"}]}},"response":[{"id":"6330f4e7-cbbf-465b-9d33-3dc924b22ee9","name":"Update a sessiontrack","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"Recontextualize integrated methodologies\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2/:sessiontrackId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontracks","v2",":sessiontrackId"],"variable":[{"key":"sessiontrackId","value":"d998dfbb-6c0a-46fb-ab91-8c10f644fba7","description":"Sessiontrack ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:31:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"317"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"13d-WR2eb2rG46Whz36HhC8dbynxoUI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d998dfbb-6c0a-46fb-ab91-8c10f644fba7\",\n    \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e500\",\n    \"name\": \"Beauty Track\",\n    \"description\": \"Recontextualize integrated methodologies\",\n    \"createdAt\": \"2023-06-20T15:28:40.406Z\",\n    \"updatedAt\": \"2023-06-20T15:31:27.919Z\"\n}"}],"_postman_id":"fa73a860-7b40-4002-b3c0-a39e7954cb15"},{"name":"Destroy a Sessiontrack","id":"dd64f8c0-dd77-4291-9d42-389a7f3334be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2/:sessiontrackId","description":"<p>Delete a sessiontrack record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontracks","v2",":sessiontrackId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"ac4793b1-2011-422d-8a88-a7ec3c39dc9a","description":{"content":"<p>Sessiontrack ID.</p>\n","type":"text/plain"},"type":"any","value":"d998dfbb-6c0a-46fb-ab91-8c10f644fba7","key":"sessiontrackId"}]}},"response":[{"id":"977ddbfe-5dfe-4e09-8050-93972a3bf276","name":"Destroy a sessiontrack","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2/:sessiontrackId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontracks","v2",":sessiontrackId"],"variable":[{"key":"sessiontrackId","value":"d998dfbb-6c0a-46fb-ab91-8c10f644fba7","description":"Sessiontrack ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:32:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"317"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"13d-WR2eb2rG46Whz36HhC8dbynxoUI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d998dfbb-6c0a-46fb-ab91-8c10f644fba7\",\n    \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e500\",\n    \"name\": \"Beauty Track\",\n    \"description\": \"Recontextualize integrated methodologies\",\n    \"createdAt\": \"2023-06-20T15:28:40.406Z\",\n    \"updatedAt\": \"2023-06-20T15:31:27.919Z\"\n}"}],"_postman_id":"dd64f8c0-dd77-4291-9d42-389a7f3334be"},{"name":"Sessiontracks based on Sessions","id":"6297936c-e6cb-4029-a8c8-d56d72f22dbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2?filter[sessionId][in][]=585acdf7-b83a-4a53-a105-89d103e3f1b5","description":"<p>For M:M connected entities, we can use filter queries from both sides.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the sessiontracks GET endpoint and applying the filter based on the \"sessionId\".</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["sessiontracks","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[sessionId][in][]","value":"585acdf7-b83a-4a53-a105-89d103e3f1b5"}],"variable":[]}},"response":[{"id":"dc3a9f10-500c-4c7a-b931-de80149e219c","name":"Sessiontracks based on Sessions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/sessiontracks/v2?filter[sessionId][in][]=585acdf7-b83a-4a53-a105-89d103e3f1b5","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["sessiontracks","v2"],"query":[{"key":"filter[sessionId][in][]","value":"585acdf7-b83a-4a53-a105-89d103e3f1b5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 15:33:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"410"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"19a-1t+B8wrlBJOTW3EKXSjewUCpQUw\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"a0269c8f-39da-409c-9fd4-dd9e266b5474\",\n            \"eventId\": \"0d68abe7-c878-4f7c-ba0b-cbf9ef81bfa1\",\n            \"producerRecordIdentifier\": \"410564\",\n            \"name\": \"SessionTrack 1\",\n            \"description\": null,\n            \"createdAt\": \"2023-02-27T04:27:02.456Z\",\n            \"updatedAt\": \"2023-02-27T04:27:02.456Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"6297936c-e6cb-4029-a8c8-d56d72f22dbd"}],"id":"9016e34d-17df-439a-a918-320d7ff3f2be","description":"<p>Collection of CRUD operations and options to interact with Session tracks.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Session Track ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the session track record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of session track</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>description associated to the session track</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9016e34d-17df-439a-a918-320d7ff3f2be","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Session-Sessiontrack (v2)","item":[{"name":"List Session-Sessiontrack relationships","id":"4b1be5fb-3959-419e-b63f-0b0cc8b3080b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2","description":"<p>Retrieve a collection of related session and sessiontrack records.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-sessiontrack","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"6e67d8bf-9acd-4cb3-989e-bdc91d79a8a7","name":"List session-sessiontrack relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-sessiontrack","v2"],"query":[{"key":"filter[sessionId][eq]","value":"3c34c8e7-7728-4610-a2be-1dc084d1aa43","description":"List all the session sessiontrack relationships for a specific session Id","disabled":true},{"key":"filter[sessiontrackId][eq]","value":"d32a2eff-ed8e-4039-b45f-3ac374e3f056","description":"List all the session sessiontrack relationships for a specific session Id","disabled":true},{"key":"page","value":"2","description":"List alll the records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:52:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23264"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"5ae0-s8GjOjpjQV/RJ7IAheKH5ClEY0M\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"830a4303-3b3d-42ac-a52b-c9afd1c0b292\",\n            \"sessionId\": \"9d6b24de-4a35-4fa2-b956-c92ec0656b7c\",\n            \"sessiontrackId\": \"fa46a3c8-8599-44a9-b27b-65f78bb0fca3\",\n            \"createdAt\": \"2023-05-31T18:03:42.349Z\",\n            \"updatedAt\": \"2023-05-31T18:03:42.349Z\"\n        },\n        {\n            \"id\": \"c27f2197-a4a3-40bc-aba7-9b6b4e59aae3\",\n            \"sessionId\": \"efdbb25d-2c39-4316-8fa4-6cba9342d21a\",\n            \"sessiontrackId\": \"a0269c8f-39da-409c-9fd4-dd9e266b5474\",\n            \"createdAt\": \"2023-02-27T12:17:25.793Z\",\n            \"updatedAt\": \"2023-02-27T12:17:25.793Z\"\n        },\n        {\n            \"id\": \"d8b95cb3-0286-470c-939d-9ffc6c52c69d\",\n            \"sessionId\": \"6aab9f3e-cdfa-4b45-90fa-53aa931b1165\",\n            \"sessiontrackId\": \"05609d2e-85db-4b28-a74a-09a08d814a8d\",\n            \"createdAt\": \"2023-02-27T12:34:09.747Z\",\n            \"updatedAt\": \"2023-02-27T12:34:09.747Z\"\n        },\n        {\n            \"id\": \"fb22de9c-22f4-410e-b0e1-fe2e44ff379b\",\n            \"sessionId\": \"b417ab6a-3945-4b4c-acca-e6ba4bca6fa9\",\n            \"sessiontrackId\": \"21eaa929-bc67-4446-8acb-f1719039bdd9\",\n            \"createdAt\": \"2023-02-08T13:21:13.356Z\",\n            \"updatedAt\": \"2023-02-08T13:21:13.356Z\"\n        },\n        {\n            \"id\": \"01de0d66-7c60-4ca0-8747-78f1fa404945\",\n            \"sessionId\": \"be3173f6-f616-4c08-b8c8-a2132b835f4f\",\n            \"sessiontrackId\": \"05609d2e-85db-4b28-a74a-09a08d814a8d\",\n            \"createdAt\": \"2023-02-27T12:34:11.036Z\",\n            \"updatedAt\": \"2023-02-27T12:34:11.036Z\"\n        },\n        {\n            \"id\": \"dae837f1-00f5-457e-8180-46c98f6249a4\",\n            \"sessionId\": \"46ef0280-6ae5-4e8c-a2e7-dc5b8f86bbc0\",\n            \"sessiontrackId\": \"ec2dc465-f05e-45ed-9092-eedd8d53e9ab\",\n            \"createdAt\": \"2023-02-09T09:06:49.979Z\",\n            \"updatedAt\": \"2023-02-09T09:06:49.979Z\"\n        },\n        {\n            \"id\": \"e12c3043-b4cf-4e73-9636-0951476384d0\",\n            \"sessionId\": \"b9b3a9e4-526a-488a-9edb-e2beb22469b6\",\n            \"sessiontrackId\": \"fc5703ad-beda-4376-8c46-b6cbd2479433\",\n            \"createdAt\": \"2023-04-10T16:49:35.286Z\",\n            \"updatedAt\": \"2023-04-10T16:49:35.286Z\"\n        },\n        {\n            \"id\": \"884dd17a-bacc-468d-ad20-d380f15923b7\",\n            \"sessionId\": \"77d8d43c-4a8e-45f2-9d28-f26b479194b5\",\n            \"sessiontrackId\": \"9edd7fc7-3fd3-4aa3-9982-d7bb430f07eb\",\n            \"createdAt\": \"2023-04-12T16:18:20.668Z\",\n            \"updatedAt\": \"2023-04-12T16:18:20.668Z\"\n        },\n        {\n            \"id\": \"5c3a2d4e-921b-4976-bc72-6284d280f79b\",\n            \"sessionId\": \"52b55076-ec3d-4df5-83a3-331a56f38d44\",\n            \"sessiontrackId\": \"991883a7-7f07-48a0-83aa-cdb6784ee2cc\",\n            \"createdAt\": \"2023-02-08T15:21:23.666Z\",\n            \"updatedAt\": \"2023-02-08T15:21:23.666Z\"\n        },\n        {\n            \"id\": \"baf347ad-bc0a-4904-9a6f-fee8ace46d27\",\n            \"sessionId\": \"17e5af81-d2ef-46db-9e80-91d1c002e258\",\n            \"sessiontrackId\": \"b320d640-57bc-4b0c-a566-38c851798970\",\n            \"createdAt\": \"2023-04-07T17:05:00.071Z\",\n            \"updatedAt\": \"2023-04-07T17:05:00.071Z\"\n        },\n        {\n            \"id\": \"e2113c9e-450f-4db6-8b2a-2804d297bc2a\",\n            \"sessionId\": \"44d366ad-f7cb-47e0-bfb1-45898dfe6ea6\",\n            \"sessiontrackId\": \"21eaa929-bc67-4446-8acb-f1719039bdd9\",\n            \"createdAt\": \"2023-02-08T11:37:09.580Z\",\n            \"updatedAt\": \"2023-02-08T11:37:09.580Z\"\n        },\n        {\n            \"id\": \"3f165c5c-9b78-4a52-90db-d573c63c98f4\",\n            \"sessionId\": \"49880e26-a8de-484f-9c73-b271ebe9f651\",\n            \"sessiontrackId\": \"1cb2c3d3-d735-4939-a330-525095b6116b\",\n            \"createdAt\": \"2023-06-06T17:20:49.367Z\",\n            \"updatedAt\": \"2023-06-06T17:20:49.367Z\"\n        },\n        {\n            \"id\": \"00be065a-4ec7-4686-b796-72c996cc4e41\",\n            \"sessionId\": \"cd88a79a-99bb-4828-9d77-da74b49dfcce\",\n            \"sessiontrackId\": \"5439f721-c8e3-432f-86aa-9812549fd8b8\",\n            \"createdAt\": \"2023-02-09T11:04:50.560Z\",\n            \"updatedAt\": \"2023-02-09T11:04:50.560Z\"\n        },\n        {\n            \"id\": \"daa0d461-06c5-4399-8e76-e0f408afda1e\",\n            \"sessionId\": \"5da13e2a-a6e3-40c7-ae07-15c1152de4b9\",\n            \"sessiontrackId\": \"db55577a-d7cc-443f-b164-58d095af406b\",\n            \"createdAt\": \"2023-02-24T07:11:00.686Z\",\n            \"updatedAt\": \"2023-02-24T07:11:00.686Z\"\n        },\n        {\n            \"id\": \"44ba630e-cd29-4628-9713-c6130e7785de\",\n            \"sessionId\": \"04b648e7-b5fd-4fc8-871d-64a984eaefb7\",\n            \"sessiontrackId\": \"db55577a-d7cc-443f-b164-58d095af406b\",\n            \"createdAt\": \"2023-02-24T07:11:01.786Z\",\n            \"updatedAt\": \"2023-02-24T07:11:01.786Z\"\n        },\n        {\n            \"id\": \"86344e2c-bd49-4d71-a7b0-3c049ad8ed91\",\n            \"sessionId\": \"f8bcdbff-260b-4797-9cb2-f31188a197bc\",\n            \"sessiontrackId\": \"3daf44ae-642b-42a2-9ca1-6d8f79acd69d\",\n            \"createdAt\": \"2023-02-14T14:21:07.670Z\",\n            \"updatedAt\": \"2023-02-14T14:21:07.670Z\"\n        },\n        {\n            \"id\": \"36d4d8d0-e732-45ee-8f81-536710aedc55\",\n            \"sessionId\": \"a36b7e7e-bd49-4744-92b4-c13a0fed6a40\",\n            \"sessiontrackId\": \"db55577a-d7cc-443f-b164-58d095af406b\",\n            \"createdAt\": \"2023-02-24T07:11:02.162Z\",\n            \"updatedAt\": \"2023-02-24T07:11:02.162Z\"\n        },\n        {\n            \"id\": \"9ece2429-d2f3-4e08-9fe2-d7953961f7f9\",\n            \"sessionId\": \"4b2f7cb1-2192-4964-b739-ee38887f5dc7\",\n            \"sessiontrackId\": \"db55577a-d7cc-443f-b164-58d095af406b\",\n            \"createdAt\": \"2023-02-24T07:11:03.175Z\",\n            \"updatedAt\": \"2023-02-24T07:11:03.175Z\"\n        },\n        {\n            \"id\": \"aa647e51-6759-4979-b839-1d0634c3c594\",\n            \"sessionId\": \"33fc1553-73d5-4cf8-a38c-a8b979ccd0c4\",\n            \"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\",\n            \"createdAt\": \"2023-02-24T15:34:42.855Z\",\n            \"updatedAt\": \"2023-02-24T15:34:42.855Z\"\n        },\n        {\n            \"id\": \"4f773d5d-41de-4c3c-99d8-01e128167630\",\n            \"sessionId\": \"9f014c84-a993-44f6-b38e-fd27abff228e\",\n            \"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\",\n            \"createdAt\": \"2023-02-24T15:34:43.239Z\",\n            \"updatedAt\": \"2023-02-24T15:34:43.239Z\"\n        },\n        {\n            \"id\": \"8fbe802c-1ad0-4a70-8aea-074d729c9841\",\n            \"sessionId\": \"ca73f490-30f6-4fcf-ba88-aa780e4ef8a1\",\n            \"sessiontrackId\": \"69cd390d-6d3a-4094-8450-72970d2befd1\",\n            \"createdAt\": \"2023-03-14T02:21:31.373Z\",\n            \"updatedAt\": \"2023-03-14T02:21:31.373Z\"\n        },\n        {\n            \"id\": \"e195adfa-fb56-460a-83c6-416b71c28846\",\n            \"sessionId\": \"327d19fc-006e-43db-b9b0-5ebc23588315\",\n            \"sessiontrackId\": \"029cdec3-23f9-4baa-a94a-5e58f78ad429\",\n            \"createdAt\": \"2023-03-03T18:06:29.850Z\",\n            \"updatedAt\": \"2023-03-03T18:06:29.850Z\"\n        },\n        {\n            \"id\": \"c5277c7d-4e75-4e8e-839c-4e813416ab52\",\n            \"sessionId\": \"7953685f-0aca-4016-8b67-e696c1ef740c\",\n            \"sessiontrackId\": \"24eed009-9f76-4222-a829-bf7fdb6ed93f\",\n            \"createdAt\": \"2023-03-03T18:06:30.268Z\",\n            \"updatedAt\": \"2023-03-03T18:06:30.268Z\"\n        },\n        {\n            \"id\": \"2e6a577f-ffcb-4ec6-8dfb-c37429979141\",\n            \"sessionId\": \"f2411b9f-f78c-4406-8372-658f6c998907\",\n            \"sessiontrackId\": \"d340894c-65d2-40c0-b022-70e5f15acd7e\",\n            \"createdAt\": \"2023-03-08T13:32:55.598Z\",\n            \"updatedAt\": \"2023-03-08T13:32:55.598Z\"\n        },\n        {\n            \"id\": \"eb015f89-49c3-4ac3-97c9-a88d9e1d0cc6\",\n            \"sessionId\": \"9f70ce5f-4fb3-4aa2-bfa8-929b738e8578\",\n            \"sessiontrackId\": \"015838bf-02b0-40d0-9640-dc9fb86a7dad\",\n            \"createdAt\": \"2023-03-14T02:21:32.004Z\",\n            \"updatedAt\": \"2023-03-14T02:21:32.004Z\"\n        },\n        {\n            \"id\": \"99c39055-35c0-4761-9e79-c0d6548db7f1\",\n            \"sessionId\": \"ed33dd2d-1fa6-41b3-bb31-3754c28b7d9d\",\n            \"sessiontrackId\": \"633dbfe4-e512-4c2f-a92d-093bad8c326e\",\n            \"createdAt\": \"2023-06-06T17:25:58.791Z\",\n            \"updatedAt\": \"2023-06-06T17:25:58.791Z\"\n        },\n        {\n            \"id\": \"09152204-ba60-4d99-a229-921d65ee0f2b\",\n            \"sessionId\": \"a1e6e1eb-22a6-482a-8154-bf5631dcfef0\",\n            \"sessiontrackId\": \"7ee833c6-9648-42b3-b30c-1ff437dcdfa8\",\n            \"createdAt\": \"2023-06-06T17:26:00.746Z\",\n            \"updatedAt\": \"2023-06-06T17:26:00.746Z\"\n        },\n        {\n            \"id\": \"4b77baf0-fa62-42d8-b033-fe926532263d\",\n            \"sessionId\": \"1321adab-6c05-4a41-bbf6-2182d275b66a\",\n            \"sessiontrackId\": \"9bb41e87-986c-4ae3-b37b-df87744ed2b7\",\n            \"createdAt\": \"2023-06-06T17:26:01.332Z\",\n            \"updatedAt\": \"2023-06-06T17:26:01.332Z\"\n        },\n        {\n            \"id\": \"5d77b39a-d625-4af6-90e7-78c83203f992\",\n            \"sessionId\": \"2a7789a2-518d-4147-9600-6db6fd45f411\",\n            \"sessiontrackId\": \"7bcf0cdb-14cb-4939-91a4-c245a4ca4204\",\n            \"createdAt\": \"2023-06-06T17:33:16.168Z\",\n            \"updatedAt\": \"2023-06-06T17:33:16.168Z\"\n        },\n        {\n            \"id\": \"efef599a-881d-49b3-87b7-24899f397483\",\n            \"sessionId\": \"bdfdab18-c85b-461c-9a22-1d0a8e6647ff\",\n            \"sessiontrackId\": \"34910d34-725b-43cb-9e59-f09aa9d51aa0\",\n            \"createdAt\": \"2023-04-28T10:48:20.034Z\",\n            \"updatedAt\": \"2023-04-28T10:48:20.034Z\"\n        },\n        {\n            \"id\": \"39d4b759-ef35-4980-aa0f-812c92e17808\",\n            \"sessionId\": \"d810e26d-736f-4190-b044-d2c37effbca2\",\n            \"sessiontrackId\": \"1436d643-0ac5-4365-be9d-7efbe4bdfbee\",\n            \"createdAt\": \"2023-05-09T18:52:40.702Z\",\n            \"updatedAt\": \"2023-05-09T18:52:40.702Z\"\n        },\n        {\n            \"id\": \"f6b410e3-04b7-4177-ac5b-d8c4e40381bd\",\n            \"sessionId\": \"9e2ad5c6-5e31-48c2-b8fe-1431cb0044e9\",\n            \"sessiontrackId\": \"c4f69fb8-f845-4cae-83d9-fc0768df0e05\",\n            \"createdAt\": \"2023-06-06T17:33:16.720Z\",\n            \"updatedAt\": \"2023-06-06T17:33:16.720Z\"\n        },\n        {\n            \"id\": \"2284ea2c-db79-4e06-bc44-adde4174320d\",\n            \"sessionId\": \"2bc29601-fe18-490b-af30-0cae0f5576fe\",\n            \"sessiontrackId\": \"c4f69fb8-f845-4cae-83d9-fc0768df0e05\",\n            \"createdAt\": \"2023-06-06T17:33:17.255Z\",\n            \"updatedAt\": \"2023-06-06T17:33:17.255Z\"\n        },\n        {\n            \"id\": \"8dbc0801-8367-436e-be7f-18716fe8b7cf\",\n            \"sessionId\": \"c4ded4e9-25e2-44cf-a4d8-85392b37687f\",\n            \"sessiontrackId\": \"0cdf7ca9-2fb4-4e5e-b9d4-4fdd2d21d4c9\",\n            \"createdAt\": \"2023-06-06T18:58:32.806Z\",\n            \"updatedAt\": \"2023-06-06T18:58:32.806Z\"\n        },\n        {\n            \"id\": \"129f2760-b2bc-4040-af95-974497031a85\",\n            \"sessionId\": \"8fd4ebfd-1dec-44f6-8ad4-df8d13bf0029\",\n            \"sessiontrackId\": \"45b5a19e-6c67-4934-af46-3204fd759050\",\n            \"createdAt\": \"2023-06-06T18:58:34.141Z\",\n            \"updatedAt\": \"2023-06-06T18:58:34.141Z\"\n        },\n        {\n            \"id\": \"aaf7218e-5e96-4072-85de-46319101074f\",\n            \"sessionId\": \"e8a6c9d1-bbae-4dc3-8dc2-80858641aac7\",\n            \"sessiontrackId\": \"03bf8fd8-7ca2-405d-8f92-aaa87852510d\",\n            \"createdAt\": \"2023-06-06T18:58:34.820Z\",\n            \"updatedAt\": \"2023-06-06T18:58:34.820Z\"\n        },\n        {\n            \"id\": \"2e05187f-cb35-4655-ba6b-aa8e73802348\",\n            \"sessionId\": \"5daf246c-67f5-419b-a3aa-734825e39192\",\n            \"sessiontrackId\": \"02cd0677-3abf-4939-b5ed-667734eb240a\",\n            \"createdAt\": \"2023-06-06T19:08:08.121Z\",\n            \"updatedAt\": \"2023-06-06T19:08:08.121Z\"\n        },\n        {\n            \"id\": \"ec166f6f-18a1-45a4-b757-d1aac61b1f8a\",\n            \"sessionId\": \"452a7418-1913-4db6-b38d-5b6a4b95f5ab\",\n            \"sessiontrackId\": \"6ab7b425-465b-4c0c-8e7c-5147096506e5\",\n            \"createdAt\": \"2023-06-06T21:07:27.871Z\",\n            \"updatedAt\": \"2023-06-06T21:07:27.871Z\"\n        },\n        {\n            \"id\": \"217bc62b-9654-412c-85da-11280e44e3bb\",\n            \"sessionId\": \"a7562de8-989e-4795-aebf-67c1ac7f8733\",\n            \"sessiontrackId\": \"c605700c-0549-469e-9941-77319e0c0975\",\n            \"createdAt\": \"2023-06-06T21:07:30.705Z\",\n            \"updatedAt\": \"2023-06-06T21:07:30.705Z\"\n        },\n        {\n            \"id\": \"f583033c-7f49-4c22-8f22-7d07c54dab61\",\n            \"sessionId\": \"b46723dc-d1fb-4ab6-b22d-6245e9b9dca0\",\n            \"sessiontrackId\": \"ac8ad7da-d987-44ff-8f40-f42b0fe39fbd\",\n            \"createdAt\": \"2023-06-07T07:52:07.408Z\",\n            \"updatedAt\": \"2023-06-07T07:52:07.408Z\"\n        },\n        {\n            \"id\": \"66aa04a5-83fd-4f27-8493-835310519272\",\n            \"sessionId\": \"6621365c-fcb2-4633-bedc-9b45e9f56d39\",\n            \"sessiontrackId\": \"b4376315-39d0-4937-9d61-ab549980129f\",\n            \"createdAt\": \"2023-06-08T07:36:04.981Z\",\n            \"updatedAt\": \"2023-06-08T07:36:04.981Z\"\n        },\n        {\n            \"id\": \"ef522e58-d779-4f46-9055-0b7773e8b723\",\n            \"sessionId\": \"4e572dff-4c17-4fba-8b80-2cb978f64546\",\n            \"sessiontrackId\": \"9f13e3b0-8a16-492e-b61b-19eb01917e0c\",\n            \"createdAt\": \"2023-06-07T16:11:47.506Z\",\n            \"updatedAt\": \"2023-06-07T16:11:47.506Z\"\n        },\n        {\n            \"id\": \"d850442e-e186-4a90-a9b1-9c05137d46e6\",\n            \"sessionId\": \"3f44bcdb-1c37-4938-a072-d50cf4a53e56\",\n            \"sessiontrackId\": \"6a472fbb-37c6-4ba8-9e0f-a21b9b280a71\",\n            \"createdAt\": \"2023-06-07T16:12:13.032Z\",\n            \"updatedAt\": \"2023-06-07T16:12:13.032Z\"\n        },\n        {\n            \"id\": \"d07781cc-d0fc-46fa-9ccc-f1fd49e80517\",\n            \"sessionId\": \"05551897-ed4b-4729-a409-a558b4c31145\",\n            \"sessiontrackId\": \"6a472fbb-37c6-4ba8-9e0f-a21b9b280a71\",\n            \"createdAt\": \"2023-06-07T16:12:16.163Z\",\n            \"updatedAt\": \"2023-06-07T16:12:16.163Z\"\n        },\n        {\n            \"id\": \"5ceecdd0-aff6-4984-bb49-dfc63125d7c4\",\n            \"sessionId\": \"8b5e457f-affd-4aa3-960b-969a0c16e217\",\n            \"sessiontrackId\": \"33cf13d8-2b63-4252-bbcf-e0fdf4d4926f\",\n            \"createdAt\": \"2023-06-07T16:12:17.627Z\",\n            \"updatedAt\": \"2023-06-07T16:12:17.627Z\"\n        },\n        {\n            \"id\": \"9b45ee52-86ea-47c5-b31c-73e3106ddcb1\",\n            \"sessionId\": \"7485cde4-1423-4918-8956-96de993d5169\",\n            \"sessiontrackId\": \"33cf13d8-2b63-4252-bbcf-e0fdf4d4926f\",\n            \"createdAt\": \"2023-06-07T16:12:30.754Z\",\n            \"updatedAt\": \"2023-06-07T16:12:30.754Z\"\n        },\n        {\n            \"id\": \"0733b172-28d1-43db-8f6d-aff28dd5e07e\",\n            \"sessionId\": \"20d70ac2-1156-4110-85c1-71ec7a57cf24\",\n            \"sessiontrackId\": \"6a472fbb-37c6-4ba8-9e0f-a21b9b280a71\",\n            \"createdAt\": \"2023-06-07T16:12:42.253Z\",\n            \"updatedAt\": \"2023-06-07T16:12:42.253Z\"\n        },\n        {\n            \"id\": \"eba9f349-bd54-4e7f-8ef2-b5477c54490c\",\n            \"sessionId\": \"8a657585-f42c-4fea-b83c-2429db7cd881\",\n            \"sessiontrackId\": \"14c53324-e845-4e2c-a04f-cb35edfc6e0a\",\n            \"createdAt\": \"2023-06-07T16:12:58.583Z\",\n            \"updatedAt\": \"2023-06-07T16:12:58.583Z\"\n        },\n        {\n            \"id\": \"1cd431cd-f7c3-4896-a66f-64fc504c1674\",\n            \"sessionId\": \"21cd04a1-8e1e-4be2-9bf5-0985cf6476cd\",\n            \"sessiontrackId\": \"7c67fd51-1dfa-4237-8b6d-671583f2f8f6\",\n            \"createdAt\": \"2023-06-07T16:13:24.673Z\",\n            \"updatedAt\": \"2023-06-07T16:13:24.673Z\"\n        },\n        {\n            \"id\": \"99f91e83-be18-4077-ae65-1e46e8abef93\",\n            \"sessionId\": \"6453105d-d734-4c54-b08a-381f82ddacf9\",\n            \"sessiontrackId\": \"d3c19aa7-43b6-42a8-bc99-4605dcf065b3\",\n            \"createdAt\": \"2022-12-12T19:45:47.425Z\",\n            \"updatedAt\": \"2022-12-12T19:45:47.425Z\"\n        },\n        {\n            \"id\": \"98ed6680-0735-449c-b0ea-574dba6cc775\",\n            \"sessionId\": \"88fd0928-5f2c-4117-ac39-f42bea9a814f\",\n            \"sessiontrackId\": \"6a472fbb-37c6-4ba8-9e0f-a21b9b280a71\",\n            \"createdAt\": \"2023-06-07T16:13:50.933Z\",\n            \"updatedAt\": \"2023-06-07T16:13:50.933Z\"\n        },\n        {\n            \"id\": \"83fe152b-afe3-4396-9c8d-44ecf2a183d8\",\n            \"sessionId\": \"80ce20d7-1652-42a0-8795-332ca6056d80\",\n            \"sessiontrackId\": \"14c53324-e845-4e2c-a04f-cb35edfc6e0a\",\n            \"createdAt\": \"2023-06-07T16:14:04.937Z\",\n            \"updatedAt\": \"2023-06-07T16:14:04.937Z\"\n        },\n        {\n            \"id\": \"546ff5b9-bf6f-4a69-b52f-065212232921\",\n            \"sessionId\": \"ee9cc555-4710-40e8-b0b2-86731bc94144\",\n            \"sessiontrackId\": \"33cf13d8-2b63-4252-bbcf-e0fdf4d4926f\",\n            \"createdAt\": \"2023-06-07T16:14:10.082Z\",\n            \"updatedAt\": \"2023-06-07T16:14:10.082Z\"\n        },\n        {\n            \"id\": \"d4391e73-b48b-46d3-b751-7e05d1f5d23c\",\n            \"sessionId\": \"91bf6140-0a68-4e58-bcd8-cf1b99bb333f\",\n            \"sessiontrackId\": \"6a472fbb-37c6-4ba8-9e0f-a21b9b280a71\",\n            \"createdAt\": \"2023-06-07T16:14:12.650Z\",\n            \"updatedAt\": \"2023-06-07T16:14:12.650Z\"\n        },\n        {\n            \"id\": \"b42df336-1fb6-41c5-8529-55c42b3ed3f3\",\n            \"sessionId\": \"446833d4-7614-4e12-a425-079ec756d2a7\",\n            \"sessiontrackId\": \"14c53324-e845-4e2c-a04f-cb35edfc6e0a\",\n            \"createdAt\": \"2023-06-07T16:14:15.686Z\",\n            \"updatedAt\": \"2023-06-07T16:14:15.686Z\"\n        },\n        {\n            \"id\": \"a956b9f7-7d43-4f8f-a927-9fcd721c4abb\",\n            \"sessionId\": \"f757778b-9c45-485c-b769-6cd5c3ab3514\",\n            \"sessiontrackId\": \"9f13e3b0-8a16-492e-b61b-19eb01917e0c\",\n            \"createdAt\": \"2023-06-07T16:14:18.115Z\",\n            \"updatedAt\": \"2023-06-07T16:14:18.115Z\"\n        },\n        {\n            \"id\": \"27c43532-07ba-4893-a871-55ea0edf0882\",\n            \"sessionId\": \"795107e1-9b2c-4a64-bc40-93b00864aa56\",\n            \"sessiontrackId\": \"33cf13d8-2b63-4252-bbcf-e0fdf4d4926f\",\n            \"createdAt\": \"2023-06-07T16:14:25.235Z\",\n            \"updatedAt\": \"2023-06-07T16:14:25.235Z\"\n        },\n        {\n            \"id\": \"34fbeaec-a6ab-462e-9ce1-f07d28587e65\",\n            \"sessionId\": \"1e3126e1-20bb-451e-9c5d-fd40672cf57f\",\n            \"sessiontrackId\": \"14c53324-e845-4e2c-a04f-cb35edfc6e0a\",\n            \"createdAt\": \"2023-06-07T16:14:27.272Z\",\n            \"updatedAt\": \"2023-06-07T16:14:27.272Z\"\n        },\n        {\n            \"id\": \"0169d43d-f1c5-4115-81dc-02d282edd8f1\",\n            \"sessionId\": \"257c5d0a-830f-49c1-8e0d-4e4e0c681e42\",\n            \"sessiontrackId\": \"933fdcd4-7043-40fd-8a60-511c79c1a986\",\n            \"createdAt\": \"2023-06-07T16:14:28.247Z\",\n            \"updatedAt\": \"2023-06-07T16:14:28.247Z\"\n        },\n        {\n            \"id\": \"ede607ee-98f7-44d7-9242-fcde5f69fea5\",\n            \"sessionId\": \"af238fd6-201d-49a3-84e4-8801758c7e9a\",\n            \"sessiontrackId\": \"9f13e3b0-8a16-492e-b61b-19eb01917e0c\",\n            \"createdAt\": \"2023-06-07T16:14:30.664Z\",\n            \"updatedAt\": \"2023-06-07T16:14:30.664Z\"\n        },\n        {\n            \"id\": \"8edebf71-44f4-4661-8f61-b13435c93d6d\",\n            \"sessionId\": \"d32d1510-540d-4631-aea5-2b88b9641037\",\n            \"sessiontrackId\": \"9f13e3b0-8a16-492e-b61b-19eb01917e0c\",\n            \"createdAt\": \"2023-06-07T16:14:33.167Z\",\n            \"updatedAt\": \"2023-06-07T16:14:33.167Z\"\n        },\n        {\n            \"id\": \"c09a6d41-18d6-4795-891b-eb9394d4c854\",\n            \"sessionId\": \"a45ea49d-6cd8-4a4b-9ab5-599369375a38\",\n            \"sessiontrackId\": \"6a472fbb-37c6-4ba8-9e0f-a21b9b280a71\",\n            \"createdAt\": \"2023-06-07T16:14:37.925Z\",\n            \"updatedAt\": \"2023-06-07T16:14:37.925Z\"\n        },\n        {\n            \"id\": \"2d943acd-1b97-44c7-88fa-e3acda8dbfa9\",\n            \"sessionId\": \"67df5e22-72ee-44c2-8b98-814a47a7b305\",\n            \"sessiontrackId\": \"33cf13d8-2b63-4252-bbcf-e0fdf4d4926f\",\n            \"createdAt\": \"2023-06-07T16:14:39.424Z\",\n            \"updatedAt\": \"2023-06-07T16:14:39.424Z\"\n        },\n        {\n            \"id\": \"c0256b52-a19d-4a31-83c5-902c591ce5b7\",\n            \"sessionId\": \"2a383f9a-348b-4f0b-996e-d08247f90a7e\",\n            \"sessiontrackId\": \"9f13e3b0-8a16-492e-b61b-19eb01917e0c\",\n            \"createdAt\": \"2023-06-07T16:14:45.205Z\",\n            \"updatedAt\": \"2023-06-07T16:14:45.205Z\"\n        },\n        {\n            \"id\": \"d3cbdecd-6202-442e-a391-ae226866b54d\",\n            \"sessionId\": \"8a516d7c-58fa-4cd2-bdda-c8ec7b3d9277\",\n            \"sessiontrackId\": \"c8c7e461-4fad-4097-96ee-865cf42df348\",\n            \"createdAt\": \"2022-10-21T20:56:19.701Z\",\n            \"updatedAt\": \"2022-10-21T20:56:19.701Z\"\n        },\n        {\n            \"id\": \"c5399ffd-6882-4957-93db-ecff2a8ea667\",\n            \"sessionId\": \"96d1c8a7-67a4-4d34-a13b-9ae87307d9f9\",\n            \"sessiontrackId\": \"5bfddd10-2415-4d61-897f-4b0d7c2767fd\",\n            \"createdAt\": \"2022-10-21T20:57:03.317Z\",\n            \"updatedAt\": \"2022-10-21T20:57:03.317Z\"\n        },\n        {\n            \"id\": \"c8a5bf95-a95f-47b3-95ca-99185dd243ee\",\n            \"sessionId\": \"c5b0e855-e616-4919-8e18-5be704f54333\",\n            \"sessiontrackId\": \"33cf13d8-2b63-4252-bbcf-e0fdf4d4926f\",\n            \"createdAt\": \"2023-06-07T16:14:53.098Z\",\n            \"updatedAt\": \"2023-06-07T16:14:53.098Z\"\n        },\n        {\n            \"id\": \"c5ffff74-6ea2-4999-9fa2-90dfbe358406\",\n            \"sessionId\": \"23a42862-d49d-42b0-b38a-271c42268748\",\n            \"sessiontrackId\": \"33cf13d8-2b63-4252-bbcf-e0fdf4d4926f\",\n            \"createdAt\": \"2023-06-07T16:15:07.254Z\",\n            \"updatedAt\": \"2023-06-07T16:15:07.254Z\"\n        },\n        {\n            \"id\": \"ec4add52-e616-422e-9ef7-c37e7d6a71f3\",\n            \"sessionId\": \"1b7802cb-b353-4c46-941c-588e95f93f9f\",\n            \"sessiontrackId\": \"6a472fbb-37c6-4ba8-9e0f-a21b9b280a71\",\n            \"createdAt\": \"2023-06-07T16:15:13.554Z\",\n            \"updatedAt\": \"2023-06-07T16:15:13.554Z\"\n        },\n        {\n            \"id\": \"ca1d567b-ecc4-4ca2-83bf-b528c2142952\",\n            \"sessionId\": \"5e869d59-5b1b-475f-868a-dfa1d1fecce1\",\n            \"sessiontrackId\": \"cd17f5bc-dbde-4991-b656-03534800b5dd\",\n            \"createdAt\": \"2023-06-08T06:51:26.865Z\",\n            \"updatedAt\": \"2023-06-08T06:51:26.865Z\"\n        },\n        {\n            \"id\": \"05f15c55-9c9c-4e17-981f-a53b4a0a1220\",\n            \"sessionId\": \"61ed96e3-340c-43b0-ab92-953b52d51183\",\n            \"sessiontrackId\": \"5ee41a05-def5-4768-8c24-03e067feee40\",\n            \"createdAt\": \"2022-10-21T20:57:27.965Z\",\n            \"updatedAt\": \"2022-10-21T20:57:27.965Z\"\n        },\n        {\n            \"id\": \"2da1ae0e-5c43-4461-981b-52dbcaa1b831\",\n            \"sessionId\": \"8c97ecfa-0d96-40aa-bf4f-e53915b259ca\",\n            \"sessiontrackId\": \"ac6ec9a7-3ffb-4d2f-9f3c-258ed0d2a87e\",\n            \"createdAt\": \"2022-10-21T20:57:34.689Z\",\n            \"updatedAt\": \"2022-10-21T20:57:34.689Z\"\n        },\n        {\n            \"id\": \"86e92429-1fe0-4a2a-a187-102f44827125\",\n            \"sessionId\": \"852b62ff-61dc-40ec-b1a7-2c2933a67b00\",\n            \"sessiontrackId\": \"694156eb-d696-47bb-bc30-9fce124fcff3\",\n            \"createdAt\": \"2022-10-21T20:57:50.059Z\",\n            \"updatedAt\": \"2022-10-21T20:57:50.059Z\"\n        },\n        {\n            \"id\": \"3134dc8a-58d8-4ec6-b2c3-062e0273ff10\",\n            \"sessionId\": \"cba7a1e1-c0c0-4cf8-a5bb-80601c0f2f05\",\n            \"sessiontrackId\": \"6d43517c-d7f5-42d9-a943-75bfebcfa58b\",\n            \"createdAt\": \"2022-10-21T20:58:04.730Z\",\n            \"updatedAt\": \"2022-10-21T20:58:04.730Z\"\n        },\n        {\n            \"id\": \"2b846d34-e3a3-4a1c-bc17-3d1c1a082514\",\n            \"sessionId\": \"e385244e-506d-4860-b94b-617d03bf0643\",\n            \"sessiontrackId\": \"cd17f5bc-dbde-4991-b656-03534800b5dd\",\n            \"createdAt\": \"2023-06-08T06:51:29.825Z\",\n            \"updatedAt\": \"2023-06-08T06:51:29.825Z\"\n        },\n        {\n            \"id\": \"34ee4654-2ef9-4c3a-8f75-19964521c01d\",\n            \"sessionId\": \"bae6d1b2-2bc6-46cd-8f87-fe7970a6476e\",\n            \"sessiontrackId\": \"49758778-9dee-42d9-8098-fe34c33aaf7f\",\n            \"createdAt\": \"2023-06-08T06:51:31.242Z\",\n            \"updatedAt\": \"2023-06-08T06:51:31.242Z\"\n        },\n        {\n            \"id\": \"1a2f3a89-58f7-4c80-a76a-2ea9ab70ec96\",\n            \"sessionId\": \"0e4c46fa-482e-4e8d-8c58-c87bf58cdaf0\",\n            \"sessiontrackId\": \"058b5b80-7055-4566-886a-a5fb36e42202\",\n            \"createdAt\": \"2022-10-21T20:58:18.209Z\",\n            \"updatedAt\": \"2022-10-21T20:58:18.209Z\"\n        },\n        {\n            \"id\": \"fbaf69e7-1112-4bd2-bc0a-db8118eee9ae\",\n            \"sessionId\": \"178efc67-5d8e-43a6-b942-78d9db96602f\",\n            \"sessiontrackId\": \"a1083fe6-6360-45d2-a881-bd6f9042a3d3\",\n            \"createdAt\": \"2022-10-21T20:58:32.995Z\",\n            \"updatedAt\": \"2022-10-21T20:58:32.995Z\"\n        },\n        {\n            \"id\": \"0165aadc-527e-4941-9480-58c1a575c10b\",\n            \"sessionId\": \"748a575f-40a8-4988-9ca3-ae6a3c1c0d3f\",\n            \"sessiontrackId\": \"7ce1f25a-07c9-4c44-b2db-c4f33ff9bfda\",\n            \"createdAt\": \"2022-10-21T20:58:39.448Z\",\n            \"updatedAt\": \"2022-10-21T20:58:39.448Z\"\n        },\n        {\n            \"id\": \"70771db7-6570-4a73-9ef5-b6003d2a0f74\",\n            \"sessionId\": \"be622597-c391-422d-867b-7bd7dc382a74\",\n            \"sessiontrackId\": \"71ca0d3d-f490-4e4f-9bc6-39f64dd6d237\",\n            \"createdAt\": \"2022-10-21T20:58:46.347Z\",\n            \"updatedAt\": \"2022-10-21T20:58:46.347Z\"\n        },\n        {\n            \"id\": \"63823eea-9ca3-41e7-9d70-af9b7ac5697d\",\n            \"sessionId\": \"e1a2537e-f661-4b40-9557-34fb0c312997\",\n            \"sessiontrackId\": \"57200591-07b6-4b74-9679-bc4df347ccf1\",\n            \"createdAt\": \"2022-10-21T20:58:57.758Z\",\n            \"updatedAt\": \"2022-10-21T20:58:57.758Z\"\n        },\n        {\n            \"id\": \"5bd3ba52-3137-487f-95b8-e458f52af83d\",\n            \"sessionId\": \"0c51c30c-bdd7-4221-9946-cbf43d494738\",\n            \"sessiontrackId\": \"e650d137-dced-4b6f-a544-9ef88dc30aa6\",\n            \"createdAt\": \"2022-10-21T20:59:05.040Z\",\n            \"updatedAt\": \"2022-10-21T20:59:05.040Z\"\n        },\n        {\n            \"id\": \"b96c11ae-2141-4094-9dcd-244c884faa62\",\n            \"sessionId\": \"a75e78df-247f-446d-be15-0cfe671f5c19\",\n            \"sessiontrackId\": \"7366525b-685e-4a65-94ee-8970cc9cfcaf\",\n            \"createdAt\": \"2022-10-21T20:59:12.978Z\",\n            \"updatedAt\": \"2022-10-21T20:59:12.978Z\"\n        },\n        {\n            \"id\": \"2720d177-3145-40f6-9d0d-e55095e6b1c2\",\n            \"sessionId\": \"b38924dc-2d94-4292-8c43-c93444d6e8f0\",\n            \"sessiontrackId\": \"765b3a52-fc7f-4c9b-a153-f73834e9072d\",\n            \"createdAt\": \"2022-10-21T20:59:32.604Z\",\n            \"updatedAt\": \"2022-10-21T20:59:32.604Z\"\n        },\n        {\n            \"id\": \"2a10aa0a-2aa4-4f29-9b6a-74f6efc40264\",\n            \"sessionId\": \"51e01554-cbb1-4702-b8ce-92aae55c22e2\",\n            \"sessiontrackId\": \"41461478-f103-4526-9e43-42e8b804ddae\",\n            \"createdAt\": \"2022-10-21T20:59:49.328Z\",\n            \"updatedAt\": \"2022-10-21T20:59:49.328Z\"\n        },\n        {\n            \"id\": \"bf8969d9-d319-4bd8-a964-a2987b3aa887\",\n            \"sessionId\": \"3f4dcc2c-57e5-47d3-9966-b4b0b90e861f\",\n            \"sessiontrackId\": \"918e82b3-250d-49a8-af81-5a2d7172a230\",\n            \"createdAt\": \"2022-10-21T21:00:08.588Z\",\n            \"updatedAt\": \"2022-10-21T21:00:08.588Z\"\n        },\n        {\n            \"id\": \"b09f7e0f-be78-4027-b659-3e2c219f2115\",\n            \"sessionId\": \"560b35f2-764a-4d3a-9232-f3764d0d0fbf\",\n            \"sessiontrackId\": \"ecbc7508-1801-492e-a2bc-dd8349e0d475\",\n            \"createdAt\": \"2023-02-28T11:02:57.272Z\",\n            \"updatedAt\": \"2023-02-28T11:02:57.272Z\"\n        },\n        {\n            \"id\": \"ff27dbaf-bf12-4254-8323-45ecc317cee8\",\n            \"sessionId\": \"4afef046-9330-44bf-b0a6-db5502710c39\",\n            \"sessiontrackId\": \"5439f721-c8e3-432f-86aa-9812549fd8b8\",\n            \"createdAt\": \"2023-02-09T11:04:50.613Z\",\n            \"updatedAt\": \"2023-02-09T11:04:50.613Z\"\n        },\n        {\n            \"id\": \"cc6ea042-3051-4279-886b-86a925803637\",\n            \"sessionId\": \"7cd1df57-f0ac-43bc-a830-f5a8babbf81e\",\n            \"sessiontrackId\": \"05daa6ee-b5fa-4b84-bb74-6644ab34c1ef\",\n            \"createdAt\": \"2023-02-08T13:21:17.507Z\",\n            \"updatedAt\": \"2023-02-08T13:21:17.507Z\"\n        },\n        {\n            \"id\": \"4770fd52-70a9-4a87-9755-9227791b1be2\",\n            \"sessionId\": \"e447cb3a-fc85-4399-9ef7-787cafda7463\",\n            \"sessiontrackId\": \"1a40cc48-372c-4f4b-8eb8-691f9c36d687\",\n            \"createdAt\": \"2023-02-14T14:50:15.210Z\",\n            \"updatedAt\": \"2023-02-14T14:50:15.210Z\"\n        },\n        {\n            \"id\": \"33139de3-fcbe-4c48-9ab9-693454a39b25\",\n            \"sessionId\": \"9421fd04-7a2a-497a-8a52-6d26a7fabf4f\",\n            \"sessiontrackId\": \"ab81e61f-8ab1-4f1d-948c-e350cc8f01cd\",\n            \"createdAt\": \"2023-05-31T18:19:21.094Z\",\n            \"updatedAt\": \"2023-05-31T18:19:21.094Z\"\n        },\n        {\n            \"id\": \"520fa1da-0ecc-43fa-8d9f-e92d39c4a581\",\n            \"sessionId\": \"acadb331-3cd0-4d20-abd0-5609bd75b4cd\",\n            \"sessiontrackId\": \"db55577a-d7cc-443f-b164-58d095af406b\",\n            \"createdAt\": \"2023-02-24T07:11:00.737Z\",\n            \"updatedAt\": \"2023-02-24T07:11:00.737Z\"\n        },\n        {\n            \"id\": \"4046fc50-b127-46b9-9c5d-c2530b680439\",\n            \"sessionId\": \"8ae3317c-4cae-45ae-8271-fa373cfa5bee\",\n            \"sessiontrackId\": \"fc5703ad-beda-4376-8c46-b6cbd2479433\",\n            \"createdAt\": \"2023-04-10T16:49:35.340Z\",\n            \"updatedAt\": \"2023-04-10T16:49:35.340Z\"\n        },\n        {\n            \"id\": \"602dbf95-9a26-48c5-9ac6-e0a7959fbd82\",\n            \"sessionId\": \"26d553d5-1e0c-4246-b558-c8438c8ccf62\",\n            \"sessiontrackId\": \"db55577a-d7cc-443f-b164-58d095af406b\",\n            \"createdAt\": \"2023-02-24T07:11:02.275Z\",\n            \"updatedAt\": \"2023-02-24T07:11:02.275Z\"\n        },\n        {\n            \"id\": \"b6e0a143-a8f6-4a50-804e-c01fef4f3e6a\",\n            \"sessionId\": \"cea4c0ec-84ec-45a6-b9d5-10d8fba534b6\",\n            \"sessiontrackId\": \"cdc1bb69-6bda-4d9c-9834-5a759667adf1\",\n            \"createdAt\": \"2023-04-14T15:35:24.476Z\",\n            \"updatedAt\": \"2023-04-14T15:35:24.476Z\"\n        },\n        {\n            \"id\": \"15083de5-a351-4fa2-89c2-735e463474f4\",\n            \"sessionId\": \"b0f27203-1a1a-41ce-a819-b431ffeef02a\",\n            \"sessiontrackId\": \"3daf44ae-642b-42a2-9ca1-6d8f79acd69d\",\n            \"createdAt\": \"2023-02-14T14:21:10.865Z\",\n            \"updatedAt\": \"2023-02-14T14:21:10.865Z\"\n        },\n        {\n            \"id\": \"50bd27d2-f65b-49f8-bcd8-0cfda1391afe\",\n            \"sessionId\": \"6dce5b32-1389-4c4b-87b4-f78de599b8e6\",\n            \"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\",\n            \"createdAt\": \"2023-02-24T15:34:42.863Z\",\n            \"updatedAt\": \"2023-02-24T15:34:42.863Z\"\n        },\n        {\n            \"id\": \"eec069e8-6f70-468b-bdaf-9c0e9fabb9f7\",\n            \"sessionId\": \"22c30efb-15d8-4470-b38c-857917a32131\",\n            \"sessiontrackId\": \"57fb9f7c-eb5c-45b4-a626-a18c6f7b77c0\",\n            \"createdAt\": \"2023-06-06T17:20:49.393Z\",\n            \"updatedAt\": \"2023-06-06T17:20:49.393Z\"\n        },\n        {\n            \"id\": \"3b24c737-112c-4831-a150-83ea7f3f755a\",\n            \"sessionId\": \"293d3004-21a6-4aa0-a8bd-71a88b112e60\",\n            \"sessiontrackId\": \"05609d2e-85db-4b28-a74a-09a08d814a8d\",\n            \"createdAt\": \"2023-02-27T12:34:09.759Z\",\n            \"updatedAt\": \"2023-02-27T12:34:09.759Z\"\n        },\n        {\n            \"id\": \"680d7300-a30a-4b7b-827d-d6ec66af6754\",\n            \"sessionId\": \"88a6e6a6-db48-484b-923b-86ea78ec0d84\",\n            \"sessiontrackId\": \"c0ec8775-f54d-4513-9100-95d718bc79e3\",\n            \"createdAt\": \"2023-04-07T17:05:27.333Z\",\n            \"updatedAt\": \"2023-04-07T17:05:27.333Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 27,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2620\n    }\n}"}],"_postman_id":"4b1be5fb-3959-419e-b63f-0b0cc8b3080b"},{"name":"Create a Session-Sessiontrack relationship","id":"e993c955-800b-45b1-a670-13889fbe6629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\r\n\"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2","description":"<p>Create a session and sessiontrack relationship record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessionId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>Must be the primary identifier of an existing Session.</td>\n</tr>\n<tr>\n<td>sessiontrackId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>Must be the primary identifier of an existing Sessiontrack.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-sessiontrack","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"962bb588-316c-4e59-92a0-5cc0c8b6b03e","name":"Create session sessiontrack relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\r\n\"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:53:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"230"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e6-4PNVDFkQXRmQZc8IitfELQkKNok\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"86719f71-5180-4a65-b20a-995b66947402\",\n    \"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n    \"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\",\n    \"updatedAt\": \"2023-06-28T19:53:30.077Z\",\n    \"createdAt\": \"2023-06-28T19:53:30.077Z\"\n}"}],"_postman_id":"e993c955-800b-45b1-a670-13889fbe6629"},{"name":"Read a Session-Sessiontrack relationship","id":"9f0c7041-c0e6-47a5-94b4-3e4334eaff03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2/:id","description":"<p>Retrieve single record for a related session and sessiontrack</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sessions</td>\n<td>sessiontracks</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-sessiontrack","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"30750525-221c-4678-8ba1-7f4af7d726f5","type":"any","value":"86719f71-5180-4a65-b20a-995b66947402","key":"id"}]}},"response":[{"id":"2fe26970-70f9-4673-8651-28da2a0ee959","name":"Read a session-sessiontrack relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-sessiontrack","v2",":id"],"variable":[{"key":"id","value":"86719f71-5180-4a65-b20a-995b66947402"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:53:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"230"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e6-RhU2yiWB09BVBAsjRP5iXt63P9Q\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"86719f71-5180-4a65-b20a-995b66947402\",\n    \"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n    \"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\",\n    \"createdAt\": \"2023-06-28T19:53:30.077Z\",\n    \"updatedAt\": \"2023-06-28T19:53:30.077Z\"\n}"},{"id":"30979b8d-3c2c-40f2-a82e-a25ba20a8861","name":"Read a Session-Sessiontrack relationship with include","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2/:id?include=sessions,sessiontracks","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-sessiontrack","v2",":id"],"query":[{"key":"include","value":"sessions,sessiontracks"}],"variable":[{"key":"id","value":"2a90a2fd-ad6a-48c3-8f48-8c0c06dd702b"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1977"},{"key":"ETag","value":"W/\"7b9-TUFDfqWWcvKoHgY0vcdnf3rqcJw\""},{"key":"Date","value":"Tue, 11 Jun 2024 14:57:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2a90a2fd-ad6a-48c3-8f48-8c0c06dd702b\",\n    \"sessionId\": \"b755a421-f64f-4b56-9ce3-5766db9699b4\",\n    \"sessiontrackId\": \"fc7588d3-9730-4dbc-8977-0df2de3e37b5\",\n    \"createdAt\": \"2023-05-19T00:02:50.006Z\",\n    \"updatedAt\": \"2023-05-19T00:02:50.006Z\",\n    \"sessions\": {\n        \"collection\": [\n            {\n                \"id\": \"b755a421-f64f-4b56-9ce3-5766db9699b4\",\n                \"clientIdentifier\": \"tskbv\",\n                \"producerRecordIdentifier\": \"3k5vv\",\n                \"fullName\": \"Asperiores in inventore.\",\n                \"description\": \"Compatible hybrid workforce implement virtual bandwidth\",\n                \"startsAt\": \"2023-05-19T00:02:49.994Z\",\n                \"endsAt\": \"2023-05-23T00:02:49.970Z\",\n                \"isFeatured\": true,\n                \"captureType\": \"quia\",\n                \"hasAudienceResponseSystem\": false,\n                \"customAttributes\": \"{\\\"foo\\\":82105,\\\"bar\\\":19756,\\\"bike\\\":48388,\\\"a\\\":\\\"b50O'8*N6L\\\",\\\"b\\\":57482,\\\"name\\\":63737,\\\"prop\\\":5646}\",\n                \"keywords\": [\n                    \"voluptates\",\n                    \"praesentium\",\n                    \"ipsam\",\n                    \"rerum\",\n                    \"accusamus\"\n                ],\n                \"createdAt\": \"2023-05-19T00:02:49.994Z\",\n                \"updatedAt\": \"2023-05-19T00:02:49.995Z\",\n                \"eventId\": \"de06919d-b9aa-40fb-b2f1-8ab9223fbbc4\",\n                \"roomId\": \"c39ecba3-b5a1-45f5-a20c-76cf36b6641e\",\n                \"sessiontypeId\": \"a1fd2db0-dc05-4a6f-98b6-421c82eecf05\",\n                \"sessionformatId\": \"aa660d59-75ad-451f-b9c1-bccd2e8960de\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"sessiontracks\": {\n        \"collection\": [\n            {\n                \"id\": \"fc7588d3-9730-4dbc-8977-0df2de3e37b5\",\n                \"eventId\": \"d7d49dc1-993d-4d94-818a-0a20a0d5c2e7\",\n                \"producerRecordIdentifier\": \"6hmpc\",\n                \"name\": \"Garden Track\",\n                \"description\": \"Robust well-modulated model transform granular infrastructures\",\n                \"createdAt\": \"2023-05-19T00:02:50.002Z\",\n                \"updatedAt\": \"2023-05-19T00:02:50.003Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"session\": {\n                \"href\": \"/sessions/v2/b755a421-f64f-4b56-9ce3-5766db9699b4\"\n            },\n            \"sessiontrack\": {\n                \"href\": \"/sessiontracks/v2/fc7588d3-9730-4dbc-8977-0df2de3e37b5\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"9f0c7041-c0e6-47a5-94b4-3e4334eaff03"},{"name":"Destroy a Session-Sessiontrack relationship","id":"9b3d13da-8601-4142-b78a-17d0d77ca645","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2/:id","description":"<p>Delete a record so that session and sessiontrack records are no longer associated</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["session-sessiontrack","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"6489fa67-3fb6-453e-a765-ded83ba7afa9","type":"any","value":"86719f71-5180-4a65-b20a-995b66947402","key":"id"}]}},"response":[{"id":"d450c893-ef61-4a3c-8822-f7b4d55368b7","name":"Destroy a session-sessiontrack relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/session-sessiontrack/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["session-sessiontrack","v2",":id"],"variable":[{"key":"id","value":"86719f71-5180-4a65-b20a-995b66947402"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 19:54:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"230"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e6-RhU2yiWB09BVBAsjRP5iXt63P9Q\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"86719f71-5180-4a65-b20a-995b66947402\",\n    \"sessionId\": \"d4d0b0e7-e0c5-4a77-af0a-7d4738774073\",\n    \"sessiontrackId\": \"4db8f925-cbb5-4061-a147-5e9ec3bbd895\",\n    \"createdAt\": \"2023-06-28T19:53:30.077Z\",\n    \"updatedAt\": \"2023-06-28T19:53:30.077Z\"\n}"}],"_postman_id":"9b3d13da-8601-4142-b78a-17d0d77ca645"}],"id":"7a9fbea9-197a-4ad6-978d-aed2625ccd7c","description":"<p>Collection of CRUD operations and options to create, read and delete session-sessiontrack relationship</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Session ID (uuid).</td>\n</tr>\n<tr>\n<td>sessiontrackId</td>\n<td>string</td>\n<td>Sessiontrack Id (uuid)</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7a9fbea9-197a-4ad6-978d-aed2625ccd7c","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Subsessions (v2)","item":[{"name":"List Subsessions","id":"9cbdae9b-be1b-4972-88fe-52de0bc67edb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2","description":"<p>Retrieve a collection of subsessions.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"8c243850-52e5-4127-9c50-3b4c734db244","name":"List subsessions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessions/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessions","v2"],"query":[{"key":"filter[name][eq]","value":"Sample Subsession","description":"Filters Subsessions with name eqals to \"Sample Subsession\"","disabled":true},{"key":"filter[name][substring]","value":"ame","description":"Filters Subsessions where name has substring \"Ame\"","disabled":true},{"key":"filter[name][startsWith]","value":"Sample","description":"Filters Subsessions with name starting with Sample","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"Filters Subsessions with id eqals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"Filters Subsessions created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"Filters Subsessions created on and before \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"Filters Subsessions created after \"2022-04-12\"","disabled":true},{"key":"filter[createdAt]","value":"2022-03-31T15:27:01.076Z","description":"Filters Subsessions created at \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[producerRecordIdentifier][endsWith]","value":"123","description":"Filters Subsessions where producerRecordIdentifier end with 123","disabled":true},{"key":"filter[sortOrder][gt]","value":"5","description":"Filters Subsessions where sort order is greater than 5","disabled":true},{"key":"page","value":"2","description":"Filters Subsessions records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 17:08:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"66142"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1025e-NzpDQ0vr+AIUHUgyLpUoKeZ/r18\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"681c48fa-2ff1-498c-ba80-6d9b569de3b3\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa188\",\n            \"clientIdentifier\": \"ss01_1671772564451-03\",\n            \"fullName\": \"Measurable/Minimal Residual Disease in Patients with Acute Myeloid Leukemia\",\n            \"description\": null,\n            \"hasAudienceResponseSystem\": false,\n            \"sortOrder\": null,\n            \"startsAt\": \"2022-12-24T00:00:00.000Z\",\n            \"endsAt\": \"2022-12-24T23:59:00.000Z\",\n            \"customAttributes\": null,\n            \"createdAt\": \"2023-04-03T14:52:57.682Z\",\n            \"updatedAt\": \"2023-04-03T14:52:57.682Z\",\n            \"eventId\": \"b2482595-a306-4e9f-ab8d-0f708f582dae\",\n            \"sessionId\": \"d5a21f6c-f5d0-4a90-b79e-5d981fe0c5af\",\n            \"subsessionformatId\": \"b4cd3b0d-1d2a-401c-ade8-6f9bd90c2bd1\",\n            \"subsessiontypeId\": \"177b94c6-5af3-4fe3-9a71-62c1c339417e\"\n        },\n        {\n            \"id\": \"ba5331fa-95fc-4c1a-bace-442df3468fe3\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa100\",\n            \"clientIdentifier\": \"HOALABB_01-04\",\n            \"fullName\": \"Latin American Registry on Aplastic Anemia (LARAA)\",\n            \"description\": \"Update on LARAA from Dr. Vera Milovic.\",\n            \"hasAudienceResponseSystem\": false,\n            \"sortOrder\": null,\n            \"startsAt\": \"2023-02-10T14:59:00.000Z\",\n            \"endsAt\": \"2023-02-10T17:59:00.000Z\",\n            \"customAttributes\": null,\n            \"createdAt\": \"2023-04-24T15:50:46.311Z\",\n            \"updatedAt\": \"2023-04-24T15:50:46.311Z\",\n            \"eventId\": \"d3f28f28-aeef-4a87-bed3-c0b25e8f0e7f\",\n            \"sessionId\": \"7fbe404f-3276-4a7c-9260-56e067a622ff\",\n            \"subsessionformatId\": \"b4cd3b0d-1d2a-401c-ade8-6f9bd90c2bd1\",\n            \"subsessiontypeId\": \"177b94c6-5af3-4fe3-9a71-62c1c339417e\"\n        },\n        {\n            \"id\": \"4b879d2c-be63-4674-9a78-fcef9aa2fa1f\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa199\",\n            \"clientIdentifier\": \"HOALABB_01-01\",\n            \"fullName\": \"Opening Remarks\",\n            \"description\": \"Pre-recorded opening remarks by the co-chairs (moderators), Drs. Calado and Galeano.\",\n            \"hasAudienceResponseSystem\": false,\n            \"sortOrder\": 0,\n            \"startsAt\": \"2023-06-12T08:16:59.000Z\",\n            \"endsAt\": \"2024-06-11T20:16:59.000Z\",\n            \"customAttributes\": null,\n            \"createdAt\": \"2023-06-12T20:16:59.977Z\",\n            \"updatedAt\": \"2023-06-12T20:17:00.049Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"sessionId\": \"8a2a6779-8956-4c55-addf-44f783b3e145\",\n            \"subsessionformatId\": \"b4cd3b0d-1d2a-401c-ade8-6f9bd90c2bd1\",\n            \"subsessiontypeId\": \"177b94c6-5af3-4fe3-9a71-62c1c339417e\"\n        },\n        {\n            \"id\": \"bbf7d12a-a339-4346-978a-100509ae1347\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa112\",\n            \"clientIdentifier\": \"SS1092\",\n            \"fullName\": \"Neonatal Intraventricular hemorrhage\",\n            \"description\": \"Identifying A Mechanism for Complement-induced Injury following Neonatal Intraventricular hemorrhage in A Murine Model\",\n            \"hasAudienceResponseSystem\": false,\n            \"sortOrder\": 1,\n            \"startsAt\": \"2022-12-03T12:07:00.000Z\",\n            \"endsAt\": \"2022-12-03T12:13:00.000Z\",\n            \"customAttributes\": {\n                \"SubSessionCustom2\": \"Lorem Ipsum\"\n            },\n            \"createdAt\": \"2023-02-27T04:27:08.524Z\",\n            \"updatedAt\": \"2023-02-27T04:27:08.524Z\",\n            \"eventId\": \"0d68abe7-c878-4f7c-ba0b-cbf9ef81bfa1\",\n            \"sessionId\": \"1b7f1e7a-b29b-404d-ae3d-3f236293d5fb\",\n            \"subsessionformatId\": \"b4cd3b0d-1d2a-401c-ade8-6f9bd90c2bd1\",\n            \"subsessiontypeId\": \"177b94c6-5af3-4fe3-9a71-62c1c339417e\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 4,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 4\n    }\n}"}],"_postman_id":"9cbdae9b-be1b-4972-88fe-52de0bc67edb"},{"name":"Create a Subsession","id":"c9bb1b54-1c51-459b-8229-6084e0eb580a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n    \"clientIdentifier\": \"HOALABB_01-03\",\n    \"fullName\": \"VTE Guidelines\",\n    \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n    \"sortOrder\": 2,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"hasAudienceResponseSystem\": false,\n    \"customAttributes\": {\n        \"test\": \"Demo Data\"\n    },\n    \"eventId\": \"b2482595-a306-4e9f-ab8d-0f708f582dae\",\n    \"sessionId\": \"d5a21f6c-f5d0-4a90-b79e-5d981fe0c5af\",\n    \"subsessionformatId\": \"be70aa5e-2d44-4f65-b95e-efdf94ebf79a\",\n    \"subsessiontypeId\": \"7cf9a6a6-6ad1-4305-9f1a-0a90e323b332\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2","description":"<p>Create a new subsession record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field.  <br />Event ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>string</td>\n<td>Required Field.  <br />Session ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>subsessionformatId</td>\n<td>string</td>\n<td>Optional Field.  <br />Subsessionformat ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>subsessiontypeId</td>\n<td>string</td>\n<td>Optional Field.  <br />Subsessiontype ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Optional Field.  <br />Client identifier associated with the subsession record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional Field.  <br />Producer record identifier associated with the subsession record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Required Field.  <br />Full name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional Field.  <br />Description.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Required Field.  <br />Subsession start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Required Field.  <br />Subsession end time.</td>\n</tr>\n<tr>\n<td>hasAudienceResponseSystem</td>\n<td>boolean</td>\n<td>Optional Field.  <br />Boolean flag to indicate if the session has audience response system.</td>\n</tr>\n<tr>\n<td>sortOrder</td>\n<td>integer</td>\n<td>Optional Field.  <br />Sort Order associated to subsession</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Optional Field.  <br />Custom attributes to store custom data in key value pairs.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-child-entities\">Includable Related Child Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subsessionfiles</td>\n<td>subsessionvideos</td>\n<td>subsessionlinks</td>\n</tr>\n<tr>\n<td>speaker-subsession</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessions","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"7079f2a4-aca0-49d1-a057-872507dd000a","name":"Create a subsession","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n    \"clientIdentifier\": \"HOALABB_01-03\",\n    \"fullName\": \"VTE Guidelines\",\n    \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n    \"sortOrder\": 2,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"hasAudienceResponseSystem\": false,\n    \"customAttributes\": {\n        \"test\": \"Demo Data\"\n    },\n    \"eventId\": \"b2482595-a306-4e9f-ab8d-0f708f582dae\",\n    \"sessionId\": \"d5a21f6c-f5d0-4a90-b79e-5d981fe0c5af\",\n    \"subsessionformatId\": \"be70aa5e-2d44-4f65-b95e-efdf94ebf79a\",\n    \"subsessiontypeId\": \"7cf9a6a6-6ad1-4305-9f1a-0a90e323b332\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 17:53:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"703"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"2bf-fdjA4ezGa/Ewo5z/KkmMCuPmNHQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11a85562-743b-457b-a7b8-39dfaa7dd126\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n    \"clientIdentifier\": \"HOALABB_01-03\",\n    \"fullName\": \"VTE Guidelines\",\n    \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n    \"sortOrder\": 2,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"hasAudienceResponseSystem\": false,\n    \"customAttributes\": {\n        \"test\": \"Demo Data\"\n    },\n    \"eventId\": \"b2482595-a306-4e9f-ab8d-0f708f582dae\",\n    \"sessionId\": \"d5a21f6c-f5d0-4a90-b79e-5d981fe0c5af\",\n    \"subsessionformatId\": \"be70aa5e-2d44-4f65-b95e-efdf94ebf79a\",\n    \"subsessiontypeId\": \"7cf9a6a6-6ad1-4305-9f1a-0a90e323b332\",\n    \"updatedAt\": \"2023-06-20T17:53:10.555Z\",\n    \"createdAt\": \"2023-06-20T17:53:10.555Z\"\n}"},{"id":"7e03c3d7-4327-4aa8-8a07-a354da52c5b0","name":"Create a Subsession with Related Child Entities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n    \"clientIdentifier\": \"HOALABB_01-03\",\n    \"fullName\": \"VTE Guidelines\",\n    \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n    \"sortOrder\": 2,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"hasAudienceResponseSystem\": false,\n    \"customAttributes\": {\n        \"test\": \"Demo Data\"\n    },\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"sessionId\": \"b58e4d58-a7b7-4ff1-97fa-7251320e1ab2\",\n    \"subsessionlinks\": [\n        {\n            \"fullName\": \"SubsessionLink for CME\",\n            \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n            \"type\": \"CME link\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\"\n        }\n    ],\n    \"subsessionfiles\": [\n        {\n            \"name\": \"Fantastic Automotive File\",\n            \"url\": \"http://Fantastic.name\",\n            \"type\": \"Image\",\n            \"extension\": \"jpeg\",\n            \"systemPath\": \"/srv/associate_automotive.jpeg\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa165\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1631"},{"key":"ETag","value":"W/\"65f-9MuS4kP/p+RUfuZaFnaOZSkyJgM\""},{"key":"Date","value":"Thu, 21 Aug 2025 20:30:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6b940156-aecc-459b-b699-134b67530892\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n    \"clientIdentifier\": \"HOALABB_01-03\",\n    \"fullName\": \"VTE Guidelines\",\n    \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n    \"sortOrder\": 2,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"hasAudienceResponseSystem\": false,\n    \"customAttributes\": {\n        \"test\": \"Demo Data\"\n    },\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"sessionId\": \"b58e4d58-a7b7-4ff1-97fa-7251320e1ab2\",\n    \"updatedAt\": \"2025-08-21T20:30:03.303Z\",\n    \"createdAt\": \"2025-08-21T20:30:03.303Z\",\n    \"subsessionformatId\": null,\n    \"subsessiontypeId\": null,\n    \"subsessionfiles\": {\n        \"collection\": [\n            {\n                \"sizeInBytes\": null,\n                \"id\": \"3128b1e7-1225-46dc-b6f3-0dbc8f5c4f2a\",\n                \"subsessionId\": \"6b940156-aecc-459b-b699-134b67530892\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"name\": \"Fantastic Automotive File\",\n                \"url\": \"http://Fantastic.name\",\n                \"type\": \"Image\",\n                \"extension\": \"jpeg\",\n                \"systemPath\": \"/srv/associate_automotive.jpeg\",\n                \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa165\",\n                \"updatedAt\": \"2025-08-21T20:30:03.318Z\",\n                \"createdAt\": \"2025-08-21T20:30:03.318Z\"\n            }\n        ]\n    },\n    \"subsessionlinks\": {\n        \"collection\": [\n            {\n                \"id\": \"f404eedc-65c8-4a92-9a13-681710d7d15f\",\n                \"subsessionId\": \"6b940156-aecc-459b-b699-134b67530892\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"fullName\": \"SubsessionLink for CME\",\n                \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n                \"type\": \"CME link\",\n                \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n                \"updatedAt\": \"2025-08-21T20:30:03.325Z\",\n                \"createdAt\": \"2025-08-21T20:30:03.325Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"c9bb1b54-1c51-459b-8229-6084e0eb580a"},{"name":"Read a Subsession","id":"8e232e78-4978-443b-8a64-64f6f30e6fe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId","description":"<p>Retrieve a single subsession record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>sessions</td>\n<td>speakers</td>\n</tr>\n<tr>\n<td>subsessionformats</td>\n<td>subsessiontypes</td>\n<td>subsessionlinks</td>\n</tr>\n<tr>\n<td>subsessionfiles</td>\n<td>subsessionvideos</td>\n<td>speaker-subsession</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessions","v2",":subsessionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"e0788b82-2d78-4f4b-83f6-0bb78fad165c","type":"any","value":"11a85562-743b-457b-a7b8-39dfaa7dd126","key":"subsessionId"}]}},"response":[{"id":"3731b619-23bb-4b90-b934-f19ec2c5358c","name":"Read a subsession","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessions","v2",":subsessionId"],"variable":[{"key":"subsessionId","value":"11a85562-743b-457b-a7b8-39dfaa7dd126"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 17:54:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"703"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"2bf-xWxMPcJHLPbCQG5XBWu6VExw3Q8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11a85562-743b-457b-a7b8-39dfaa7dd126\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa18\",\n    \"clientIdentifier\": \"HOALABB_01-03\",\n    \"fullName\": \"VTE Guidelines\",\n    \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n    \"hasAudienceResponseSystem\": false,\n    \"sortOrder\": 2,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"customAttributes\": {\n        \"test\": \"Demo Data\"\n    },\n    \"createdAt\": \"2023-06-20T17:53:10.555Z\",\n    \"updatedAt\": \"2023-06-20T17:53:10.555Z\",\n    \"eventId\": \"b2482595-a306-4e9f-ab8d-0f708f582dae\",\n    \"sessionId\": \"d5a21f6c-f5d0-4a90-b79e-5d981fe0c5af\",\n    \"subsessionformatId\": \"be70aa5e-2d44-4f65-b95e-efdf94ebf79a\",\n    \"subsessiontypeId\": \"7cf9a6a6-6ad1-4305-9f1a-0a90e323b332\"\n}"},{"id":"ad5943fe-b3b3-4f76-ac4d-95d7f6f0caf5","name":"Read a Subsession with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId?include=sessions,speakers,subsessiontypes","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessions","v2",":subsessionId"],"query":[{"key":"include","value":"sessions,speakers,subsessiontypes"}],"variable":[{"key":"subsessionId","value":"3e7997c3-11a3-4e68-902d-e13325f8c533"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4731"},{"key":"ETag","value":"W/\"127b-YG9hxq0OaGhtK8ENOGp3jcTeesk\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:00:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3e7997c3-11a3-4e68-902d-e13325f8c533\",\n    \"producerRecordIdentifier\": \"f5y97\",\n    \"clientIdentifier\": \"u84qh\",\n    \"fullName\": \"Creative qui et Subsession\",\n    \"description\": null,\n    \"hasAudienceResponseSystem\": false,\n    \"sortOrder\": 72638,\n    \"startsAt\": \"2023-05-19T00:02:51.115Z\",\n    \"endsAt\": \"2023-05-23T00:02:51.066Z\",\n    \"customAttributes\": \"{\\\"foo\\\":18574,\\\"bar\\\":\\\"=F,?X!-mJ}\\\",\\\"bike\\\":\\\"qkA%_2\\\\\\\\?d;\\\",\\\"a\\\":88637,\\\"b\\\":41635,\\\"name\\\":\\\"XzzwJp/@AO\\\",\\\"prop\\\":\\\"Z\\\\\\\"iFNPod:q\\\"}\",\n    \"createdAt\": \"2023-05-19T00:02:51.115Z\",\n    \"updatedAt\": \"2023-05-19T00:02:51.115Z\",\n    \"eventId\": \"503eb9cc-6d30-4e9f-b0bc-7b4d289d8846\",\n    \"sessionId\": \"9d1fea4f-d7f2-42d9-9b05-d1e0264bf117\",\n    \"subsessionformatId\": \"6f78d44e-7d50-4cb3-832e-f29753c59204\",\n    \"subsessiontypeId\": \"337ae810-c58c-4ba1-b490-b9b56a37e86d\",\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"aa664955-b1b5-4077-93db-24733aec473a\",\n                \"producerRecordIdentifier\": \"4u8q6\",\n                \"prefix\": \"Ms.\",\n                \"preferredName\": \"Tomas\",\n                \"firstName\": \"Muhammad\",\n                \"middleName\": \"Leslie\",\n                \"lastName\": \"Gislason\",\n                \"suffix\": \"DVM\",\n                \"degree\": \"Regional Implementation Consultant\",\n                \"title\": \"Human Infrastructure Technician\",\n                \"organization\": \"Planner\",\n                \"city\": \"North Kamron\",\n                \"state\": \"Ohio\",\n                \"country\": \"Uruguay\",\n                \"email\": \"Izabella_Hilpert@yahoo.com\",\n                \"emailTwo\": \"Rhea.Satterfield@yahoo.com\",\n                \"phoneNumber\": \"(485) 953-1955\",\n                \"mobileNumber\": \"(259) 284-4158 x4434\",\n                \"faxNumber\": \"495-827-3904 x3078\",\n                \"otherPhoneNumber\": \"(582) 649-7987\",\n                \"isVip\": false,\n                \"website\": \"https://late-canopy.info\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/457.jpg\",\n                \"biographyText\": \"Senior\",\n                \"customAttributes\": \"{\\\"foo\\\":92264,\\\"bar\\\":\\\"1vPG*Ol_D+\\\",\\\"bike\\\":\\\"O9Jptu`M<G\\\",\\\"a\\\":\\\"8gi3&fH$`_\\\",\\\"b\\\":\\\"pl|roQGxV5\\\",\\\"name\\\":\\\"AR7|oIpveu\\\",\\\"prop\\\":62666}\",\n                \"createdAt\": \"2023-05-19T00:02:51.128Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.128Z\",\n                \"eventId\": \"73bc14b7-fe09-4707-a217-12d963fb48e6\",\n                \"speaker-subsession\": [\n                    {\n                        \"id\": \"a4141fa2-d186-4768-b47f-ec5a178305c9\",\n                        \"speakerId\": \"aa664955-b1b5-4077-93db-24733aec473a\",\n                        \"subsessionId\": \"3e7997c3-11a3-4e68-902d-e13325f8c533\",\n                        \"createdAt\": \"2023-05-19T00:02:51.131Z\",\n                        \"updatedAt\": \"2023-05-19T00:02:51.131Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"sessions\": {\n        \"collection\": [\n            {\n                \"id\": \"9d1fea4f-d7f2-42d9-9b05-d1e0264bf117\",\n                \"clientIdentifier\": \"b8irk\",\n                \"producerRecordIdentifier\": \"opzef\",\n                \"fullName\": \"Qui alias atque eius.\",\n                \"description\": \"Ameliorated responsive superstructure exploit best-of-breed deliverables\",\n                \"startsAt\": \"2023-05-19T00:02:51.101Z\",\n                \"endsAt\": \"2023-05-20T00:02:51.074Z\",\n                \"isFeatured\": true,\n                \"captureType\": \"nihil\",\n                \"hasAudienceResponseSystem\": false,\n                \"customAttributes\": \"{\\\"foo\\\":30487,\\\"bar\\\":69202,\\\"bike\\\":32759,\\\"a\\\":\\\"6Ms!<1)AOR\\\",\\\"b\\\":56043,\\\"name\\\":\\\"7*!xQWD}}Z\\\",\\\"prop\\\":67243}\",\n                \"keywords\": [\n                    \"tenetur\",\n                    \"commodi\",\n                    \"libero\",\n                    \"saepe\",\n                    \"illo\"\n                ],\n                \"createdAt\": \"2023-05-19T00:02:51.101Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.101Z\",\n                \"eventId\": \"29e806fa-fd41-4aee-81a0-a17f3966dae7\",\n                \"roomId\": \"08fe1321-1e08-4930-af71-dca8b097e572\",\n                \"sessiontypeId\": \"fd656bbb-c301-461c-9ec9-411e84cfbb1c\",\n                \"sessionformatId\": \"0a8a2474-c167-4d2d-bcec-21bed072bbdb\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"subsessiontypes\": {\n        \"collection\": [\n            {\n                \"id\": \"337ae810-c58c-4ba1-b490-b9b56a37e86d\",\n                \"producerRecordIdentifier\": \"9vm5z\",\n                \"fullName\": \"Data dolorem quasi iure\",\n                \"description\": \"Visionary incremental website drive efficient ROI\",\n                \"createdAt\": \"2023-05-19T00:02:51.112Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.112Z\",\n                \"eventId\": \"e2b115ce-813c-4768-a41c-fdfd42a1bcd7\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/503eb9cc-6d30-4e9f-b0bc-7b4d289d8846\"\n            },\n            \"subsessionformat\": {\n                \"href\": \"/subsessionformats/v2/6f78d44e-7d50-4cb3-832e-f29753c59204\"\n            },\n            \"session\": {\n                \"href\": \"/sessions/v2/9d1fea4f-d7f2-42d9-9b05-d1e0264bf117\"\n            },\n            \"subsessiontype\": {\n                \"href\": \"/subsessiontypes/v2/337ae810-c58c-4ba1-b490-b9b56a37e86d\"\n            }\n        },\n        \"children\": {\n            \"subsessionlinks\": {\n                \"href\": \"/subsessionlinks/v2?filter[subsessionId][eq]=3e7997c3-11a3-4e68-902d-e13325f8c533\"\n            },\n            \"subsessionfiles\": {\n                \"href\": \"/subsessionfiles/v2?filter[subsessionId][eq]=3e7997c3-11a3-4e68-902d-e13325f8c533\"\n            },\n            \"subsessionvideos\": {\n                \"href\": \"/subsessionvideos/v2?filter[subsessionId][eq]=3e7997c3-11a3-4e68-902d-e13325f8c533\"\n            },\n            \"speaker-subsession\": {\n                \"href\": \"/speaker-subsession/v2?filter[subsessionId][eq]=3e7997c3-11a3-4e68-902d-e13325f8c533\"\n            }\n        },\n        \"siblings\": {\n            \"speakers\": {\n                \"href\": \"/speakers/v2?filter[subsessionId][eq]=3e7997c3-11a3-4e68-902d-e13325f8c533\"\n            }\n        }\n    }\n}"}],"_postman_id":"8e232e78-4978-443b-8a64-64f6f30e6fe8"},{"name":"Update a Subsession","id":"44bb6f87-342a-40e6-954a-1c23b9c3e549","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa186\",\n    \"clientIdentifier\": \"HOANA_18-1\",\n    \"fullName\": \"Plasma Cell Dyscrasia & MPN Community Live Q&A Session\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId","description":"<p>Modify one or more fields on the single Subsession record of the supplied Subsession ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>sessionId</td>\n<td>UUID string</td>\n<td>Session ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>subsessionformatId</td>\n<td>UUID string</td>\n<td>Subsessionformat ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>subsessiontypeId</td>\n<td>UUID string</td>\n<td>Subsessiontype ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Client identifier associated with the subsession record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the subsession record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Subsession start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Subsession end time.</td>\n</tr>\n<tr>\n<td>hasAudienceResponseSystem</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the session has audience response system.</td>\n</tr>\n<tr>\n<td>sortOrder</td>\n<td>integer</td>\n<td>Sort Order associated to subsession</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-child-entities\">Includable Related Child Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subsessionfiles</td>\n<td>subsessionvideos</td>\n<td>subsessionlinks</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessions","v2",":subsessionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"32a91780-4c7e-460e-917d-aed3ddbf0d39","type":"any","value":"11a85562-743b-457b-a7b8-39dfaa7dd126","key":"subsessionId"}]}},"response":[{"id":"09a3dd5b-00a8-4d90-94e4-f71e3d2055b9","name":"Update a subsession","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa186\",\n    \"clientIdentifier\": \"HOANA_18-1\",\n    \"fullName\": \"Plasma Cell Dyscrasia & MPN Community Live Q&A Session\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessions","v2",":subsessionId"],"variable":[{"key":"subsessionId","value":"11a85562-743b-457b-a7b8-39dfaa7dd126"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 18:49:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"657"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"291-8m0umdOCcMka0XpXKrXFbUzzgHI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11a85562-743b-457b-a7b8-39dfaa7dd126\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa186\",\n    \"clientIdentifier\": \"HOANA_18-1\",\n    \"fullName\": \"Plasma Cell Dyscrasia & MPN Community Live Q&A Session\",\n    \"description\": \"This session will showcase the highlights of the event.\",\n    \"hasAudienceResponseSystem\": false,\n    \"sortOrder\": 9,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-06-20T17:53:10.555Z\",\n    \"updatedAt\": \"2023-06-20T18:49:57.656Z\",\n    \"eventId\": \"b2482595-a306-4e9f-ab8d-0f708f582dae\",\n    \"sessionId\": \"d5a21f6c-f5d0-4a90-b79e-5d981fe0c5af\",\n    \"subsessionformatId\": null,\n    \"subsessiontypeId\": null\n}"},{"id":"af738302-2a8a-4d0c-a279-68bd80be00df","name":"Update a Subsession with Related Child Entities","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa186\",\n    \"clientIdentifier\": \"HOANA_18-1\",\n    \"fullName\": \"Plasma Cell Dyscrasia & MPN Community Live Q&A Session\",\n    \"subsessionlinks\": [\n        {\n            \"id\": \"f404eedc-65c8-4a92-9a13-681710d7d15f\",\n            \"fullName\": \"SubsessionLink for SMS\"\n        }\n    ],\n    \"subsessionfiles\": [\n        {\n            \"id\": \"3128b1e7-1225-46dc-b6f3-0dbc8f5c4f2a\",\n            \"extension\": \"PNG\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessions","v2",":subsessionId"],"variable":[{"key":"subsessionId","value":"6b940156-aecc-459b-b699-134b67530892"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1668"},{"key":"ETag","value":"W/\"684-5iGx9kHjgJqaDdaPgTG5Hx/0kbw\""},{"key":"Date","value":"Thu, 21 Aug 2025 20:35:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6b940156-aecc-459b-b699-134b67530892\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa186\",\n    \"clientIdentifier\": \"HOANA_18-1\",\n    \"fullName\": \"Plasma Cell Dyscrasia & MPN Community Live Q&A Session\",\n    \"description\": \"Update on the ASH VTE Guidelines from Dr. Jaime Pereira\",\n    \"hasAudienceResponseSystem\": false,\n    \"sortOrder\": 2,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"customAttributes\": {\n        \"test\": \"Demo Data\"\n    },\n    \"createdAt\": \"2025-08-21T20:30:03.303Z\",\n    \"updatedAt\": \"2025-08-21T20:35:21.588Z\",\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"sessionId\": \"b58e4d58-a7b7-4ff1-97fa-7251320e1ab2\",\n    \"subsessionformatId\": null,\n    \"subsessiontypeId\": null,\n    \"subsessionfiles\": {\n        \"collection\": [\n            {\n                \"sizeInBytes\": null,\n                \"id\": \"3128b1e7-1225-46dc-b6f3-0dbc8f5c4f2a\",\n                \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa165\",\n                \"name\": \"Fantastic Automotive File\",\n                \"url\": \"http://Fantastic.name\",\n                \"type\": \"Image\",\n                \"extension\": \"PNG\",\n                \"systemPath\": \"/srv/associate_automotive.jpeg\",\n                \"createdAt\": \"2025-08-21T20:30:03.318Z\",\n                \"updatedAt\": \"2025-08-21T20:35:21.600Z\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"subsessionId\": \"6b940156-aecc-459b-b699-134b67530892\"\n            }\n        ]\n    },\n    \"subsessionlinks\": {\n        \"collection\": [\n            {\n                \"id\": \"f404eedc-65c8-4a92-9a13-681710d7d15f\",\n                \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n                \"fullName\": \"SubsessionLink for SMS\",\n                \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n                \"type\": \"CME link\",\n                \"createdAt\": \"2025-08-21T20:30:03.325Z\",\n                \"updatedAt\": \"2025-08-21T20:35:21.603Z\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"subsessionId\": \"6b940156-aecc-459b-b699-134b67530892\"\n            }\n        ]\n    }\n}"}],"_postman_id":"44bb6f87-342a-40e6-954a-1c23b9c3e549"},{"name":"Destroy a Subsession","id":"046dee73-ebf9-4b24-8a25-27d8c090547f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId","description":"<p>Delete a subsession record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessions","v2",":subsessionId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"9083306a-b116-4ec7-a251-8d512426d4d3","type":"any","value":"11a85562-743b-457b-a7b8-39dfaa7dd126","key":"subsessionId"}]}},"response":[{"id":"4eaa4c22-a430-44a8-897d-70d00e6fe12f","name":"Destroy a subsession","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessions/v2/:subsessionId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessions","v2",":subsessionId"],"variable":[{"key":"subsessionId","value":"11a85562-743b-457b-a7b8-39dfaa7dd126"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 18:50:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"657"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"291-8m0umdOCcMka0XpXKrXFbUzzgHI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11a85562-743b-457b-a7b8-39dfaa7dd126\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa186\",\n    \"clientIdentifier\": \"HOANA_18-1\",\n    \"fullName\": \"Plasma Cell Dyscrasia & MPN Community Live Q&A Session\",\n    \"description\": \"This session will showcase the highlights of the event.\",\n    \"hasAudienceResponseSystem\": false,\n    \"sortOrder\": 9,\n    \"startsAt\": \"2023-05-23T18:32:12.884Z\",\n    \"endsAt\": \"2023-06-23T18:32:12.884Z\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-06-20T17:53:10.555Z\",\n    \"updatedAt\": \"2023-06-20T18:49:57.656Z\",\n    \"eventId\": \"b2482595-a306-4e9f-ab8d-0f708f582dae\",\n    \"sessionId\": \"d5a21f6c-f5d0-4a90-b79e-5d981fe0c5af\",\n    \"subsessionformatId\": null,\n    \"subsessiontypeId\": null\n}"}],"_postman_id":"046dee73-ebf9-4b24-8a25-27d8c090547f"},{"name":"Subessions based on Speakers (Presenters)","id":"a8f05b62-994c-4bf9-aa88-062bb01afeff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessions/v2?filter[speakerId][in][]=6b6ea960-10fa-4fe1-87cc-89718f4bcb9c&filter[speakerId][in][]=f9b66222-4652-47ff-ac66-96fc81fd4972","description":"<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the subsessions GET endpoint and applying the filter based on the \"speakerId\".</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessions","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[speakerId][in][]","value":"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c"},{"key":"filter[speakerId][in][]","value":"f9b66222-4652-47ff-ac66-96fc81fd4972"}],"variable":[]}},"response":[{"id":"9b888c69-7467-4071-8f73-83b5ace956a4","name":"Subessions based on Speakers (Presenters)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessions/v2?filter[speakerId][in][]=6b6ea960-10fa-4fe1-87cc-89718f4bcb9c&filter[speakerId][in][]=f9b66222-4652-47ff-ac66-96fc81fd4972","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessions","v2"],"query":[{"key":"filter[speakerId][in][]","value":"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c"},{"key":"filter[speakerId][in][]","value":"f9b66222-4652-47ff-ac66-96fc81fd4972"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:00:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1600"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"640-2bEkmaSRQdoCTdZTgYwRPj+/5+Q\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"fec19620-7e8d-4dd3-b560-507e18617e23\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa254\",\n            \"clientIdentifier\": \"SS1000\",\n            \"fullName\": \"Follicular Lymphoma: Is There an Optimal Way to Define Risk?\",\n            \"description\": null,\n            \"hasAudienceResponseSystem\": false,\n            \"sortOrder\": 1,\n            \"startsAt\": \"2022-12-01T12:00:00.000Z\",\n            \"endsAt\": \"2022-12-01T12:10:00.000Z\",\n            \"customAttributes\": {\n                \"SubSessionCustom2\": \"High Risk\"\n            },\n            \"createdAt\": \"2023-02-24T06:35:58.925Z\",\n            \"updatedAt\": \"2023-02-24T18:02:58.951Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n            \"sessionId\": \"6d9317fd-a282-4702-8332-737195143bf2\",\n            \"subsessionformatId\": null,\n            \"subsessiontypeId\": null\n        },\n        {\n            \"id\": \"2da48fd9-f511-4a7b-b850-3b4d4a70d585\",\n            \"producerRecordIdentifier\": \"807748\",\n            \"clientIdentifier\": \"SS1092\",\n            \"fullName\": \"Identifying A Mechanism for Complement-induced Injury following Neonatal Intraventricular hemorrhage in A Murine Model\",\n            \"description\": null,\n            \"hasAudienceResponseSystem\": false,\n            \"sortOrder\": 1,\n            \"startsAt\": \"2022-12-03T12:07:00.000Z\",\n            \"endsAt\": \"2022-12-03T12:13:00.000Z\",\n            \"customAttributes\": {\n                \"SubsessionCustom1\": \"Live\"\n            },\n            \"createdAt\": \"2023-02-24T06:35:49.443Z\",\n            \"updatedAt\": \"2023-02-24T06:35:49.443Z\",\n            \"eventId\": \"bad4f1a5-4823-470e-a4d6-e43ca6362724\",\n            \"sessionId\": \"33fc1553-73d5-4cf8-a38c-a8b979ccd0c4\",\n            \"subsessionformatId\": null,\n            \"subsessiontypeId\": null\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"a8f05b62-994c-4bf9-aa88-062bb01afeff"}],"id":"ec40f18c-6af2-4bf4-80a4-2c173151df0d","description":"<p>Collection of CRUD operations and options to interact with Sessions.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Subsession ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>subsessionformatId</td>\n<td>string</td>\n<td>Subsessionformat ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>subsessiontypeId</td>\n<td>string</td>\n<td>Subsessiontype ID to be linked to the subsession record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Client identifier associated with the subsession record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the subsession record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Subsession start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Subsession end time.</td>\n</tr>\n<tr>\n<td>hasAudienceResponseSystem</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the session has audience response system.</td>\n</tr>\n<tr>\n<td>sortOrder</td>\n<td>integer</td>\n<td>Sort Order associated to subsession</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ec40f18c-6af2-4bf4-80a4-2c173151df0d","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Speaker-Subsession (v2)","item":[{"name":"List Speaker-Subsession relationships","id":"4e388cc5-ef44-4f1b-b9dd-1697b4234322","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2","description":"<p>Retrieve a collection of related subsession and speaker records.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speaker-subsession","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"50772ba6-81ba-40f4-8990-8bdabce2812f","name":"List speaker-subsession relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speaker-subsession","v2"],"query":[{"key":"filter[speakerId][eq]","value":"89ba89b3-32c2-4ca7-a1e7-45351690846d","description":"List all the subsession speaker relationships for a specific speaker Id","disabled":true},{"key":"filter[subsessionId][eq]","value":"7ee260ca-228b-40b2-b5e4-4da2ffc6a87d","description":"List all the subsession speaker relationships for a specific subsession Id","disabled":true},{"key":"page","value":"2","description":"List alll the records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:05:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23066"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"5a1a-VmFVvcGph59g9RN78twDNEc59CE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"2866d631-b113-4376-8048-95c50fdb3e21\",\n            \"speakerId\": \"5dfb2b57-28e4-4ccf-a728-b14e590cf4c2\",\n            \"subsessionId\": \"04112446-cb71-4dd1-98c8-287e86330d09\",\n            \"createdAt\": \"2023-04-03T15:31:01.000Z\",\n            \"updatedAt\": \"2023-04-03T15:31:01.000Z\"\n        },\n        {\n            \"id\": \"fd6c28cc-ebb0-4fa5-a1d0-a1fa12be4b57\",\n            \"speakerId\": \"474f82a6-76ac-470e-9ac8-ec58f4990673\",\n            \"subsessionId\": \"768f673c-ec7d-4956-a3e1-f1b018d5d228\",\n            \"createdAt\": \"2023-05-22T16:35:47.661Z\",\n            \"updatedAt\": \"2023-05-22T16:35:47.661Z\"\n        },\n        {\n            \"id\": \"8b37909f-0374-443d-aef1-0490a796be02\",\n            \"speakerId\": \"d83c8a3e-a63f-472c-a2e1-410c9ef21305\",\n            \"subsessionId\": \"3f1b6c46-2c2f-4231-be38-fa92aeea39e8\",\n            \"createdAt\": \"2023-06-06T21:07:38.269Z\",\n            \"updatedAt\": \"2023-06-06T21:07:38.269Z\"\n        },\n        {\n            \"id\": \"936ca7e5-3d69-45ce-929f-34cd211916ed\",\n            \"speakerId\": \"7592aa2f-73cc-417f-bf68-41a1f8ef8023\",\n            \"subsessionId\": \"1bb32c48-bae7-42ac-af52-31fa6a7d7685\",\n            \"createdAt\": \"2023-06-06T21:07:39.590Z\",\n            \"updatedAt\": \"2023-06-06T21:07:39.590Z\"\n        },\n        {\n            \"id\": \"76382326-f55a-4aea-b042-c3a17307ec1d\",\n            \"speakerId\": \"2106453f-4ed8-4fb3-9134-d16152195c3b\",\n            \"subsessionId\": \"687278d4-6638-42c4-bca1-1cd8545ee3bb\",\n            \"createdAt\": \"2023-06-06T21:07:40.765Z\",\n            \"updatedAt\": \"2023-06-06T21:07:40.765Z\"\n        },\n        {\n            \"id\": \"d84d1196-2062-4848-8941-d2cb135245e9\",\n            \"speakerId\": \"15fe26b6-7342-4008-815c-a038cef8642f\",\n            \"subsessionId\": \"761e7ad1-1426-4df9-b740-616bd3078bd0\",\n            \"createdAt\": \"2023-06-06T21:07:41.230Z\",\n            \"updatedAt\": \"2023-06-06T21:07:41.230Z\"\n        },\n        {\n            \"id\": \"dd3d29f7-3189-476b-94fa-374119e0a272\",\n            \"speakerId\": \"e67aa584-ecc6-4941-a885-eae69d6516f3\",\n            \"subsessionId\": \"67804880-45a4-481d-bd0e-03809bda0b59\",\n            \"createdAt\": \"2023-06-06T21:07:41.965Z\",\n            \"updatedAt\": \"2023-06-06T21:07:41.965Z\"\n        },\n        {\n            \"id\": \"7766c5a4-2f13-40cd-bffb-eaf132b2b3d7\",\n            \"speakerId\": \"48f645dd-e465-49e1-8578-5da946f55f33\",\n            \"subsessionId\": \"106a9d97-1fc6-4c02-86cc-d0e61290209a\",\n            \"createdAt\": \"2023-06-06T21:07:42.601Z\",\n            \"updatedAt\": \"2023-06-06T21:07:42.601Z\"\n        },\n        {\n            \"id\": \"5d698f6f-1f5e-4b90-9fb2-6a08af0438c5\",\n            \"speakerId\": \"73ae05d0-3486-44f1-b130-97b406ab4a93\",\n            \"subsessionId\": \"8635373c-f0ff-4cd8-88f1-46b9ec57a43d\",\n            \"createdAt\": \"2023-06-06T21:07:44.494Z\",\n            \"updatedAt\": \"2023-06-06T21:07:44.494Z\"\n        },\n        {\n            \"id\": \"941bc700-863b-4a4c-b64a-d1e1eca692c5\",\n            \"speakerId\": \"d4d8226a-b289-4c48-953a-13b8c807caba\",\n            \"subsessionId\": \"f8aa806b-ebe2-428b-ae8f-c871beec2cac\",\n            \"createdAt\": \"2023-06-06T21:07:47.267Z\",\n            \"updatedAt\": \"2023-06-06T21:07:47.267Z\"\n        },\n        {\n            \"id\": \"4232359b-6e7d-4216-afde-b0b2373ac33f\",\n            \"speakerId\": \"6ccb79e9-e7c8-428b-a0c5-b7f72a47c17c\",\n            \"subsessionId\": \"7d8e356a-9172-412e-856b-0847a79f370b\",\n            \"createdAt\": \"2023-06-06T21:07:47.762Z\",\n            \"updatedAt\": \"2023-06-06T21:07:47.762Z\"\n        },\n        {\n            \"id\": \"d9ec9abe-6933-4451-838d-9c558cd3bf62\",\n            \"speakerId\": \"58904d2e-001e-4666-8c39-21b010e68867\",\n            \"subsessionId\": \"1881beb3-8dc6-4545-bd6a-d77f5980ccf2\",\n            \"createdAt\": \"2023-06-06T21:07:49.254Z\",\n            \"updatedAt\": \"2023-06-06T21:07:49.254Z\"\n        },\n        {\n            \"id\": \"aa72567c-e7b8-4710-a228-f07dedc5f8e4\",\n            \"speakerId\": \"0ca9af79-83f0-4263-ac70-437f88729812\",\n            \"subsessionId\": \"3a5fba87-5b9d-4711-b823-01ae05a891bf\",\n            \"createdAt\": \"2023-06-07T16:06:51.079Z\",\n            \"updatedAt\": \"2023-06-07T16:06:51.079Z\"\n        },\n        {\n            \"id\": \"fac53a03-bba8-49be-8d1b-733ed2a40f20\",\n            \"speakerId\": \"b21b6193-6e1f-46bf-8706-bc082e844ce1\",\n            \"subsessionId\": \"2e56e0fc-6463-418c-b45f-d2e2a587ac40\",\n            \"createdAt\": \"2023-06-07T16:06:52.037Z\",\n            \"updatedAt\": \"2023-06-07T16:06:52.037Z\"\n        },\n        {\n            \"id\": \"18f915c4-0181-49a0-8b40-385c7adf9149\",\n            \"speakerId\": \"06b8152f-2624-4cf5-93d3-90953d0c6cf5\",\n            \"subsessionId\": \"cf7f540c-a19d-4992-8fa2-95cc24915539\",\n            \"createdAt\": \"2023-06-07T16:06:55.900Z\",\n            \"updatedAt\": \"2023-06-07T16:06:55.900Z\"\n        },\n        {\n            \"id\": \"f4625663-2627-400d-89af-63a70630accd\",\n            \"speakerId\": \"3aae3f40-b0ff-4b56-8834-7b15574c324d\",\n            \"subsessionId\": \"96e2bd91-68c9-4f3d-8524-75a50d4e3cd4\",\n            \"createdAt\": \"2023-06-07T16:06:56.307Z\",\n            \"updatedAt\": \"2023-06-07T16:06:56.307Z\"\n        },\n        {\n            \"id\": \"806ba36f-86cd-409f-8527-e571b05ce64a\",\n            \"speakerId\": \"5b9d542a-6c0b-4f3e-b5f7-6ac12cfca4aa\",\n            \"subsessionId\": \"ce4fcfff-be04-4e48-afc6-12fd00fa4901\",\n            \"createdAt\": \"2023-06-07T16:06:58.763Z\",\n            \"updatedAt\": \"2023-06-07T16:06:58.763Z\"\n        },\n        {\n            \"id\": \"3c2bfe9b-ad3b-4ec6-9c47-a406e8582ccc\",\n            \"speakerId\": \"01e981b9-da03-45d2-baf4-3bf72739cb34\",\n            \"subsessionId\": \"8749aa94-f8f1-4a61-a38c-84bb3a96812d\",\n            \"createdAt\": \"2023-06-07T16:07:02.576Z\",\n            \"updatedAt\": \"2023-06-07T16:07:02.576Z\"\n        },\n        {\n            \"id\": \"953fcb5a-f27b-4d6b-ab23-bb2d4d69550d\",\n            \"speakerId\": \"43d5f272-1bc3-40ed-b005-2a2014776409\",\n            \"subsessionId\": \"6157ea76-0001-451e-85ee-3825f3a1dace\",\n            \"createdAt\": \"2023-06-07T16:07:03.991Z\",\n            \"updatedAt\": \"2023-06-07T16:07:03.991Z\"\n        },\n        {\n            \"id\": \"7acf723e-d9e1-41a4-bfa3-d4e999887e94\",\n            \"speakerId\": \"aa529fb9-9497-4ab6-ad70-3e76da025895\",\n            \"subsessionId\": \"7d5e3b37-702d-4bf1-9411-cf30cccd78e8\",\n            \"createdAt\": \"2023-06-07T16:07:09.091Z\",\n            \"updatedAt\": \"2023-06-07T16:07:09.091Z\"\n        },\n        {\n            \"id\": \"9b2f65fb-2b48-460b-9b26-0eaec48025ea\",\n            \"speakerId\": \"a10a4ce5-6a61-4344-8a5d-e58c8ca2ebdc\",\n            \"subsessionId\": \"e928b6dd-06a7-406f-8542-010f501d284e\",\n            \"createdAt\": \"2023-06-07T16:07:11.267Z\",\n            \"updatedAt\": \"2023-06-07T16:07:11.267Z\"\n        },\n        {\n            \"id\": \"061a3d6c-c8e4-4a44-9834-19918d9726c3\",\n            \"speakerId\": \"0196bb7b-d8a5-4eb8-bd60-49a53c3a124c\",\n            \"subsessionId\": \"245a4c75-7642-4288-ae25-f6c864b436a9\",\n            \"createdAt\": \"2023-06-07T16:07:12.940Z\",\n            \"updatedAt\": \"2023-06-07T16:07:12.940Z\"\n        },\n        {\n            \"id\": \"c185986a-b31f-4396-a11a-4148e5a3e140\",\n            \"speakerId\": \"934ad28d-38e7-494e-a17c-de0fd2228b43\",\n            \"subsessionId\": \"91fb0469-847d-4b01-8b75-816bfce7e91b\",\n            \"createdAt\": \"2023-06-07T16:07:20.636Z\",\n            \"updatedAt\": \"2023-06-07T16:07:20.636Z\"\n        },\n        {\n            \"id\": \"3c0b8b89-5214-4000-9134-f9a2ebdf49d9\",\n            \"speakerId\": \"d2cefdc7-fe3b-4081-859b-6d04df98810a\",\n            \"subsessionId\": \"57fc96c6-f2b9-4f52-bbbf-a904ca8c457a\",\n            \"createdAt\": \"2023-06-07T16:07:22.353Z\",\n            \"updatedAt\": \"2023-06-07T16:07:22.353Z\"\n        },\n        {\n            \"id\": \"c015418c-16d6-48ad-b500-9fea53e20a3d\",\n            \"speakerId\": \"b6a7672c-0a46-4697-994c-768c08802175\",\n            \"subsessionId\": \"5ddaa06b-eb1a-4369-98a0-751bd2dac73b\",\n            \"createdAt\": \"2023-06-07T16:07:22.818Z\",\n            \"updatedAt\": \"2023-06-07T16:07:22.818Z\"\n        },\n        {\n            \"id\": \"a89d56e6-b4f1-4c82-8fac-568dc04bf01d\",\n            \"speakerId\": \"97d0ec18-12ec-427c-b3fc-4d1cc4fe31aa\",\n            \"subsessionId\": \"e14c03b7-76c7-4482-8628-d23897aa40af\",\n            \"createdAt\": \"2023-06-07T16:07:26.550Z\",\n            \"updatedAt\": \"2023-06-07T16:07:26.550Z\"\n        },\n        {\n            \"id\": \"83a8ce2d-ce1d-4859-abb9-5e4cee313cb9\",\n            \"speakerId\": \"c1192f7c-d020-49ab-8086-1b2716c34447\",\n            \"subsessionId\": \"8c7a2985-9548-4156-9d74-477f66d781d3\",\n            \"createdAt\": \"2023-06-07T16:07:28.080Z\",\n            \"updatedAt\": \"2023-06-07T16:07:28.080Z\"\n        },\n        {\n            \"id\": \"8fb6c75e-c093-47fe-a193-62cafa7bbd18\",\n            \"speakerId\": \"731ef067-37bd-42f2-a11c-e640e286347b\",\n            \"subsessionId\": \"05c2c825-fe96-43dc-afa2-d881e04d20d8\",\n            \"createdAt\": \"2023-02-08T19:20:57.679Z\",\n            \"updatedAt\": \"2023-02-08T19:20:57.679Z\"\n        },\n        {\n            \"id\": \"9a984362-0d43-4627-991b-3158ffabf43f\",\n            \"speakerId\": \"156b5399-8b6b-47f9-8d63-f160ec119acc\",\n            \"subsessionId\": \"d242abce-5935-430b-b002-567c3a872c56\",\n            \"createdAt\": \"2023-02-08T19:20:58.438Z\",\n            \"updatedAt\": \"2023-02-08T19:20:58.438Z\"\n        },\n        {\n            \"id\": \"7990d522-1d58-48c5-b932-a40d807ac7d3\",\n            \"speakerId\": \"af94aff6-b2f6-4030-a51b-24b6708df191\",\n            \"subsessionId\": \"be8cebe2-c04f-4563-a9ad-f6030a6f4f52\",\n            \"createdAt\": \"2023-06-07T16:07:30.158Z\",\n            \"updatedAt\": \"2023-06-07T16:07:30.158Z\"\n        },\n        {\n            \"id\": \"8ddfb043-2b9f-4112-a55b-d3becad9156c\",\n            \"speakerId\": \"5870b5a4-9287-4f70-a46b-97c90bddbf59\",\n            \"subsessionId\": \"16bbb2b4-0681-4da7-846a-373f642add59\",\n            \"createdAt\": \"2023-06-08T07:31:51.494Z\",\n            \"updatedAt\": \"2023-06-08T07:31:51.494Z\"\n        },\n        {\n            \"id\": \"96522b14-dbe1-4614-956b-ff30722d6e39\",\n            \"speakerId\": \"0409e93e-85fd-4312-ad9c-bd2a5aa4cba2\",\n            \"subsessionId\": \"bd9c3766-83b0-4049-ae9b-af5a2dd8903a\",\n            \"createdAt\": \"2023-06-08T07:31:58.017Z\",\n            \"updatedAt\": \"2023-06-08T07:31:58.017Z\"\n        },\n        {\n            \"id\": \"3daa9f32-5876-461e-bdc7-9df063ac2887\",\n            \"speakerId\": \"664d218b-589a-45e0-b708-91899cb4f3c5\",\n            \"subsessionId\": \"7ee59e55-0892-4752-acf7-8cb7a85de515\",\n            \"createdAt\": \"2023-06-08T07:31:58.460Z\",\n            \"updatedAt\": \"2023-06-08T07:31:58.460Z\"\n        },\n        {\n            \"id\": \"0af4ae18-b6ea-4052-92db-f3d0bddcbf8e\",\n            \"speakerId\": \"702cc8c2-f507-4424-88e3-6eb7d8e30545\",\n            \"subsessionId\": \"3dbe878c-27ba-4dfb-bbcd-632917526aa6\",\n            \"createdAt\": \"2023-06-08T07:31:59.883Z\",\n            \"updatedAt\": \"2023-06-08T07:31:59.883Z\"\n        },\n        {\n            \"id\": \"83908bd1-515b-4299-b68c-39cd01398fd2\",\n            \"speakerId\": \"b62f97b9-ebee-4b46-ac27-64c49c226e44\",\n            \"subsessionId\": \"a614a6ad-01c3-4301-8baa-ce3aa16e33ed\",\n            \"createdAt\": \"2023-02-08T13:21:42.551Z\",\n            \"updatedAt\": \"2023-02-08T13:21:42.551Z\"\n        },\n        {\n            \"id\": \"237b3598-0a8c-4edd-b5f0-251e462e8ff2\",\n            \"speakerId\": \"093d9fd4-ddd2-47e3-8fa7-e0abe2b6b93a\",\n            \"subsessionId\": \"5e08a5b8-c59d-432e-b726-078dbc8a5797\",\n            \"createdAt\": \"2023-06-08T07:32:01.556Z\",\n            \"updatedAt\": \"2023-06-08T07:32:01.556Z\"\n        },\n        {\n            \"id\": \"2ad1fc42-0b5d-4c1d-9be9-848ffdc1dc48\",\n            \"speakerId\": \"9b2288dd-4c51-4326-809a-f71c8a6f10fa\",\n            \"subsessionId\": \"814291b1-2707-42a6-bb73-3848949fd3be\",\n            \"createdAt\": \"2023-06-08T07:32:02.418Z\",\n            \"updatedAt\": \"2023-06-08T07:32:02.418Z\"\n        },\n        {\n            \"id\": \"9df2f971-a516-45fa-8751-b8810f82f95f\",\n            \"speakerId\": \"537bd3cd-4731-4e5a-9e9e-914e7f127696\",\n            \"subsessionId\": \"a720c47d-f821-42ff-b1f5-bd7d03df7c98\",\n            \"createdAt\": \"2023-06-08T07:32:03.705Z\",\n            \"updatedAt\": \"2023-06-08T07:32:03.705Z\"\n        },\n        {\n            \"id\": \"c3f82c5e-f567-4bc7-b732-f8589dca192c\",\n            \"speakerId\": \"5470b9f7-ab1d-413f-bb5c-db9f16549b64\",\n            \"subsessionId\": \"e87cb1fc-fc60-40ee-8c83-8c3f0bc66175\",\n            \"createdAt\": \"2023-06-08T07:32:05.815Z\",\n            \"updatedAt\": \"2023-06-08T07:32:05.815Z\"\n        },\n        {\n            \"id\": \"64ea1a20-16b7-4ac8-b717-c04a73f88634\",\n            \"speakerId\": \"6618b6ba-d696-4023-baa6-9937be787d64\",\n            \"subsessionId\": \"76c28011-dad7-4e57-b713-db91ed7f430e\",\n            \"createdAt\": \"2023-06-08T07:32:07.572Z\",\n            \"updatedAt\": \"2023-06-08T07:32:07.572Z\"\n        },\n        {\n            \"id\": \"09867921-1170-4667-8f6b-e8a65e00035c\",\n            \"speakerId\": \"32bcafcf-53f3-4dc5-b9bb-8352c5c97235\",\n            \"subsessionId\": \"4e09ebd3-07b4-428d-a5a4-a4f1599b3293\",\n            \"createdAt\": \"2023-06-08T07:32:10.017Z\",\n            \"updatedAt\": \"2023-06-08T07:32:10.017Z\"\n        },\n        {\n            \"id\": \"b216dd0c-4bfe-430c-bb07-274956b3a493\",\n            \"speakerId\": \"05be8b1b-80d6-45bf-bf31-d663e96fb8fd\",\n            \"subsessionId\": \"aac473cc-570e-4b98-8767-4fa5dffa01d2\",\n            \"createdAt\": \"2023-06-08T07:32:12.519Z\",\n            \"updatedAt\": \"2023-06-08T07:32:12.519Z\"\n        },\n        {\n            \"id\": \"b0d7df72-b2ab-4c34-afbb-cc13b3cd8b55\",\n            \"speakerId\": \"b98a5800-4912-4c85-8713-f07e433b38b6\",\n            \"subsessionId\": \"607cf7d5-f627-465b-a6d8-5998593863bb\",\n            \"createdAt\": \"2023-06-08T07:32:13.719Z\",\n            \"updatedAt\": \"2023-06-08T07:32:13.719Z\"\n        },\n        {\n            \"id\": \"64291ecf-0427-42cb-9ddc-78b8b88933e5\",\n            \"speakerId\": \"e4913504-c2df-4165-8fff-d0e68cd10b49\",\n            \"subsessionId\": \"e5d0795e-69c1-4aec-90b8-8df61f35e968\",\n            \"createdAt\": \"2023-06-08T07:32:15.816Z\",\n            \"updatedAt\": \"2023-06-08T07:32:15.816Z\"\n        },\n        {\n            \"id\": \"538a5bff-86e3-4c37-9199-15ca7ce2ccfe\",\n            \"speakerId\": \"08ba1c8d-7156-46fe-b3a6-096bed49da8e\",\n            \"subsessionId\": \"8a2ed4c7-b42d-49ef-b1e5-0b134a24f1e7\",\n            \"createdAt\": \"2023-06-08T07:32:20.870Z\",\n            \"updatedAt\": \"2023-06-08T07:32:20.870Z\"\n        },\n        {\n            \"id\": \"4cf9d990-2ea5-43dc-abab-b6c8a2c3fde9\",\n            \"speakerId\": \"2415079d-1823-4d52-833c-d7151c4e851a\",\n            \"subsessionId\": \"2f333e75-6e40-4ea5-af23-27bd622a4c45\",\n            \"createdAt\": \"2023-06-08T07:32:26.899Z\",\n            \"updatedAt\": \"2023-06-08T07:32:26.899Z\"\n        },\n        {\n            \"id\": \"31001f84-3cac-4d61-9506-0bc0bc5c4bdd\",\n            \"speakerId\": \"e1b2c678-fe78-4a68-8fba-6a82643e5f6c\",\n            \"subsessionId\": \"d2b719bd-ae58-4a48-a583-6d82464fd203\",\n            \"createdAt\": \"2023-06-08T07:32:28.332Z\",\n            \"updatedAt\": \"2023-06-08T07:32:28.332Z\"\n        },\n        {\n            \"id\": \"4b4fdfc1-db63-44f3-8bd6-1d8004e4ea3f\",\n            \"speakerId\": \"2ae05088-2873-414c-bddf-05c9ddcdcef5\",\n            \"subsessionId\": \"e9300545-28f5-4f03-87c6-3ae0fc8d780c\",\n            \"createdAt\": \"2023-06-08T07:32:35.704Z\",\n            \"updatedAt\": \"2023-06-08T07:32:35.704Z\"\n        },\n        {\n            \"id\": \"738d1ac1-cd56-4b7d-a09a-e07ff11efa88\",\n            \"speakerId\": \"b245a2b5-05e1-47ea-89ea-215e4da1c65b\",\n            \"subsessionId\": \"12148522-24b9-4496-97dd-2c83e8f67165\",\n            \"createdAt\": \"2023-06-08T07:32:37.230Z\",\n            \"updatedAt\": \"2023-06-08T07:32:37.230Z\"\n        },\n        {\n            \"id\": \"425026fc-9182-4171-8806-957a6eb25b27\",\n            \"speakerId\": \"00be590b-be3d-4183-82e8-ada3c83670a2\",\n            \"subsessionId\": \"8a4f541f-a4c5-4b1c-836e-8932200e016d\",\n            \"createdAt\": \"2023-06-08T07:32:39.338Z\",\n            \"updatedAt\": \"2023-06-08T07:32:39.338Z\"\n        },\n        {\n            \"id\": \"b7f91fe4-9215-4852-9d49-012d92213dff\",\n            \"speakerId\": \"adb1bf4c-861a-47fb-babd-f013f71ac695\",\n            \"subsessionId\": \"27db0551-0729-41e0-bec4-96588007ca58\",\n            \"createdAt\": \"2023-06-08T07:32:39.907Z\",\n            \"updatedAt\": \"2023-06-08T07:32:39.907Z\"\n        },\n        {\n            \"id\": \"4616c5a8-4f79-4763-951f-e6ba566135f5\",\n            \"speakerId\": \"dfd905bc-fb11-428b-bd72-f9c26b414a07\",\n            \"subsessionId\": \"a6855e7b-d675-4526-9f0f-b1072edf6d79\",\n            \"createdAt\": \"2023-06-08T07:32:41.426Z\",\n            \"updatedAt\": \"2023-06-08T07:32:41.426Z\"\n        },\n        {\n            \"id\": \"62ff3047-6e4e-435a-826a-46cda0f4c06a\",\n            \"speakerId\": \"47353de3-0c13-4b11-baeb-59084c9e1f34\",\n            \"subsessionId\": \"6e8e126a-00e1-45ed-bd6b-c326060b2b7f\",\n            \"createdAt\": \"2023-06-08T07:32:45.265Z\",\n            \"updatedAt\": \"2023-06-08T07:32:45.265Z\"\n        },\n        {\n            \"id\": \"86649f61-608b-49ba-ac51-645c066931c9\",\n            \"speakerId\": \"71f953d8-c35d-4f91-bf65-b448106804ab\",\n            \"subsessionId\": \"a3de881c-7b0a-4703-9723-ff4ce140b261\",\n            \"createdAt\": \"2023-06-08T07:32:47.588Z\",\n            \"updatedAt\": \"2023-06-08T07:32:47.588Z\"\n        },\n        {\n            \"id\": \"923edcef-68a2-45b7-b18c-0e90a6571367\",\n            \"speakerId\": \"32c04f11-6192-42ef-96f8-a7066eddf10c\",\n            \"subsessionId\": \"7d0b2011-48fe-4ae0-87de-ae6c1df47048\",\n            \"createdAt\": \"2023-06-08T07:32:50.674Z\",\n            \"updatedAt\": \"2023-06-08T07:32:50.674Z\"\n        },\n        {\n            \"id\": \"29c30ff2-d199-4954-bf5e-de32f31cdd97\",\n            \"speakerId\": \"43511d9b-bb45-4bc5-bd2d-53718119cbb6\",\n            \"subsessionId\": \"4028594e-8ce1-42d3-95ce-82b8a52723e3\",\n            \"createdAt\": \"2023-06-08T07:32:51.825Z\",\n            \"updatedAt\": \"2023-06-08T07:32:51.825Z\"\n        },\n        {\n            \"id\": \"551e7d54-ec37-4080-bbf8-f288c985747a\",\n            \"speakerId\": \"dd544a0c-0c6b-4987-ad42-ef79d8cafa00\",\n            \"subsessionId\": \"9cea2240-6ca9-4823-bee1-46e67bd9907f\",\n            \"createdAt\": \"2023-06-08T07:32:53.068Z\",\n            \"updatedAt\": \"2023-06-08T07:32:53.068Z\"\n        },\n        {\n            \"id\": \"5d8eb8c3-e5b0-43df-b3ba-afa21a073ded\",\n            \"speakerId\": \"a26d5265-96a5-44a7-beb6-41071c1d7681\",\n            \"subsessionId\": \"102a4cfa-c1be-4651-8c63-fac763232324\",\n            \"createdAt\": \"2023-06-08T07:32:53.427Z\",\n            \"updatedAt\": \"2023-06-08T07:32:53.427Z\"\n        },\n        {\n            \"id\": \"7fd58f20-e8db-4505-afb1-ba78f72350c1\",\n            \"speakerId\": \"e83620b2-bf22-4730-ba7c-bfb7528ecfb7\",\n            \"subsessionId\": \"829413c3-3e3a-4e48-8885-e1791e9fb9d3\",\n            \"createdAt\": \"2023-06-08T07:32:59.615Z\",\n            \"updatedAt\": \"2023-06-08T07:32:59.615Z\"\n        },\n        {\n            \"id\": \"efa3455e-ac9e-4b39-8bb8-eb4ea1e03d43\",\n            \"speakerId\": \"04d5d143-7c85-4469-8a53-49bbc111edaa\",\n            \"subsessionId\": \"04190f4d-6581-42f6-bba4-5abad73b7a59\",\n            \"createdAt\": \"2023-06-08T07:33:00.085Z\",\n            \"updatedAt\": \"2023-06-08T07:33:00.085Z\"\n        },\n        {\n            \"id\": \"7110f8ac-ff44-4fc6-94d0-2119f79ad7a8\",\n            \"speakerId\": \"3f3178c3-6970-4ba4-8965-283031d8434d\",\n            \"subsessionId\": \"3049e3f6-2fa6-49ee-b351-bc866e30453b\",\n            \"createdAt\": \"2023-06-08T07:33:01.174Z\",\n            \"updatedAt\": \"2023-06-08T07:33:01.174Z\"\n        },\n        {\n            \"id\": \"a874122c-2a64-4eb6-9a5c-82eeee637dc1\",\n            \"speakerId\": \"b643faf1-12ee-4a1a-be89-0c4b58f78c18\",\n            \"subsessionId\": \"e517b2e8-a573-409c-8ad4-c803db3f5569\",\n            \"createdAt\": \"2023-06-08T07:33:01.636Z\",\n            \"updatedAt\": \"2023-06-08T07:33:01.636Z\"\n        },\n        {\n            \"id\": \"64d03d3e-c90c-49bf-90e6-5c9a1bfdace0\",\n            \"speakerId\": \"f0717289-509c-41f0-8142-e271d4a9d2df\",\n            \"subsessionId\": \"4b4284da-046b-4337-bcc2-71205044772d\",\n            \"createdAt\": \"2023-06-08T07:33:05.378Z\",\n            \"updatedAt\": \"2023-06-08T07:33:05.378Z\"\n        },\n        {\n            \"id\": \"0dc18900-836b-42dc-9c01-989a55f0f12d\",\n            \"speakerId\": \"6f43a8f7-b665-40ed-aeaf-1fef600b8359\",\n            \"subsessionId\": \"1c81ea4a-f8bc-4433-9cbf-2f14c769b172\",\n            \"createdAt\": \"2023-06-08T07:33:05.819Z\",\n            \"updatedAt\": \"2023-06-08T07:33:05.819Z\"\n        },\n        {\n            \"id\": \"3472b598-6cdd-4a1e-9270-28a8fa662259\",\n            \"speakerId\": \"177419cd-9ab2-4600-9236-8680ba223698\",\n            \"subsessionId\": \"96c98851-619f-4809-8727-7ab8b11f73a3\",\n            \"createdAt\": \"2023-06-08T07:33:14.509Z\",\n            \"updatedAt\": \"2023-06-08T07:33:14.509Z\"\n        },\n        {\n            \"id\": \"deace9ee-7634-4606-b6ed-cd8f6976e6f1\",\n            \"speakerId\": \"d25980cd-edd4-45b3-aad8-40ddbb44f382\",\n            \"subsessionId\": \"335309ba-e345-4f3c-84c5-8d3a39454728\",\n            \"createdAt\": \"2023-06-08T07:33:17.563Z\",\n            \"updatedAt\": \"2023-06-08T07:33:17.563Z\"\n        },\n        {\n            \"id\": \"6b719057-6e41-49f9-8266-cde8ff8dcdb8\",\n            \"speakerId\": \"8a8b6201-40d3-4abc-a5a0-2b3f2d2c5e6d\",\n            \"subsessionId\": \"b7b70c69-1517-48f8-9f2e-5df93f751f04\",\n            \"createdAt\": \"2023-06-08T07:33:19.160Z\",\n            \"updatedAt\": \"2023-06-08T07:33:19.160Z\"\n        },\n        {\n            \"id\": \"bc6c5131-134d-4019-9999-25c7fd498752\",\n            \"speakerId\": \"70066213-a2ea-4346-9662-834183e04f8b\",\n            \"subsessionId\": \"5aaafa7e-472f-4719-962a-8f11374151c9\",\n            \"createdAt\": \"2023-06-08T07:33:26.905Z\",\n            \"updatedAt\": \"2023-06-08T07:33:26.905Z\"\n        },\n        {\n            \"id\": \"86cb13ad-6454-4016-a06d-36d539bbee82\",\n            \"speakerId\": \"58efdee3-3073-4604-b01a-ae657ce3fab7\",\n            \"subsessionId\": \"b7685507-e537-4780-bd44-897316a9b264\",\n            \"createdAt\": \"2023-06-08T07:33:30.315Z\",\n            \"updatedAt\": \"2023-06-08T07:33:30.315Z\"\n        },\n        {\n            \"id\": \"ca68ea38-48cd-45ad-8945-efb696d29442\",\n            \"speakerId\": \"6665a2da-baa5-4e55-a6bc-9568a4b5dde1\",\n            \"subsessionId\": \"64f92701-f420-4624-b6ed-5de45476b898\",\n            \"createdAt\": \"2023-06-08T07:33:31.593Z\",\n            \"updatedAt\": \"2023-06-08T07:33:31.593Z\"\n        },\n        {\n            \"id\": \"cb151b3d-5be5-4d56-a777-c154d2133b05\",\n            \"speakerId\": \"34372233-705e-4fdb-a9c2-76796c2f3ac6\",\n            \"subsessionId\": \"7e385edc-9051-4afb-9fcc-c05eeab963a3\",\n            \"createdAt\": \"2023-06-08T07:33:33.670Z\",\n            \"updatedAt\": \"2023-06-08T07:33:33.670Z\"\n        },\n        {\n            \"id\": \"5ee802a4-272b-4eb2-96a2-713b037fa166\",\n            \"speakerId\": \"2064f858-38ad-48f4-8f54-5d7d061f8de8\",\n            \"subsessionId\": \"3e9d5349-0119-4318-95b4-5d474129d02b\",\n            \"createdAt\": \"2023-06-08T07:33:34.124Z\",\n            \"updatedAt\": \"2023-06-08T07:33:34.124Z\"\n        },\n        {\n            \"id\": \"228f5fab-3a13-4de2-89f2-a5143a8ba7c0\",\n            \"speakerId\": \"991ec4c3-fe1c-4c99-9121-dca1ac0af261\",\n            \"subsessionId\": \"d3765c58-f46b-4db9-b087-7c9ad49d5d3e\",\n            \"createdAt\": \"2023-06-08T07:33:37.781Z\",\n            \"updatedAt\": \"2023-06-08T07:33:37.781Z\"\n        },\n        {\n            \"id\": \"b8cbff10-742e-4c0d-be7e-4b8cbec44223\",\n            \"speakerId\": \"7d9536b0-edf0-4330-9265-25f14ba4779b\",\n            \"subsessionId\": \"e3e15e72-35da-4aad-8112-328340dfa036\",\n            \"createdAt\": \"2023-06-08T07:33:38.249Z\",\n            \"updatedAt\": \"2023-06-08T07:33:38.249Z\"\n        },\n        {\n            \"id\": \"28ccb245-f0cb-472f-b8f4-090cfd6d10ca\",\n            \"speakerId\": \"8edd7ec6-46dd-4171-a436-c1a25d7526fe\",\n            \"subsessionId\": \"61986c9f-d025-49ec-9d39-c8b764643211\",\n            \"createdAt\": \"2023-06-08T07:33:40.800Z\",\n            \"updatedAt\": \"2023-06-08T07:33:40.800Z\"\n        },\n        {\n            \"id\": \"9d4d2cd7-4fdc-487b-bbbe-c2377f0279f1\",\n            \"speakerId\": \"0725a50e-23b3-4bf6-b87f-a158a267e3f2\",\n            \"subsessionId\": \"d3474a45-3cf3-46dc-98f0-51bec97c3ba6\",\n            \"createdAt\": \"2023-06-08T07:33:51.051Z\",\n            \"updatedAt\": \"2023-06-08T07:33:51.051Z\"\n        },\n        {\n            \"id\": \"da406a8f-636f-4ed7-bc32-6a8fbae5b6d3\",\n            \"speakerId\": \"6752f935-d6e4-4814-b6c6-7ad931b24e2b\",\n            \"subsessionId\": \"fdda61b0-598e-4998-a9be-1aa34648e355\",\n            \"createdAt\": \"2023-06-08T07:33:51.504Z\",\n            \"updatedAt\": \"2023-06-08T07:33:51.504Z\"\n        },\n        {\n            \"id\": \"30ea244d-de48-454e-8551-9a9d58ed4685\",\n            \"speakerId\": \"ef3917ed-b51e-4760-b272-49ee12898288\",\n            \"subsessionId\": \"559bbf1e-1226-487b-9ef5-c3b02a1687ee\",\n            \"createdAt\": \"2023-06-08T07:33:53.009Z\",\n            \"updatedAt\": \"2023-06-08T07:33:53.009Z\"\n        },\n        {\n            \"id\": \"9df9ba6b-755a-45dc-867c-b90978537fa2\",\n            \"speakerId\": \"ccad24eb-ce1e-4b14-84d6-8b26e23de71d\",\n            \"subsessionId\": \"a3af52e5-6a1e-4975-ae39-570a1f1d5499\",\n            \"createdAt\": \"2023-06-08T07:33:53.450Z\",\n            \"updatedAt\": \"2023-06-08T07:33:53.450Z\"\n        },\n        {\n            \"id\": \"ee3d3920-0ec6-4448-ba1c-24304186903f\",\n            \"speakerId\": \"2fcee12a-98b5-473c-9958-1e2cddf0813b\",\n            \"subsessionId\": \"9fff7770-6dd5-4b9f-8119-fd21da4ce5c2\",\n            \"createdAt\": \"2023-06-08T07:33:53.991Z\",\n            \"updatedAt\": \"2023-06-08T07:33:53.991Z\"\n        },\n        {\n            \"id\": \"8b28cae7-b93c-4978-ba3d-a4541816bb1b\",\n            \"speakerId\": \"86e767a6-e9ee-44c5-bb54-8cbd8412720b\",\n            \"subsessionId\": \"6069e268-d2a1-44b5-8963-2bbe839e2e14\",\n            \"createdAt\": \"2023-06-08T07:33:57.621Z\",\n            \"updatedAt\": \"2023-06-08T07:33:57.621Z\"\n        },\n        {\n            \"id\": \"db3f40f1-3e3c-4abe-abec-ee46a87918d1\",\n            \"speakerId\": \"29b3d72a-d699-46f7-971b-29d7bed1a5ec\",\n            \"subsessionId\": \"10c88ba7-eda1-4f82-a45a-23ea0a02ad25\",\n            \"createdAt\": \"2023-06-08T07:33:59.921Z\",\n            \"updatedAt\": \"2023-06-08T07:33:59.921Z\"\n        },\n        {\n            \"id\": \"b17367bb-42c0-4fb0-9f85-c26e30d07592\",\n            \"speakerId\": \"31430547-80c6-4425-b25f-a96f73a1dfe3\",\n            \"subsessionId\": \"aaaabc70-a556-4fa8-92da-17989409f3a5\",\n            \"createdAt\": \"2023-06-08T07:34:05.312Z\",\n            \"updatedAt\": \"2023-06-08T07:34:05.312Z\"\n        },\n        {\n            \"id\": \"01c82252-29cb-4a19-b9ab-fbaec9da2ac5\",\n            \"speakerId\": \"ba22c43d-4f05-4c6c-9e53-723f413e7acc\",\n            \"subsessionId\": \"288c8dcf-925d-41ae-9438-d4f5834ecd81\",\n            \"createdAt\": \"2023-06-08T07:34:10.139Z\",\n            \"updatedAt\": \"2023-06-08T07:34:10.139Z\"\n        },\n        {\n            \"id\": \"845389ff-1ec7-4a46-9dc5-2e60bcdd7eb3\",\n            \"speakerId\": \"adb1bf4c-861a-47fb-babd-f013f71ac695\",\n            \"subsessionId\": \"bcf15a9e-f772-40cb-b85b-78e9a4ea16d7\",\n            \"createdAt\": \"2023-06-08T07:34:10.497Z\",\n            \"updatedAt\": \"2023-06-08T07:34:10.497Z\"\n        },\n        {\n            \"id\": \"92fba297-1166-47b8-9c53-7f93c06fc263\",\n            \"speakerId\": \"aaacf9e5-7ee8-40d2-8736-4a89b1ae78f3\",\n            \"subsessionId\": \"b49f9dad-bef8-4a98-8250-8e0fa930bf3b\",\n            \"createdAt\": \"2023-06-08T07:34:10.933Z\",\n            \"updatedAt\": \"2023-06-08T07:34:10.933Z\"\n        },\n        {\n            \"id\": \"85b17f70-e6db-469f-ab52-a990d0407dc6\",\n            \"speakerId\": \"d45b7d6a-5a7c-4eb0-b848-9112a1a97418\",\n            \"subsessionId\": \"962d2e5e-30b7-4149-ae6c-eade9b7db1e9\",\n            \"createdAt\": \"2023-06-08T07:34:16.939Z\",\n            \"updatedAt\": \"2023-06-08T07:34:16.939Z\"\n        },\n        {\n            \"id\": \"a772cbbe-03f2-4a8e-97bf-b10f8b0e7fc0\",\n            \"speakerId\": \"4d5264a1-4f8d-4bcb-86a1-6a63c7b80507\",\n            \"subsessionId\": \"b9ae4521-d2b6-40ea-a4af-5022cc77fd00\",\n            \"createdAt\": \"2023-06-08T07:34:23.252Z\",\n            \"updatedAt\": \"2023-06-08T07:34:23.252Z\"\n        },\n        {\n            \"id\": \"969efb50-eab9-4aa1-8ce9-ff9b3551ad97\",\n            \"speakerId\": \"0d7341fe-1e86-4b4c-933c-83d08caa6e62\",\n            \"subsessionId\": \"cba940cc-24b4-46dc-a928-cfb2671c9976\",\n            \"createdAt\": \"2023-02-08T11:36:45.725Z\",\n            \"updatedAt\": \"2023-02-08T11:36:45.725Z\"\n        },\n        {\n            \"id\": \"9380a366-98e9-46a0-bb62-b66377ce2399\",\n            \"speakerId\": \"a152625c-626c-4524-89d3-a7fcf36e68c6\",\n            \"subsessionId\": \"b0f97112-6890-4fac-9035-b6152c99d630\",\n            \"createdAt\": \"2023-04-03T20:02:59.877Z\",\n            \"updatedAt\": \"2023-04-03T20:02:59.877Z\"\n        },\n        {\n            \"id\": \"a0a6a0d3-cb81-4fc5-aead-9fdb5c1daca6\",\n            \"speakerId\": \"2af3e658-72ea-457e-bae5-088acb065aa5\",\n            \"subsessionId\": \"b0f97112-6890-4fac-9035-b6152c99d630\",\n            \"createdAt\": \"2023-04-03T20:03:00.070Z\",\n            \"updatedAt\": \"2023-04-03T20:03:00.070Z\"\n        },\n        {\n            \"id\": \"42186393-5fce-466e-b146-9d7396749fed\",\n            \"speakerId\": \"b03a5842-5f49-4897-8163-7d9ddb56f184\",\n            \"subsessionId\": \"0d840b4a-efb5-4f56-9d56-851770bfc1ef\",\n            \"createdAt\": \"2023-05-31T18:19:24.288Z\",\n            \"updatedAt\": \"2023-05-31T18:19:24.288Z\"\n        },\n        {\n            \"id\": \"dec46543-f839-4520-938e-32062c0741dd\",\n            \"speakerId\": \"9fe140a0-706a-466c-88a0-07807a92f738\",\n            \"subsessionId\": \"357b7f44-8d5d-49ec-92f8-2a02fc94614e\",\n            \"createdAt\": \"2023-05-31T18:19:24.678Z\",\n            \"updatedAt\": \"2023-05-31T18:19:24.678Z\"\n        },\n        {\n            \"id\": \"d498c23c-9622-4ea3-8e67-8c4799bd048d\",\n            \"speakerId\": \"070f72d4-82f1-45e8-a4a6-ca9849e8a4e3\",\n            \"subsessionId\": \"47675085-68cc-4012-8589-06668acf4804\",\n            \"createdAt\": \"2023-05-31T18:19:26.997Z\",\n            \"updatedAt\": \"2023-05-31T18:19:26.997Z\"\n        },\n        {\n            \"id\": \"128ccfd5-0f4b-448d-af2e-461694c21ffe\",\n            \"speakerId\": \"5f8e1f21-1eee-4933-9bd7-d3d71d2444b2\",\n            \"subsessionId\": \"0c93d1d5-5353-4e4d-b4c7-f85fd1ffb172\",\n            \"createdAt\": \"2023-05-31T18:19:27.744Z\",\n            \"updatedAt\": \"2023-05-31T18:19:27.744Z\"\n        },\n        {\n            \"id\": \"824fcb74-224a-4730-9a54-7c3b5c3912b4\",\n            \"speakerId\": \"a66acf4c-8475-41d2-8c48-a3f621ef49e8\",\n            \"subsessionId\": \"0474869d-63df-4890-95ab-548056e06644\",\n            \"createdAt\": \"2023-05-31T18:19:28.135Z\",\n            \"updatedAt\": \"2023-05-31T18:19:28.135Z\"\n        },\n        {\n            \"id\": \"53c488f5-fefd-4c99-af6b-e38dc22d2ca9\",\n            \"speakerId\": \"05a53585-2d57-4045-824a-5a74a9b416da\",\n            \"subsessionId\": \"9ea320f2-66f4-4bb8-a1e8-6d6e6953416a\",\n            \"createdAt\": \"2023-05-31T18:19:30.136Z\",\n            \"updatedAt\": \"2023-05-31T18:19:30.136Z\"\n        },\n        {\n            \"id\": \"896641bf-fc2b-4543-bc11-946970b75cef\",\n            \"speakerId\": \"a7312eaf-35a2-44e8-b3c8-fa016509d631\",\n            \"subsessionId\": \"75821b60-5c47-47de-a7d3-29426cad82ae\",\n            \"createdAt\": \"2023-06-06T21:07:38.284Z\",\n            \"updatedAt\": \"2023-06-06T21:07:38.284Z\"\n        },\n        {\n            \"id\": \"21efff92-ae23-4f89-8f72-86e3d085b53d\",\n            \"speakerId\": \"b91e24b8-f71f-4490-a666-72e941c9fbea\",\n            \"subsessionId\": \"2cd25181-e23f-4f01-9c78-e24a60739dae\",\n            \"createdAt\": \"2023-06-06T21:07:39.626Z\",\n            \"updatedAt\": \"2023-06-06T21:07:39.626Z\"\n        },\n        {\n            \"id\": \"47c7dc2e-3961-4d71-b06c-937484a460ce\",\n            \"speakerId\": \"b61a62b5-df6b-49f8-80ea-79fa0b798f5b\",\n            \"subsessionId\": \"3824323e-830d-4258-9392-4f7b9cbffc29\",\n            \"createdAt\": \"2023-06-06T21:07:40.738Z\",\n            \"updatedAt\": \"2023-06-06T21:07:40.738Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 100,\n        \"totalNumberOfPages\": 121,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 12019\n    }\n}"}],"_postman_id":"4e388cc5-ef44-4f1b-b9dd-1697b4234322"},{"name":"Create a Speaker-Subsession relationship","id":"66fa4b2c-e782-4d69-bf33-e0a6eb480547","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"subsessionId\": \"fec19620-7e8d-4dd3-b560-507e18617e23\",\r\n\"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2","description":"<p>Create a subsession and speaker relationship.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>speakerId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>Must be the primary identifier of an existing Speaker.</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>Must be the primary identifier of an existing Subsession.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speaker-subsession","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"6b035ff7-3603-44b1-abdb-efc4fee3ea91","name":"Create a speaker-subsession relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"subsessionId\": \"fec19620-7e8d-4dd3-b560-507e18617e23\",\r\n\"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:05:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"228"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e4-HYLteWiVB7992kJ6f6wjEJyqZrE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4d644b70-c333-4983-8da0-bbc49b11884e\",\n    \"subsessionId\": \"fec19620-7e8d-4dd3-b560-507e18617e23\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"updatedAt\": \"2023-06-28T20:05:58.445Z\",\n    \"createdAt\": \"2023-06-28T20:05:58.445Z\"\n}"}],"_postman_id":"66fa4b2c-e782-4d69-bf33-e0a6eb480547"},{"name":"Read a Speaker-Subsession relationship","id":"868a18eb-a4e9-43ff-9956-9804cf361cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2/:id","description":"<p>Retrieve single record for a related subsession and speaker</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>speakers</td>\n<td>subsessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speaker-subsession","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"358da84b-ad12-4672-b754-54773cb5f0dd","type":"any","value":"4d644b70-c333-4983-8da0-bbc49b11884e","key":"id"}]}},"response":[{"id":"aa262b9a-bab3-4ae0-a26f-99989a598497","name":"Read a speaker-subsession relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speaker-subsession","v2",":id"],"variable":[{"key":"id","value":"4d644b70-c333-4983-8da0-bbc49b11884e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:06:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"228"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e4-Dc2yl/fPZgk/WQbM40ibgzUr61s\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4d644b70-c333-4983-8da0-bbc49b11884e\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"subsessionId\": \"fec19620-7e8d-4dd3-b560-507e18617e23\",\n    \"createdAt\": \"2023-06-28T20:05:58.445Z\",\n    \"updatedAt\": \"2023-06-28T20:05:58.445Z\"\n}"},{"id":"a6e9340e-d73b-4f53-ba00-4ed75d969d8a","name":"Read a Speaker-Subsession relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2/:id?include=speakers,subsessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speaker-subsession","v2",":id"],"query":[{"key":"include","value":"speakers,subsessions"}],"variable":[{"key":"id","value":"a4141fa2-d186-4768-b47f-ec5a178305c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2629"},{"key":"ETag","value":"W/\"a45-Pc6zvJXWDf+7wzc9Z58RsWYg4Qk\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:02:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a4141fa2-d186-4768-b47f-ec5a178305c9\",\n    \"speakerId\": \"aa664955-b1b5-4077-93db-24733aec473a\",\n    \"subsessionId\": \"3e7997c3-11a3-4e68-902d-e13325f8c533\",\n    \"createdAt\": \"2023-05-19T00:02:51.131Z\",\n    \"updatedAt\": \"2023-05-19T00:02:51.131Z\",\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"aa664955-b1b5-4077-93db-24733aec473a\",\n                \"producerRecordIdentifier\": \"4u8q6\",\n                \"prefix\": \"Ms.\",\n                \"preferredName\": \"Tomas\",\n                \"firstName\": \"Muhammad\",\n                \"middleName\": \"Leslie\",\n                \"lastName\": \"Gislason\",\n                \"suffix\": \"DVM\",\n                \"degree\": \"Regional Implementation Consultant\",\n                \"title\": \"Human Infrastructure Technician\",\n                \"organization\": \"Planner\",\n                \"city\": \"North Kamron\",\n                \"state\": \"Ohio\",\n                \"country\": \"Uruguay\",\n                \"email\": \"Izabella_Hilpert@yahoo.com\",\n                \"emailTwo\": \"Rhea.Satterfield@yahoo.com\",\n                \"phoneNumber\": \"(485) 953-1955\",\n                \"mobileNumber\": \"(259) 284-4158 x4434\",\n                \"faxNumber\": \"495-827-3904 x3078\",\n                \"otherPhoneNumber\": \"(582) 649-7987\",\n                \"isVip\": false,\n                \"website\": \"https://late-canopy.info\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/457.jpg\",\n                \"biographyText\": \"Senior\",\n                \"customAttributes\": \"{\\\"foo\\\":92264,\\\"bar\\\":\\\"1vPG*Ol_D+\\\",\\\"bike\\\":\\\"O9Jptu`M<G\\\",\\\"a\\\":\\\"8gi3&fH$`_\\\",\\\"b\\\":\\\"pl|roQGxV5\\\",\\\"name\\\":\\\"AR7|oIpveu\\\",\\\"prop\\\":62666}\",\n                \"createdAt\": \"2023-05-19T00:02:51.128Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.128Z\",\n                \"eventId\": \"73bc14b7-fe09-4707-a217-12d963fb48e6\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"subsessions\": {\n        \"collection\": [\n            {\n                \"id\": \"3e7997c3-11a3-4e68-902d-e13325f8c533\",\n                \"producerRecordIdentifier\": \"f5y97\",\n                \"clientIdentifier\": \"u84qh\",\n                \"fullName\": \"Creative qui et Subsession\",\n                \"description\": null,\n                \"hasAudienceResponseSystem\": false,\n                \"sortOrder\": 72638,\n                \"startsAt\": \"2023-05-19T00:02:51.115Z\",\n                \"endsAt\": \"2023-05-23T00:02:51.066Z\",\n                \"customAttributes\": \"{\\\"foo\\\":18574,\\\"bar\\\":\\\"=F,?X!-mJ}\\\",\\\"bike\\\":\\\"qkA%_2\\\\\\\\?d;\\\",\\\"a\\\":88637,\\\"b\\\":41635,\\\"name\\\":\\\"XzzwJp/@AO\\\",\\\"prop\\\":\\\"Z\\\\\\\"iFNPod:q\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:51.115Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.115Z\",\n                \"eventId\": \"503eb9cc-6d30-4e9f-b0bc-7b4d289d8846\",\n                \"sessionId\": \"9d1fea4f-d7f2-42d9-9b05-d1e0264bf117\",\n                \"subsessionformatId\": \"6f78d44e-7d50-4cb3-832e-f29753c59204\",\n                \"subsessiontypeId\": \"337ae810-c58c-4ba1-b490-b9b56a37e86d\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"speaker\": {\n                \"href\": \"/speakers/v2/aa664955-b1b5-4077-93db-24733aec473a\"\n            },\n            \"subsession\": {\n                \"href\": \"/subsessions/v2/3e7997c3-11a3-4e68-902d-e13325f8c533\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"868a18eb-a4e9-43ff-9956-9804cf361cfb"},{"name":"Destroy a Speaker-Subsession relationship","id":"6052fbf2-06a6-4a9f-964e-d913e216055d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2/:id","description":"<p>Delete a record so that subsession and speaker records are no longer associated</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["speaker-subsession","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"f79b76c8-1ea4-4a58-b185-370249f8e87b","type":"any","value":"4d644b70-c333-4983-8da0-bbc49b11884e","key":"id"}]}},"response":[{"id":"5e49e7e1-ab5c-4e87-b3dc-4d966ec2699e","name":"Destroy a speaker-subsession relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/speaker-subsession/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["speaker-subsession","v2",":id"],"variable":[{"key":"id","value":"4d644b70-c333-4983-8da0-bbc49b11884e"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:06:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"228"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e4-Dc2yl/fPZgk/WQbM40ibgzUr61s\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4d644b70-c333-4983-8da0-bbc49b11884e\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"subsessionId\": \"fec19620-7e8d-4dd3-b560-507e18617e23\",\n    \"createdAt\": \"2023-06-28T20:05:58.445Z\",\n    \"updatedAt\": \"2023-06-28T20:05:58.445Z\"\n}"}],"_postman_id":"6052fbf2-06a6-4a9f-964e-d913e216055d"}],"id":"e87326ed-57a4-48b7-845c-fbe2f3dc6438","description":"<p>Collection of CRUD operations and options to create, read and delete subsession-speaker relationship</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID (uuid).</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>string</td>\n<td>Speaker ID (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>string</td>\n<td>Subsession ID (uuid).</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e87326ed-57a4-48b7-845c-fbe2f3dc6438","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Subsessiontypes (v2)","item":[{"name":"List Subsessiontypes","id":"7d946d17-c6b9-4bc4-b01a-54c52c462887","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2","description":"<p>Retrieve a collection of subsessiontypes along with meta information.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessiontypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c150996c-aa39-4662-98be-d2e3de2a8e21","name":"List subsessiontypes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessiontypes","v2"],"query":[{"key":"filter[fullName][startsWith]","value":"Satellite","description":"filters subsessiontypes that have full name starting wih \"Satellite\"","disabled":true},{"key":"filter[description][ne]","value":"null","description":"filters subsessiontypes that have description not equal to null.","disabled":true},{"key":"page","value":"2","description":"filters subsessiontypes on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:07:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"30303"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"765f-9g4DQdD7X5VcWmAhx7B+U8YQFzE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"7cf9a6a6-6ad1-4305-9f1a-0a90e323b332\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n            \"fullName\": \"Forums\",\n            \"description\": null,\n            \"createdAt\": \"2023-02-24T11:57:33.478Z\",\n            \"updatedAt\": \"2023-02-24T11:57:33.478Z\",\n            \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\"\n        },\n        {\n            \"id\": \"7bb75f37-dfdf-4122-8c8d-1c258c787c89\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e980\",\n            \"fullName\": \"Cardiovascular Seminar\",\n            \"description\": \"This Subsessiontype will showcase cardiovascular related symptoms.\",\n            \"createdAt\": \"2023-06-12T20:12:16.201Z\",\n            \"updatedAt\": \"2023-06-12T20:12:16.201Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n        },\n        {\n            \"id\": \"93e26655-f6b1-4ff6-b9a8-2da42f1f27f6\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e65a\",\n            \"fullName\": \"Early Career\",\n            \"description\": null,\n            \"createdAt\": \"2023-06-12T20:12:20.502Z\",\n            \"updatedAt\": \"2023-06-12T20:12:20.502Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n        },\n        {\n            \"id\": \"e4eb9378-b4e0-4986-ae47-baa1b9db388a\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e4b1\",\n            \"fullName\": \"Joint Sessions\",\n            \"description\": null,\n            \"createdAt\": \"2023-06-12T20:12:27.954Z\",\n            \"updatedAt\": \"2023-06-12T20:12:27.954Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 4,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 4\n    }\n}"}],"_postman_id":"7d946d17-c6b9-4bc4-b01a-54c52c462887"},{"name":"Create a Subsessiontype","id":"46a18d1d-908b-4216-a9c2-4b5d05b33990","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"513fe0c7-6e03-479f-98d7-f165545c62bb\",\n    \"fullName\": \"Satellite Symposia\",\n    \"description\": \"Satellite Symposia\",\n    \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2","description":"<p>Create a new subsessiontype.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required field.  <br />Event ID to be linked to the subsessiontype record. (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated with subsessiontype.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Required field.  <br />Full name of a subsessiontype.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional field.  <br />Description of a subsessiontype.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessiontypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"ecf4a0e5-500b-4531-9ced-2d3ac7c2b164","name":"Create a subsessiontype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"513fe0c7-6e03-479f-98d7-f165545c62bb\",\n    \"fullName\": \"Satellite Symposia\",\n    \"description\": \"Satellite Symposia\",\n    \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:13:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"305"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"131-7pqBslcmOzsXzIxACDQAxil11Ag\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"85ca3bf9-0964-46ac-bf19-56fa4a66bda6\",\n    \"producerRecordIdentifier\": \"513fe0c7-6e03-479f-98d7-f165545c62bb\",\n    \"fullName\": \"Satellite Symposia\",\n    \"description\": \"Satellite Symposia\",\n    \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\",\n    \"updatedAt\": \"2023-06-20T19:13:45.308Z\",\n    \"createdAt\": \"2023-06-20T19:13:45.308Z\"\n}"}],"_postman_id":"46a18d1d-908b-4216-a9c2-4b5d05b33990"},{"name":"Read a Subsessiontype","id":"dcd7effd-c588-44c0-ab2c-deb7466cd134","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2/:subsessiontypeId","description":"<p>Retrieve a single subsessiontype record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>subsessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessiontypes","v2",":subsessiontypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"2a2932cc-1f22-4648-8790-e07896ecf1ba","description":{"content":"<p>Subsessiontype ID.</p>\n","type":"text/plain"},"type":"any","value":"85ca3bf9-0964-46ac-bf19-56fa4a66bda6","key":"subsessiontypeId"}]}},"response":[{"id":"b7097980-7dd0-4f80-8b49-f63e76ca0e8d","name":"Read a subsessiontype","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2/:subsessiontypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessiontypes","v2",":subsessiontypeId"],"variable":[{"key":"subsessiontypeId","value":"85ca3bf9-0964-46ac-bf19-56fa4a66bda6","description":"Subsessiontype ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:15:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"305"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"131-VXb2aO3i4vp+0hdzERi1ZAt1L+Y\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"85ca3bf9-0964-46ac-bf19-56fa4a66bda6\",\n    \"producerRecordIdentifier\": \"513fe0c7-6e03-479f-98d7-f165545c62bb\",\n    \"fullName\": \"Satellite Symposia\",\n    \"description\": \"Satellite Symposia\",\n    \"createdAt\": \"2023-06-20T19:13:45.308Z\",\n    \"updatedAt\": \"2023-06-20T19:13:45.308Z\",\n    \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\"\n}"},{"id":"f7aa70bb-e074-486f-8670-9f0b08df717d","name":"Read a Subsessiontype with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2/:subsessiontypeId?include=subsessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessiontypes","v2",":subsessiontypeId"],"query":[{"key":"include","value":"subsessions"}],"variable":[{"key":"subsessiontypeId","value":"cf2c9561-e3c8-43ae-88ee-7a179cc69699","description":"Subsessiontype ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1479"},{"key":"ETag","value":"W/\"5c7-U/uy5Lsm9nLOmoyjamP/BxoAHEM\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:04:06 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"cf2c9561-e3c8-43ae-88ee-7a179cc69699\",\n    \"producerRecordIdentifier\": \"9oy15\",\n    \"fullName\": \"Response rerum maiores sed\",\n    \"description\": \"Adaptive background instruction set deploy integrated interfaces\",\n    \"createdAt\": \"2023-05-19T00:02:51.008Z\",\n    \"updatedAt\": \"2023-05-19T00:02:51.008Z\",\n    \"eventId\": \"63608033-b36f-4148-9058-7f43739e6657\",\n    \"subsessions\": {\n        \"collection\": [\n            {\n                \"id\": \"930cea99-b0cf-49a4-a592-ead11da1ddc9\",\n                \"producerRecordIdentifier\": \"kl775\",\n                \"clientIdentifier\": \"f2yln\",\n                \"fullName\": \"Integration consectetur vel Subsession\",\n                \"description\": null,\n                \"hasAudienceResponseSystem\": false,\n                \"sortOrder\": 8280,\n                \"startsAt\": \"2023-05-19T00:02:51.011Z\",\n                \"endsAt\": \"2023-05-22T00:02:50.969Z\",\n                \"customAttributes\": {\n                    \"a\": \"pR<ydNY2Y0\",\n                    \"b\": \"B0#6l9W{%o\",\n                    \"bar\": \"<F^bPz\\\"&7s\",\n                    \"foo\": 24876,\n                    \"bike\": \"'W}knAtfOE\",\n                    \"name\": 38614,\n                    \"prop\": 15670\n                },\n                \"createdAt\": \"2023-05-19T00:02:51.011Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.011Z\",\n                \"eventId\": \"db199692-2896-426c-b8ed-263019e062fe\",\n                \"sessionId\": \"f2175759-021c-432e-9223-1898d49acbc4\",\n                \"subsessionformatId\": \"896cb355-69b6-4b72-b372-b94f0166f8cc\",\n                \"subsessiontypeId\": \"cf2c9561-e3c8-43ae-88ee-7a179cc69699\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/63608033-b36f-4148-9058-7f43739e6657\"\n            }\n        },\n        \"children\": {\n            \"subsessions\": {\n                \"href\": \"/subsessions/v2?filter[subsessiontypeId][eq]=cf2c9561-e3c8-43ae-88ee-7a179cc69699\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"dcd7effd-c588-44c0-ab2c-deb7466cd134"},{"name":"Update a Subsessiontype","id":"acb88c4b-2eda-43bf-b898-53f9738c3ec1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"Homepage video\",\n    \"description\": \"Homepage video display\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2/:subsessiontypeId","description":"<p>Modify one or more fields on the single Subsessiontype record of the supplied Subsessiontype ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required field.  <br />Event ID to be linked to the subsessiontype record. (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated with subsessiontype.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Required field.  <br />Full name of a subsessiontype.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional field.  <br />Description of a subsessiontype.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessiontypes","v2",":subsessiontypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"b32f8fe9-0fcc-461c-89df-b5a76019ebf5","description":{"content":"<p>Subsessiontype ID.</p>\n","type":"text/plain"},"type":"any","value":"85ca3bf9-0964-46ac-bf19-56fa4a66bda6","key":"subsessiontypeId"}]}},"response":[{"id":"fe4d3112-1959-425d-9dfc-430b17b8259e","name":"Update a subsessiontype","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"Homepage video\",\n    \"description\": \"Homepage video display\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2/:subsessiontypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessiontypes","v2",":subsessiontypeId"],"variable":[{"key":"subsessiontypeId","value":"85ca3bf9-0964-46ac-bf19-56fa4a66bda6","description":"Subsessiontype ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:16:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"271"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"10f-eM/fDCa9RTP3jAaBCEsODXww/pw\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"85ca3bf9-0964-46ac-bf19-56fa4a66bda6\",\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"Homepage video\",\n    \"description\": \"Homepage video display\",\n    \"createdAt\": \"2023-06-20T19:13:45.308Z\",\n    \"updatedAt\": \"2023-06-20T19:16:20.975Z\",\n    \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\"\n}"}],"_postman_id":"acb88c4b-2eda-43bf-b898-53f9738c3ec1"},{"name":"Destroy a Subsessiontype","id":"5b220f8d-8c0f-4382-8697-4e59bc6cd623","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2/:subsessiontypeId","description":"<p>Delete a subsessiontype record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessiontypes","v2",":subsessiontypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"fabe1041-5377-4588-94c2-015d9fd9a55a","description":{"content":"<p>Subsessiontype ID.</p>\n","type":"text/plain"},"type":"any","value":"85ca3bf9-0964-46ac-bf19-56fa4a66bda6","key":"subsessiontypeId"}]}},"response":[{"id":"8b3a8dc7-479e-4a52-a194-94de1f63416f","name":"Destroy a subsessiontype","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessiontypes/v2/:subsessiontypeId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessiontypes","v2",":subsessiontypeId"],"variable":[{"key":"subsessiontypeId","value":"85ca3bf9-0964-46ac-bf19-56fa4a66bda6","description":"Subsessiontype ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:16:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"271"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"10f-eM/fDCa9RTP3jAaBCEsODXww/pw\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"85ca3bf9-0964-46ac-bf19-56fa4a66bda6\",\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"Homepage video\",\n    \"description\": \"Homepage video display\",\n    \"createdAt\": \"2023-06-20T19:13:45.308Z\",\n    \"updatedAt\": \"2023-06-20T19:16:20.975Z\",\n    \"eventId\": \"46bd5bf8-2dfa-47cc-b3af-f94ac053d812\"\n}"}],"_postman_id":"5b220f8d-8c0f-4382-8697-4e59bc6cd623"}],"id":"5d42b4cb-dac1-4d6f-8086-5a4352d700d8","description":"<p>Collection of CRUD operations and options to interact with Subsessiontypes.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Subsessiontype ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID to be linked to the subsessiontype record. (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with a subsessiontype.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5d42b4cb-dac1-4d6f-8086-5a4352d700d8","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Subsessionformats (v2)","item":[{"name":"List Subsessionformats","id":"2ac0672a-feff-4baa-beca-4936f14549f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionformats/v2","description":"<p>Retrieve a collection of sessionformats.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionformats","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"9a88d963-c7ce-4cf9-a488-aa350fb67df0","name":"List subsessionformats","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionformats/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionformats","v2"],"query":[{"key":"filter[fullName][eq]","value":"Virtual","description":"fullName equals \"Virtual\".","disabled":true},{"key":"page","value":"2","description":"page number to retrieve the records.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:17:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"596"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"254-8Y8fSZVbt7CfjLcDM22Azca1hbQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"be70aa5e-2d44-4f65-b95e-efdf94ebf79a\",\n            \"fullName\": \"Remote\",\n            \"createdAt\": \"2022-09-23T16:15:34.145Z\",\n            \"updatedAt\": \"2022-09-23T16:15:34.145Z\"\n        },\n        {\n            \"id\": \"2d6b5510-03a0-447b-a31b-db5e15072b15\",\n            \"fullName\": \"On-Demand\",\n            \"createdAt\": \"2022-09-23T16:15:34.145Z\",\n            \"updatedAt\": \"2022-09-23T16:15:34.145Z\"\n        },\n        {\n            \"id\": \"d4c0f59b-a701-4eda-9b59-975fec5560f0\",\n            \"fullName\": \"In-Person\",\n            \"createdAt\": \"2022-09-23T16:15:34.145Z\",\n            \"updatedAt\": \"2022-09-23T16:15:34.145Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 3,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 3\n    }\n}"}],"_postman_id":"2ac0672a-feff-4baa-beca-4936f14549f1"},{"name":"Read a Subsessionformat","id":"6d09f49d-a5be-43b6-9b1c-8a9121a06a83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionformats/v2/:subsessionformatId","description":"<p>Retrieve a single sessionformat record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionformats","v2",":subsessionformatId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"type":"any","value":"d4c0f59b-a701-4eda-9b59-975fec5560f0","key":"subsessionformatId"}]}},"response":[{"id":"e782c151-2f40-403a-bb79-9693b100bb8b","name":"Read a subsessionformat","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionformats/v2/:subsessionformatId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionformats","v2",":subsessionformatId"],"variable":[{"key":"subsessionformatId","value":"d4c0f59b-a701-4eda-9b59-975fec5560f0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:18:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"146"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"92-YcsyzwE1mQ7w+JcoMC57IGeutWw\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d4c0f59b-a701-4eda-9b59-975fec5560f0\",\n    \"fullName\": \"In-Person\",\n    \"createdAt\": \"2022-09-23T16:15:34.145Z\",\n    \"updatedAt\": \"2022-09-23T16:15:34.145Z\"\n}"}],"_postman_id":"6d09f49d-a5be-43b6-9b1c-8a9121a06a83"}],"id":"e8cf5cd0-4a54-4cad-9f4c-b32b43b4daa4","description":"<p>Collection of operations and options to interact with Subsessionformats.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Subsessionformat ID (uuid).</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name of a subsessionformat record.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e8cf5cd0-4a54-4cad-9f4c-b32b43b4daa4","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Subsessionlinks (v2)","item":[{"name":"List Subsessionlinks","id":"f867a9fa-c16f-49ae-8756-81c9da2a5978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2","description":"<p>Retrieve a collection of subsessionlinks.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"379b914c-21b2-443f-96cc-52423b816dcd","name":"List subsessionlinks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionlinks","v2"],"query":[{"key":"filter[fullName][eq]","value":"Sample Subsessionlink","description":"filters sub session link records that have full name equals to \"Sample Subsessionlink\"","disabled":true},{"key":"filter[fullName][startsWith]","value":"Sample","description":"filters sub session link records that have full name starting with \"Sample\"","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"filters sub session link records that have ID equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"filters sub session link records created on and after  \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filters sub session link records created on and before  \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filters sub session link records updated after  \"2022-04-12\"","disabled":true},{"key":"filter[createdAt][eq]","value":"2022-03-31T15:27:01.076Z","description":"filters sub session link records created at \"2022-03-31T15:27:01.076Z\" ","disabled":true},{"key":"filter[type][substring]","value":"survey","description":"filter session links having \"survey\" as a substring in type","disabled":true},{"key":"filter[producerRecordIdentifier][is]","value":"null","description":"filters sub session link records that have producer record ientifier as NULL","disabled":true},{"key":"page","value":"2","description":"filters sub session link records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:19:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"35136"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"8940-ShJK+v6naz/XlxcoO6se+lrD8jo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"957e1527-d157-4d0a-9fd2-9b4432c63587\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n            \"fullName\": \"Subsession Survey\",\n            \"value\": \"www.subsessionsurveylink.com\",\n            \"type\": \"SubSurveyUrl\",\n            \"createdAt\": \"2023-02-09T08:49:13.965Z\",\n            \"updatedAt\": \"2023-02-09T08:49:13.965Z\",\n            \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\",\n            \"subsessionId\": \"bd8c1123-9589-4df4-849f-94fac05d1a17\"\n        },\n        {\n            \"id\": \"e9086615-e52f-4bf9-82bb-ad256c6ef6d7\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n            \"fullName\": \"CME Link\",\n            \"value\": \"www.cmelink.com\",\n            \"type\": \"cmeLink\",\n            \"createdAt\": \"2023-02-09T08:49:14.178Z\",\n            \"updatedAt\": \"2023-02-09T08:49:14.178Z\",\n            \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\",\n            \"subsessionId\": \"87b5f5ac-8345-429e-a1c2-7f4af8cc54b5\"\n        },\n        {\n            \"id\": \"ea6299e6-c762-46b1-83ce-0a4df6eac83e\",\n            \"producerRecordIdentifier\": null,\n            \"fullName\": \"Pediatric Neurosurgery Cambodia experience\",\n            \"value\": \"EventFiles\\\\youreventlive22\\\\SurveyFiles\\\\Uploads\\\\25389291\\\\OverallSurvey.pptx\",\n            \"type\": \"SubSurveyUrl\",\n            \"createdAt\": \"2023-02-08T06:11:36.576Z\",\n            \"updatedAt\": \"2023-02-08T06:11:36.576Z\",\n            \"eventId\": \"bb617680-3ffc-49a8-b297-b7404441b94c\",\n            \"subsessionId\": \"570adab3-47a8-40a1-8cd1-1c36526d097a\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 3,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 3\n    }\n}"}],"_postman_id":"f867a9fa-c16f-49ae-8756-81c9da2a5978"},{"name":"Create a Subsessionlink","id":"849a225c-81c3-4808-a6b4-22fb160b3188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"SubsessionLink for CME\",\n    \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n    \"type\": \"CME link\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n    \"subsessionId\": \"bd8c1123-9589-4df4-849f-94fac05d1a17\",\n    \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2","description":"<p>Create a new subsessionlink record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subsessionId</td>\n<td>string</td>\n<td>Required Field.  <br />Subsession ID linked to the subsession Link (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field.  <br />Event ID linked to the Subsession Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional Field.  <br />Producer record identifier associated to the subsession link record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Required Field.  <br />Type of subsession link</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Optional Field.  <br />Value associated to the subsession Link record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Optional Field.  <br />Full Name assigned to the subsession Link record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"75f330b1-cb42-4f07-8ae7-03be5d0a959b","name":"Create a subsessionlink","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"SubsessionLink for CME\",\n    \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n    \"type\": \"CME link\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n    \"subsessionId\": \"bd8c1123-9589-4df4-849f-94fac05d1a17\",\n    \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:27:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"468"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1d4-nHorD53IBBjHZ0pS0hRSvvuXWZE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c8498943-09b6-4526-afb6-eea1a7708ab3\",\n    \"fullName\": \"SubsessionLink for CME\",\n    \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n    \"type\": \"CME link\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n    \"subsessionId\": \"bd8c1123-9589-4df4-849f-94fac05d1a17\",\n    \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\",\n    \"updatedAt\": \"2023-06-20T19:27:04.371Z\",\n    \"createdAt\": \"2023-06-20T19:27:04.371Z\"\n}"}],"_postman_id":"849a225c-81c3-4808-a6b4-22fb160b3188"},{"name":"Read a Subsessionlink","id":"e1a29ffb-ca11-4ae9-a067-b02e38aa27a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2/:subsessionlinkId","description":"<p>Retrieve a single subsessionlink record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>subsessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionlinks","v2",":subsessionlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"828d27bb-3d1c-4822-8571-0a3b2941fa7e","type":"any","value":"c8498943-09b6-4526-afb6-eea1a7708ab3","key":"subsessionlinkId"}]}},"response":[{"id":"b90b640e-d408-4e21-a2f7-f92e3813f057","name":"Read a subsessionlink","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2/:subsessionlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionlinks","v2",":subsessionlinkId"],"variable":[{"key":"subsessionlinkId","value":"c8498943-09b6-4526-afb6-eea1a7708ab3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:27:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"468"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1d4-P2is9A5PssyU9pOrnumgJXrLf+A\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c8498943-09b6-4526-afb6-eea1a7708ab3\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa190\",\n    \"fullName\": \"SubsessionLink for CME\",\n    \"value\": \"EventFiles\\\\youreventlive22\\\\ModeratorFiles\\\\Uploads\\\\25389291\\\\Treating the Family and Not the Individual.pptx\",\n    \"type\": \"CME link\",\n    \"createdAt\": \"2023-06-20T19:27:04.371Z\",\n    \"updatedAt\": \"2023-06-20T19:27:04.371Z\",\n    \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\",\n    \"subsessionId\": \"bd8c1123-9589-4df4-849f-94fac05d1a17\"\n}"},{"id":"724e64c0-32f6-4ffd-b3b2-11d9a7d5fbff","name":"Read a Subsessionlink with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2/:subsessionlinkId?include=subsessions","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionlinks","v2",":subsessionlinkId"],"query":[{"key":"include","value":"subsessions"}],"variable":[{"key":"subsessionlinkId","value":"ee482dfb-c0b7-4269-81f9-b8b3abbf9e9d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1603"},{"key":"ETag","value":"W/\"643-aM6CR+CFg+n8WSxWwDPyVu0QDzA\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:11:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ee482dfb-c0b7-4269-81f9-b8b3abbf9e9d\",\n    \"producerRecordIdentifier\": \"EcawV\",\n    \"fullName\": \"Grocery subsessionlink\",\n    \"value\": \"https://watchful-graphic.biz\",\n    \"type\": \"SubInteractionKey\",\n    \"createdAt\": \"2023-05-30T15:56:45.292Z\",\n    \"updatedAt\": \"2023-05-30T15:56:45.292Z\",\n    \"eventId\": \"33d74f06-4718-4dd5-871d-4e040b327cbb\",\n    \"subsessionId\": \"7387cd60-6cda-491d-910f-784c7ded52e9\",\n    \"subsessions\": {\n        \"collection\": [\n            {\n                \"id\": \"7387cd60-6cda-491d-910f-784c7ded52e9\",\n                \"producerRecordIdentifier\": \"KNFSs\",\n                \"clientIdentifier\": \"bNZDt\",\n                \"fullName\": \"Applications est voluptates Subsession\",\n                \"description\": \"Cross-group zero tolerance hardware integrate 24/7 systems\",\n                \"hasAudienceResponseSystem\": false,\n                \"sortOrder\": 638748140,\n                \"startsAt\": \"2023-05-30T15:56:45.289Z\",\n                \"endsAt\": \"2023-06-01T15:56:45.247Z\",\n                \"customAttributes\": \"{\\\"foo\\\":\\\"OOE,M1'Pwa\\\",\\\"bar\\\":401564468510720,\\\"bike\\\":\\\"@;Kd}<TQCW\\\",\\\"a\\\":\\\"17T9Y&+Y}W\\\",\\\"b\\\":2732536379736064,\\\"name\\\":1154298972995584,\\\"prop\\\":7782072143839232}\",\n                \"createdAt\": \"2023-05-30T15:56:45.289Z\",\n                \"updatedAt\": \"2023-05-30T15:56:45.289Z\",\n                \"eventId\": \"396a103d-9300-4960-a0e9-43a51b7a7fec\",\n                \"sessionId\": \"9efa49dd-44e4-4e67-a983-63a9fd9ec6ab\",\n                \"subsessionformatId\": \"ddc893c9-6bbc-4e7d-8557-ef0ff964b20b\",\n                \"subsessiontypeId\": \"e573367b-7df1-4db8-a249-5f0fc30b8b51\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/33d74f06-4718-4dd5-871d-4e040b327cbb\"\n            },\n            \"subsession\": {\n                \"href\": \"/subsessions/v2/7387cd60-6cda-491d-910f-784c7ded52e9\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"e1a29ffb-ca11-4ae9-a067-b02e38aa27a1"},{"name":"Update a Subsessionlink","id":"fe64ee15-b0bf-436f-9d88-168629949019","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"surveyLink\",\n    \"producerRecordIdentifier\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2/:subsessionlinkId","description":"<p>Modify one or more fields on the single Subsessionlink record of the supplied Subsessionlink ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subsessionId</td>\n<td>UUID string</td>\n<td>Subsession ID linked to the subsession Link (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID linked to the Subsession Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the subsession link record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of subsession link</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the subsession Link record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full Name assigned to the subsession Link record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionlinks","v2",":subsessionlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"bf0b5f62-7372-48ec-92b3-ead435bc1e09","description":{"content":"<p>Subsession Link Id</p>\n","type":"text/plain"},"type":"any","value":"c8498943-09b6-4526-afb6-eea1a7708ab3","key":"subsessionlinkId"}]}},"response":[{"id":"83183eb3-2572-4824-9055-f0e711871000","name":"Update a subsessionlink","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"surveyLink\",\n    \"producerRecordIdentifier\": null\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2/:subsessionlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionlinks","v2",":subsessionlinkId"],"variable":[{"key":"subsessionlinkId","value":"c8498943-09b6-4526-afb6-eea1a7708ab3","description":"Subsession Link Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:32:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"326"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"146-ZqEdnyqxbjnEoDHqCgQLVLWDE+w\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c8498943-09b6-4526-afb6-eea1a7708ab3\",\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"surveyLink\",\n    \"value\": \"www.cmelink.com\",\n    \"type\": \"CME link\",\n    \"createdAt\": \"2023-06-20T19:27:04.371Z\",\n    \"updatedAt\": \"2023-06-20T19:32:29.316Z\",\n    \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\",\n    \"subsessionId\": \"bd8c1123-9589-4df4-849f-94fac05d1a17\"\n}"}],"_postman_id":"fe64ee15-b0bf-436f-9d88-168629949019"},{"name":"Destroy a Subsessionlink","id":"9a7d938f-3515-4f87-8453-3d87a4608bd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2/:subsessionlinkId","description":"<p>Delete a subsessionlink record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionlinks","v2",":subsessionlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"92e0a0ca-3307-4d95-b691-26fd9f230337","description":{"content":"<p>Subsession Link Id</p>\n","type":"text/plain"},"type":"any","value":"c8498943-09b6-4526-afb6-eea1a7708ab3","key":"subsessionlinkId"}]}},"response":[{"id":"e7b1616e-ee4d-44e2-9618-53b7266c88f3","name":"Destroy a subsessionlink","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionlinks/v2/:subsessionlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionlinks","v2",":subsessionlinkId"],"variable":[{"key":"subsessionlinkId","value":"c8498943-09b6-4526-afb6-eea1a7708ab3","description":"Subsession Link Id"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:33:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"326"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"146-ZqEdnyqxbjnEoDHqCgQLVLWDE+w\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c8498943-09b6-4526-afb6-eea1a7708ab3\",\n    \"producerRecordIdentifier\": null,\n    \"fullName\": \"surveyLink\",\n    \"value\": \"www.cmelink.com\",\n    \"type\": \"CME link\",\n    \"createdAt\": \"2023-06-20T19:27:04.371Z\",\n    \"updatedAt\": \"2023-06-20T19:32:29.316Z\",\n    \"eventId\": \"699e51f6-6d1e-484e-b9e9-fa1db9e6b8ed\",\n    \"subsessionId\": \"bd8c1123-9589-4df4-849f-94fac05d1a17\"\n}"}],"_postman_id":"9a7d938f-3515-4f87-8453-3d87a4608bd8"}],"id":"07e0b736-94eb-4f13-969b-69b2e8731c48","description":"<p>Collection of CRUD operations and options to interact with Subsession Links.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Sub session Link ID (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>string</td>\n<td>Subsession ID linked to the subsession Link (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Subsession Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the subsession link record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of subsession link</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the subsession Link record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full Name assigned to the subsession Link record</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"07e0b736-94eb-4f13-969b-69b2e8731c48","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Subsessionfiles (v2)","item":[{"name":"List Subsessionfiles","id":"d5c8dcdb-8f55-4789-ae34-0331b63c66d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2","description":"<p>Retrieve a collection of subsessionfiles.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionfiles","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"f5f37f1b-e561-44e4-ba3f-af771bb90aa2","name":"List subsessionfiles","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionfiles","v2"],"query":[{"key":"filter[name][eq]","value":"Sample subsession File","description":"filters subsession files that have name equals to \"Sample subsession File\"","disabled":true},{"key":"filter[name][startsWith]","value":"Sample","description":"filters subsession files that have name starting with \"Sample\"","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"filters subsession files that have ID equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"filters subsession files created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filters subsession files created on and before \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filters subsession files created after \"2022-04-12\"","disabled":true},{"key":"filter[createdAt][eq]","value":"2022-03-31T15:27:01.076Z","description":"filters subsession files created at \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[producerRecordIdentifier][is]","value":"null","description":"filters subsession files that have producerRecordIdentifier as Null","disabled":true},{"key":"page","value":"2","description":"filters subsession files on page 2","disabled":true},{"key":"filter[extension][substring]","value":"png","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:34:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"51258"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"c83a-DyBU4iQ8I8TixsrlHh8egoRJXgQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"sizeInBytes\": null,\n            \"id\": \"fdc57e2e-fe4d-4c7f-ac1c-01ab55f73c1c\",\n            \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa156\",\n            \"name\": \"Exhibitor List\",\n            \"url\": \"www.exhibitor.com\",\n            \"type\": \"Auxilary\",\n            \"extension\": \"pdf\",\n            \"systemPath\": \"EventFiles\\\\asmbs2022\\\\ModeratorFiles\\\\Uploads\\\\25372432\\\\Exh_List.pdf\",\n            \"createdAt\": \"2023-06-12T20:18:59.458Z\",\n            \"updatedAt\": \"2023-06-12T20:18:59.458Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"subsessionId\": \"876c422e-305d-4482-abe5-56fe17ae4260\"\n        },\n        {\n            \"sizeInBytes\": 74349491,\n            \"id\": \"7b9dece0-e03c-455d-bc97-5e72115ad4a3\",\n            \"producerRecordIdentifier\": \"d5af1738-2de5-4820-bc77-7bb1274cc074\",\n            \"name\": \"Testing File TRansfer.pdf\",\n            \"url\": \"https://filefunctionsubsessions.blob.core.windows.net/release301extest22/SubSessionHandout/1234567890123456/3eceb23c-4c0c-4aba-91c0-9fe73faab6c5.pdf\",\n            \"type\": \"Supplemental\",\n            \"extension\": \".pdf\",\n            \"systemPath\": null,\n            \"createdAt\": \"2023-03-23T05:44:03.481Z\",\n            \"updatedAt\": \"2023-03-23T05:44:03.481Z\",\n            \"eventId\": \"3f18b9d5-0e7f-465b-97b8-426f76b8a604\",\n            \"subsessionId\": \"20af4be2-a0db-40cc-a052-55a676c2790c\"\n        },\n        {\n            \"sizeInBytes\": 107723,\n            \"id\": \"32688bfd-6c36-46fd-932f-9131c9b9b03b\",\n            \"producerRecordIdentifier\": \"23363605-b7cc-4402-a199-c2931de02eef\",\n            \"name\": \"Brochure.pdf\",\n            \"url\": \"https://filesubsessionstage.blob.core.windows.net/activetest2/Supplemental/468731/23363605-b7cc-4402-a199-c2931de02eef.pdf\",\n            \"type\": \"Supplemental\",\n            \"extension\": \".pdf\",\n            \"systemPath\": null,\n            \"createdAt\": \"2023-04-04T08:14:25.113Z\",\n            \"updatedAt\": \"2023-04-04T08:14:25.113Z\",\n            \"eventId\": \"40e5c652-fc7b-4b84-b028-dffb16607394\",\n            \"subsessionId\": \"32ce8f4f-9b42-466b-b2ca-8ccbb816887a\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 3,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 3\n    }\n}"}],"_postman_id":"d5c8dcdb-8f55-4789-ae34-0331b63c66d7"},{"name":"Create a Subsessionfile","id":"8a489e72-a4bf-4e0b-83bb-415b04f10c96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fantastic Automotive File\",\n    \"url\": \"http://Fantastic.name\",\n    \"type\": \"Image\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/srv/associate_automotive.jpeg\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa165\",\n    \"subsessionId\": \"876c422e-305d-4482-abe5-56fe17ae4260\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2","description":"<p>Create a new subsessionfile record.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Required Field.  <br />Event ID linked to the Subsession File (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>UUID string</td>\n<td>Required Field.  <br />Subsession ID linked to the Subsession File (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional Field.  <br />Producer record identifier associated with the subsession file record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Required Field.  <br />name assigned to the subsession file</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Optional Field.  <br />URL/path associated to the subsession file.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Optional Field.  <br />Type of subsession file</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Optional Field.  <br />Extension of the subsession file</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>Optional Field.  <br />system path associated to the subsession file.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>Optional Field.  <br />size of file in bytes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionfiles","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"18850e0d-9f4e-42ea-af9c-f49009fe6b09","name":"Create a subsessionfile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Fantastic Automotive File\",\n    \"url\": \"http://Fantastic.name\",\n    \"type\": \"Image\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/srv/associate_automotive.jpeg\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa165\",\n    \"subsessionId\": \"876c422e-305d-4482-abe5-56fe17ae4260\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:43:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"456"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1c8-lS6LTB6j8jPM306HRt9UmhLMR7s\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"3c321fc3-9212-4224-bc91-527e31639374\",\n    \"name\": \"Fantastic Automotive File\",\n    \"url\": \"http://Fantastic.name\",\n    \"type\": \"Image\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/srv/associate_automotive.jpeg\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa165\",\n    \"subsessionId\": \"876c422e-305d-4482-abe5-56fe17ae4260\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"updatedAt\": \"2023-06-20T19:43:00.878Z\",\n    \"createdAt\": \"2023-06-20T19:43:00.878Z\"\n}"}],"_postman_id":"8a489e72-a4bf-4e0b-83bb-415b04f10c96"},{"name":"Read a Subsessionfile","id":"0e0390e9-6723-42a2-9cf9-f2dfd1b30997","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2/:subsessionfileId","description":"<p>Retrieve a single subsessionfile record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>subsesssions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionfiles","v2",":subsessionfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"fe747328-3969-462f-a3f2-ce9256ed5ab2","description":{"content":"<p>subsession file ID</p>\n","type":"text/plain"},"type":"any","value":"3c321fc3-9212-4224-bc91-527e31639374","key":"subsessionfileId"}]}},"response":[{"id":"decb8670-c78e-49f9-8710-2a5a78d7ea09","name":"Read a subsessionfile","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2/:subsessionfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionfiles","v2",":subsessionfileId"],"variable":[{"key":"subsessionfileId","value":"3c321fc3-9212-4224-bc91-527e31639374","description":"subsession file ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:43:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"456"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1c8-N41aSzZRmRJDPxUNGCs/skZMN3U\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"3c321fc3-9212-4224-bc91-527e31639374\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa165\",\n    \"name\": \"Fantastic Automotive File\",\n    \"url\": \"http://Fantastic.name\",\n    \"type\": \"Image\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/srv/associate_automotive.jpeg\",\n    \"createdAt\": \"2023-06-20T19:43:00.878Z\",\n    \"updatedAt\": \"2023-06-20T19:43:00.878Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"subsessionId\": \"876c422e-305d-4482-abe5-56fe17ae4260\"\n}"},{"id":"24088e78-bf5f-434a-b2e2-2e6f9c60b992","name":"Read a Subsessionfile with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2/:subsessionfileId?include=subsessions,events","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionfiles","v2",":subsessionfileId"],"query":[{"key":"include","value":"subsessions,events"}],"variable":[{"key":"subsessionfileId","value":"3fef4d68-4ae0-4131-876b-6587484b9767","description":"subsession file ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2355"},{"key":"ETag","value":"W/\"933-gi1v+edwfOSMh1WF9CySux7/sWM\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:12:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": 11424,\n    \"id\": \"3fef4d68-4ae0-4131-876b-6587484b9767\",\n    \"producerRecordIdentifier\": \"4sbkt\",\n    \"name\": \"Sports subsessionfile\",\n    \"url\": \"http://elegant-beanstalk.org\",\n    \"type\": \"SubSurveyFile\",\n    \"extension\": \"wav\",\n    \"systemPath\": \"/usr/src\",\n    \"createdAt\": \"2023-05-19T00:02:52.951Z\",\n    \"updatedAt\": \"2023-05-19T00:02:52.951Z\",\n    \"eventId\": \"99a5ab38-13ea-4b8e-bf2b-c55a86a6543e\",\n    \"subsessionId\": \"9d22c06c-f3c4-4f89-9fbe-1050fbb14b2c\",\n    \"subsessions\": {\n        \"collection\": [\n            {\n                \"id\": \"9d22c06c-f3c4-4f89-9fbe-1050fbb14b2c\",\n                \"producerRecordIdentifier\": \"16cy5\",\n                \"clientIdentifier\": \"p59dh\",\n                \"fullName\": \"Identity et provident Subsession\",\n                \"description\": \"Multi-channelled 24 hour secured line repurpose dot-com web services\",\n                \"hasAudienceResponseSystem\": false,\n                \"sortOrder\": 96891,\n                \"startsAt\": \"2023-05-19T00:02:52.949Z\",\n                \"endsAt\": \"2023-05-20T00:02:52.911Z\",\n                \"customAttributes\": \"{\\\"foo\\\":57584,\\\"bar\\\":\\\"gAX!g8p{@G\\\",\\\"bike\\\":36293,\\\"a\\\":\\\")OlY?Sl;Kw\\\",\\\"b\\\":\\\"u*[P]qT!\\\\\\\\f\\\",\\\"name\\\":56020,\\\"prop\\\":\\\"sV!Z&3G'#l\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:52.949Z\",\n                \"updatedAt\": \"2023-05-19T00:02:52.949Z\",\n                \"eventId\": \"d14d9324-6a43-4dcb-99da-1650a1ffa7b9\",\n                \"sessionId\": \"cb40dedc-0751-4e06-9581-6cda1513b712\",\n                \"subsessionformatId\": \"33dd7060-3970-48f2-ac3e-02b211a3cf43\",\n                \"subsessiontypeId\": \"45e056d6-f81e-4ff0-910f-f27c28ef63d0\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"99a5ab38-13ea-4b8e-bf2b-c55a86a6543e\",\n                \"shortName\": \"Unbranded Shoes Technical Seminar 2025\",\n                \"fullName\": \"Handcrafted Tasty Bronze Soap Garden Technical Seminar 2025\",\n                \"systemName\": \"unbrandedshoestechnicalseminar2025-7786\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-05-19T00:02:52.907Z\",\n                \"endsAt\": \"2023-05-23T00:02:52.903Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": null,\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-05-19T00:02:52.907Z\",\n                \"updatedAt\": \"2023-05-19T00:02:52.907Z\",\n                \"organizationId\": \"37bf7640-760e-4f65-90fd-6109ac91d62a\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/99a5ab38-13ea-4b8e-bf2b-c55a86a6543e\"\n            },\n            \"subsession\": {\n                \"href\": \"/subsessions/v2/9d22c06c-f3c4-4f89-9fbe-1050fbb14b2c\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"0e0390e9-6723-42a2-9cf9-f2dfd1b30997"},{"name":"Update a Subsessionfile","id":"4620a3b5-4587-4a73-8ccf-76ac5368e068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Small Jewelery File\",\n    \"url\": \"http://katlynn.biz\",\n    \"type\": \"video\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/lost+found/profound_bacon_cape.jpeg\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2/:subsessionfileId","description":"<p>Modify one or more fields on the single Subsessionfile record of the supplied Subsessionfile ID.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID linked to the Subsession File (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>UUID string</td>\n<td>Subsession ID linked to the Subsession File (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the subsession file record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name assigned to the subsession file</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>URL/path associated to the subsession file.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of subsession file</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Extension of the subsession file</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>System path associated to the subsession file.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>Size of file in bytes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionfiles","v2",":subsessionfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"16d085e4-8b67-4aa9-9b55-7d9f06775cce","description":{"content":"<p>subsession file Id</p>\n","type":"text/plain"},"type":"any","value":"3c321fc3-9212-4224-bc91-527e31639374","key":"subsessionfileId"}]}},"response":[{"id":"9a209a67-8d4d-4852-b607-9f231be34933","name":"Update a subsessionfile","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Small Jewelery File\",\n    \"url\": \"http://katlynn.biz\",\n    \"type\": \"video\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/lost+found/profound_bacon_cape.jpeg\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2/:subsessionfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionfiles","v2",":subsessionfileId"],"variable":[{"key":"subsessionfileId","value":"3c321fc3-9212-4224-bc91-527e31639374","description":"subsession file Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:46:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"453"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1c5-P5BOebm+fUjBnalqHPLBznC6scM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"3c321fc3-9212-4224-bc91-527e31639374\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\",\n    \"name\": \"Small Jewelery File\",\n    \"url\": \"http://katlynn.biz\",\n    \"type\": \"video\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/lost+found/profound_bacon_cape.jpeg\",\n    \"createdAt\": \"2023-06-20T19:43:00.878Z\",\n    \"updatedAt\": \"2023-06-20T19:46:49.369Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"subsessionId\": \"876c422e-305d-4482-abe5-56fe17ae4260\"\n}"}],"_postman_id":"4620a3b5-4587-4a73-8ccf-76ac5368e068"},{"name":"Destroy a Subsessionfile","id":"6289a7e2-d951-45b7-a689-de1cd37ad311","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2/:subsessionfileId","description":"<p>Delete a subsessionfile record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionfiles","v2",":subsessionfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"353150e9-4fa2-42a0-8574-7a6065f5f87c","description":{"content":"<p>subsession file Id</p>\n","type":"text/plain"},"type":"any","value":"3c321fc3-9212-4224-bc91-527e31639374","key":"subsessionfileId"}]}},"response":[{"id":"a94dc7bd-8e26-48df-a610-55087f370dd6","name":"Destroy a subsessionfile","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionfiles/v2/:subsessionfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionfiles","v2",":subsessionfileId"],"variable":[{"key":"subsessionfileId","value":"3c321fc3-9212-4224-bc91-527e31639374","description":"subsession file Id"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:47:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"453"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1c5-P5BOebm+fUjBnalqHPLBznC6scM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"3c321fc3-9212-4224-bc91-527e31639374\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa133\",\n    \"name\": \"Small Jewelery File\",\n    \"url\": \"http://katlynn.biz\",\n    \"type\": \"video\",\n    \"extension\": \"jpeg\",\n    \"systemPath\": \"/lost+found/profound_bacon_cape.jpeg\",\n    \"createdAt\": \"2023-06-20T19:43:00.878Z\",\n    \"updatedAt\": \"2023-06-20T19:46:49.369Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"subsessionId\": \"876c422e-305d-4482-abe5-56fe17ae4260\"\n}"}],"_postman_id":"6289a7e2-d951-45b7-a689-de1cd37ad311"}],"id":"cd22cdf5-2af5-43c9-b268-02a665114b93","description":"<p>Collection of CRUD operations and options to interact with Subsession Files</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Subsession File ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Subsession File (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>string</td>\n<td>Subsession ID linked to the Subsession File (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the subsession file record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>name assigned to the subsession file</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>URL/path associated to the subsession file.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of subsession file</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Extension of the subsession file</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>system path associated to the subsession file.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>size of file in bytes</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"cd22cdf5-2af5-43c9-b268-02a665114b93","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Subsessionvideos (v2)","item":[{"name":"List Subsessionvideos","id":"11d48312-d013-4abf-abd4-f55b7533806c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2","description":"<p>Retrieve a collection of subsessionvideos.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionvideos","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"a9453827-a3e5-4381-80e6-f0cf64213feb","name":"List subsessionvideos","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionvideos","v2"],"query":[{"key":"filter[producerRecordIdentifier][substring]","value":"nexi9","description":"producerRecordIdentifier with a substring of \"nexi9\".","disabled":true},{"key":"filter[subsessionId][eq]","value":"4c1834a2-9d6d-445d-8262-d6fb327e0f9e","description":"filters records with subsessionId = 4c1834a2-9d6d-445d-8262-d6fb327e0f9e","disabled":true},{"key":"filter[type][eq]","value":"mp3","description":"type equals  \"mp3\".","disabled":true},{"key":"filter[closedcaptionDashboardUrl][eq]","value":"https://www.closedcaptionDashboardUrl.com","description":"closedcaptionDashboardUrl equals \"https://www.closedcaptionDashboardUrl.com\".","disabled":true},{"key":"filter[streamKey][startsWith]","value":"SRC","description":"streamKey startswith \"SRC\".","disabled":true},{"key":"page","value":"2","description":"page number to retrieve the records.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:50:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"58822"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e5c6-jZ+HqtxXIWJMoPYrgvpu0Ar8O7M\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"1853d84a-6a17-499a-a700-293a10183f3f\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n            \"type\": \"audio\",\n            \"directPlayerLink\": \"http://placeimg.com/640/480\",\n            \"adminUrl\": \"http://marlee.org\",\n            \"embedCode\": \"https://player.vimeo.com/video/284834103?h=676e1ce2fd&title=0&byline=0&portrait=0\",\n            \"rtmpUrl\": \"rtmp://rtmp-global.cloud.vimeo.com/live\",\n            \"streamKey\": \"8c3f0c81-d512-4895-9a53-ef382cbfbadd\",\n            \"closedcaptionRtmpUrl\": \"http://lempi.biz\",\n            \"closedcaptionStreamKey\": \"uhvrfg4561\",\n            \"closedcaptionDashboardUrl\": \"http://susie.com\",\n            \"createdAt\": \"2023-06-12T20:12:16.558Z\",\n            \"updatedAt\": \"2023-06-12T20:12:16.558Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"subsessionId\": \"fc8bccb1-65a0-4064-b899-58440ac8cf3e\"\n        },\n        {\n            \"id\": \"c7eb7e33-0bc4-4078-a0e8-9ed2f1b0a3cc\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e56d\",\n            \"type\": \"audio\",\n            \"directPlayerLink\": \"http://placeimg.com/640/480\",\n            \"adminUrl\": \"http://marlee.org\",\n            \"embedCode\": \"VJIARED1303\",\n            \"rtmpUrl\": \"https://darlene.org\",\n            \"streamKey\": \"ABCD1234z1\",\n            \"closedcaptionRtmpUrl\": \"http://lempi.biz\",\n            \"closedcaptionStreamKey\": \"uhvrfg4561\",\n            \"closedcaptionDashboardUrl\": \"http://susie.com\",\n            \"createdAt\": \"2023-06-12T20:13:43.912Z\",\n            \"updatedAt\": \"2023-06-12T20:13:43.912Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"subsessionId\": \"adce66c4-8201-454e-8a1c-113a35ee1f02\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"11d48312-d013-4abf-abd4-f55b7533806c"},{"name":"Create a Subsessionvideo","id":"415baea2-55ac-429d-a13f-629644d0e0ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"6bc0eca6-e1fe-4cc9-8e4e-e74552b42016\",\n    \"type\":  \"mp3\",           \n    \"directPlayerLink\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"adminUrl\":  \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",        \n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\":  \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\", \n    \"subsessionId\": \"fc8bccb1-65a0-4064-b899-58440ac8cf3e\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2","description":"<p>Create a new subsessionvideo record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Producer record identifier associated with the subsessionvideo record.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Required Field  <br />Event ID linked to the Subsession Video (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>String</td>\n<td>Required Field.  <br />Subsession ID linked to the subsession Video (uuid).</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />File type of the subsessionvideo.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Direct player link.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Admin url.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Rtmp url.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption rtmp url.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption dashboard url.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionvideos","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"80f24cc6-d0d5-421c-bd3f-09db66dacf83","name":"Create a subsessionvideo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"6bc0eca6-e1fe-4cc9-8e4e-e74552b42016\",\n    \"type\":  \"mp3\",           \n    \"directPlayerLink\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"adminUrl\":  \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",        \n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\":  \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\", \n    \"subsessionId\": \"fc8bccb1-65a0-4064-b899-58440ac8cf3e\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:54:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"667"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"29b-jk5OX9cSeZpZcvf4kpW+QwN1ghk\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"275cbeaa-b02a-4665-a326-d01f4c50b8d6\",\n    \"producerRecordIdentifier\": \"6bc0eca6-e1fe-4cc9-8e4e-e74552b42016\",\n    \"type\": \"mp3\",\n    \"directPlayerLink\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"adminUrl\": \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",\n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\": \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"subsessionId\": \"fc8bccb1-65a0-4064-b899-58440ac8cf3e\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"updatedAt\": \"2023-06-20T19:54:41.984Z\",\n    \"createdAt\": \"2023-06-20T19:54:41.984Z\"\n}"}],"_postman_id":"415baea2-55ac-429d-a13f-629644d0e0ae"},{"name":"Read a Subsessionvideo","id":"2ba9ff38-b31f-47d4-a072-bf3bdfad747d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2/:subsessionvideoId","description":"<p>Retrieve a single subsessionvideo record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>subsessions</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionvideos","v2",":subsessionvideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"5e1d9dfb-9412-463e-87e8-c7361214ae58","description":{"content":"<p>Subsessionvideo ID.</p>\n","type":"text/plain"},"type":"any","value":"275cbeaa-b02a-4665-a326-d01f4c50b8d6","key":"subsessionvideoId"}]}},"response":[{"id":"a16703ab-e9fb-4ee7-8936-228aa50a13f4","name":"Read a subsessionvideo","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2/:subsessionvideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionvideos","v2",":subsessionvideoId"],"variable":[{"key":"subsessionvideoId","value":"275cbeaa-b02a-4665-a326-d01f4c50b8d6","description":"Subsessionvideo ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:55:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"667"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"29b-VOWQruJmigNgXRxUoPUF6fUHjyA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"275cbeaa-b02a-4665-a326-d01f4c50b8d6\",\n    \"producerRecordIdentifier\": \"6bc0eca6-e1fe-4cc9-8e4e-e74552b42016\",\n    \"type\": \"mp3\",\n    \"directPlayerLink\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"adminUrl\": \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",\n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\": \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"createdAt\": \"2023-06-20T19:54:41.984Z\",\n    \"updatedAt\": \"2023-06-20T19:54:41.984Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"subsessionId\": \"fc8bccb1-65a0-4064-b899-58440ac8cf3e\"\n}"},{"id":"b0016e6b-7b39-4d99-ad6a-f25202d5a3a6","name":"Read a Subsessionvideo with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2/:subsessionvideoId?include=events","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionvideos","v2",":subsessionvideoId"],"query":[{"key":"include","value":"events"}],"variable":[{"key":"subsessionvideoId","value":"4cc0bb67-3e3f-40ff-99ad-25dcf8589479","description":"Subsessionvideo ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1533"},{"key":"ETag","value":"W/\"5fd-VMj7Rg03kVlP6R9Vk16dRAkJTNs\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:13:54 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4cc0bb67-3e3f-40ff-99ad-25dcf8589479\",\n    \"producerRecordIdentifier\": \"k76fa\",\n    \"type\": \"audio\",\n    \"directPlayerLink\": \"http://bumpy-gastronomy.org\",\n    \"adminUrl\": \"https://corny-great-grandmother.info\",\n    \"embedCode\": \"qvfm5o4xxe\",\n    \"rtmpUrl\": \"https://woozy-pack.info\",\n    \"streamKey\": \"absh91qdp0oqf6e\",\n    \"closedcaptionRtmpUrl\": \"http://cumbersome-delay.info\",\n    \"closedcaptionStreamKey\": \"1wm5ymti9xegu79\",\n    \"closedcaptionDashboardUrl\": \"http://animated-census.org\",\n    \"createdAt\": \"2023-05-19T00:02:53.462Z\",\n    \"updatedAt\": \"2023-05-19T00:02:53.462Z\",\n    \"eventId\": \"acd22744-8bb0-499b-8006-f001486246c6\",\n    \"subsessionId\": \"24a5dd42-caaa-4176-b2e5-bc0748030608\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"acd22744-8bb0-499b-8006-f001486246c6\",\n                \"shortName\": \"Handcrafted Movies Tradeshow 2023\",\n                \"fullName\": \"Tasty Electronic Frozen Shoes Baby Tradeshow 2023\",\n                \"systemName\": \"handcraftedmoviestradeshow2023-92f1\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-05-19T00:02:53.410Z\",\n                \"endsAt\": \"2023-05-21T00:02:53.408Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"53a3953\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-05-19T00:02:53.410Z\",\n                \"updatedAt\": \"2023-05-19T00:02:53.410Z\",\n                \"organizationId\": \"f344c870-f47c-4f27-96fa-d6d6cd065cf8\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/acd22744-8bb0-499b-8006-f001486246c6\"\n            },\n            \"subsession\": {\n                \"href\": \"/subsessions/v2/24a5dd42-caaa-4176-b2e5-bc0748030608\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"2ba9ff38-b31f-47d4-a072-bf3bdfad747d"},{"name":"Update a Subsessionvideo","id":"f9f8ce07-a084-471e-a3d2-70f39db0638a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{          \n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2/:subsessionvideoId","description":"<p>Modify one or more fields on the single Subsessionvideo record of the supplied Subsessionvideo ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID linked to the Subsession Video (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>UUID String</td>\n<td>Subsession ID linked to the subsession Video (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the subsessionvideo record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>File type of the subsessionvideo.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Direct player link.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Admin url.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Rtmp url.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Closed caption rtmp url.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Closed caption dashboard url.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionvideos","v2",":subsessionvideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"b264b44e-2853-4396-a878-6021d49aeb2f","description":{"content":"<p>Subsessionvideo ID.</p>\n","type":"text/plain"},"type":"any","value":"275cbeaa-b02a-4665-a326-d01f4c50b8d6","key":"subsessionvideoId"}]}},"response":[{"id":"f5c2fcf5-1e46-429b-a76b-fe27c0c7d6fb","name":"Update a subsessionvideo","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{          \n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2/:subsessionvideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionvideos","v2",":subsessionvideoId"],"variable":[{"key":"subsessionvideoId","value":"275cbeaa-b02a-4665-a326-d01f4c50b8d6","description":"Subsessionvideo ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:57:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"496"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1f0-dMgtZhDm2x48yKm3LoS8RyUVMeA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"275cbeaa-b02a-4665-a326-d01f4c50b8d6\",\n    \"producerRecordIdentifier\": \"6bc0eca6-e1fe-4cc9-8e4e-e74552b42016\",\n    \"type\": \"application\",\n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\",\n    \"adminUrl\": null,\n    \"embedCode\": null,\n    \"rtmpUrl\": null,\n    \"streamKey\": null,\n    \"closedcaptionRtmpUrl\": null,\n    \"closedcaptionStreamKey\": null,\n    \"closedcaptionDashboardUrl\": null,\n    \"createdAt\": \"2023-06-20T19:54:41.984Z\",\n    \"updatedAt\": \"2023-06-20T19:57:11.815Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"subsessionId\": \"fc8bccb1-65a0-4064-b899-58440ac8cf3e\"\n}"}],"_postman_id":"f9f8ce07-a084-471e-a3d2-70f39db0638a"},{"name":"Destroy a Subsessionvideo","id":"a4426d8e-a2d5-4a8a-bc8c-f086e7cc1c53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2/:subsessionvideoId","description":"<p>Delete a subsessionvideo record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["subsessionvideos","v2",":subsessionvideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"80e24bcf-9d4c-4b26-8e15-cff28b4854a4","description":{"content":"<p>Subsessionvideo ID.</p>\n","type":"text/plain"},"type":"any","value":"275cbeaa-b02a-4665-a326-d01f4c50b8d6","key":"subsessionvideoId"}]}},"response":[{"id":"8480068e-864f-4c73-bc62-5f9dcf45f6cf","name":"Destroy a subsessionvideo","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/subsessionvideos/v2/:subsessionvideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["subsessionvideos","v2",":subsessionvideoId"],"variable":[{"key":"subsessionvideoId","value":"275cbeaa-b02a-4665-a326-d01f4c50b8d6","description":"Subsessionvideo ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 19:58:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"496"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1f0-dMgtZhDm2x48yKm3LoS8RyUVMeA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"275cbeaa-b02a-4665-a326-d01f4c50b8d6\",\n    \"producerRecordIdentifier\": \"6bc0eca6-e1fe-4cc9-8e4e-e74552b42016\",\n    \"type\": \"application\",\n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\",\n    \"adminUrl\": null,\n    \"embedCode\": null,\n    \"rtmpUrl\": null,\n    \"streamKey\": null,\n    \"closedcaptionRtmpUrl\": null,\n    \"closedcaptionStreamKey\": null,\n    \"closedcaptionDashboardUrl\": null,\n    \"createdAt\": \"2023-06-20T19:54:41.984Z\",\n    \"updatedAt\": \"2023-06-20T19:57:11.815Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"subsessionId\": \"fc8bccb1-65a0-4064-b899-58440ac8cf3e\"\n}"}],"_postman_id":"a4426d8e-a2d5-4a8a-bc8c-f086e7cc1c53"}],"id":"df791a45-d7e5-4fba-88c6-2714577e60ea","description":"<p>Collection of CRUD operations and options to interact with Subsessionvideos.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Subsessionvideo ID (uuid).</td>\n</tr>\n<tr>\n<td>subsessionId</td>\n<td>string</td>\n<td>Subsession ID linked to the subsession Video (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Subsession Video(uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the subsessionvideo record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>File type.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Direct player link.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Admin URL.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Rtmp URL.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Closed caption rtmp URL.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Closed caption dashboard URL.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"df791a45-d7e5-4fba-88c6-2714577e60ea","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Posters (v2)","item":[{"name":"List Posters","id":"16e2a06e-0b8c-4937-939f-bfe6960547ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posters/v2","description":"<p>Retrieve a collection of posters.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posters","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"f6a6589f-0166-43fa-a78f-1531202c68e7","name":"List posters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posters/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posters","v2"],"query":[{"key":"filter[eventId][eq]","value":"98ef2c48-718d-4eeb-b0b5-e819ed181134","description":"Filters posters where eventId equals \"98ef2c48-718d-4eeb-b0b5-e819ed181134\".","disabled":true},{"key":"filter[posterformatId][eq]","value":"24e73cfd-7e4a-450c-ac4c-43e40787857a","description":"Filters posters where posterformatId equals \"24e73cfd-7e4a-450c-ac4c-43e40787857a\"","disabled":true},{"key":"filter[postercategoryId][eq]","value":"ca96c213-2a10-441a-ba65-3dc932a557f8","description":"Filters posters where postercategoryId equals \"ca96c213-2a10-441a-ba65-3dc932a557f8\"","disabled":true},{"key":"filter[clientIdentifier][eq]","value":"jzy0t","description":"Filters posters where clientIdentifier date equals \"jzy0t\"","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"5d2je","description":"Filters posters where producerRecordIdentifier equals \"5d2je\"","disabled":true},{"key":"filter[title][eq]","value":"Elegant","description":"Filters posters where title equals \"Elegant\".","disabled":true},{"key":"filter[startsAt][eq]","value":"2022-07-31T21:50:39.611Z","description":"Filters posters where startsAt date is on \"2022-07-31T21:50:39.611Z\"","disabled":true},{"key":"filter[endsAt][eq]","value":"2022-07-31T21:50:39.611Z","description":"Filters posters where endsAt date is on \"2022-07-31T21:50:39.611Z\"","disabled":true},{"key":"filter[description][eq]","value":"null","description":"Filters posters where description equals to null","disabled":true},{"key":"filter[abstract][eq]","value":"null","description":"Filters posters where abstract equals to null","disabled":true},{"key":"filter[embargoedAt][gte]","value":"2022-07-31T21:50:39.611Z","description":"Filters posters where embargoedAt date is on or after \"2022-07-31T21:50:39.611Z\"","disabled":true},{"key":"filter[disclosure][startsWith]","value":"Dir","description":"Filters posters where disclosure starts with \"Dir\"","disabled":true},{"key":"filter[isFeatured][eq]","value":"null","description":"Filters posters where isFeatured equals to null.","disabled":true},{"key":"filter[isTimed][eq]","value":"null","description":"Filters posters where isTimed equals to null. ","disabled":true},{"key":"filter[author][ne]","value":"null","description":"Filters posters where author is not equal to null.","disabled":true},{"key":"page","value":"2","description":"Filters posters on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:09:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"73068"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"11d6c-E5mhbOzHP6XKxSJ/SehRAqbQKTs\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n            \"clientIdentifier\": \"load client 1686600737208\",\n            \"producerRecordIdentifier\": \"load producer 1686600737208\",\n            \"title\": \"Elegant\",\n            \"startsAt\": \"2023-06-12T08:12:17.000Z\",\n            \"endsAt\": \"2024-06-11T20:12:17.000Z\",\n            \"description\": \"Session on Elegance\",\n            \"abstract\": \"Forward\",\n            \"embargoedAt\": \"2024-06-11T20:12:17.000Z\",\n            \"disclosure\": \"International\",\n            \"isFeatured\": false,\n            \"isTimed\": false,\n            \"author\": \"Progressive executive function innovate 24/7 mindshare\",\n            \"keywords\": [\n                \"nulla\",\n                \"necessitatibus\",\n                \"nemo\"\n            ],\n            \"customAttributes\": {\n                \"name\": \"Harry\"\n            },\n            \"createdAt\": \"2023-06-12T20:12:17.225Z\",\n            \"updatedAt\": \"2023-06-12T20:12:17.225Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"postercategoryId\": \"ddb3b5d0-4380-48ba-b1c5-e04cd1a91aa9\",\n            \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"16e2a06e-0b8c-4937-939f-bfe6960547ec"},{"name":"Create a Poster","id":"11b7f400-9e60-4956-a6b2-f208fdbc3c99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"postercategoryId\": \"ddb3b5d0-4380-48ba-b1c5-e04cd1a91aa9\",\n    \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\",\n    \"clientIdentifier\": \"151\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"title\": \"Next gen mobile technology\",\n    \"startsAt\": \"2022-08-23T14:52:46.386Z\",\n    \"endsAt\": \"2099-02-07T00:00:00.000Z\",\n    \"description\": \"This poster will cover new advances in mobile tech.\",\n    \"abstract\": \"Mobile Information Technology\",\n    \"embargoedAt\": \"2022-07-27T21:13:11.358Z\",\n    \"disclosure\": \"Human\",\n    \"isFeatured\": \"false\",\n    \"isTimed\": \"true\",\n    \"author\": \"Steve Jobs\",\n    \"keywords\": [\"Technology\", \"Mobile\", \"iOS\"],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\" : \"gen_23456\",\n        \"sessionCustom2\" : \"education_credit\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posters/v2","description":"<p>Create a new poster.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Required field. Event ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>postercategoryId</td>\n<td>UUID string</td>\n<td>Optional field. Postercategory ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>posterformatId</td>\n<td>UUID string</td>\n<td>Required field. Posterformat ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Optional field. Client identifier associated with the poster record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field. Producer record identifier associated with the poster record.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Required field. Poster title.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Optional field. Poster start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Optional field. Poster end time.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional field. Description.</td>\n</tr>\n<tr>\n<td>abstract</td>\n<td>string</td>\n<td>Optional field. Abstract.</td>\n</tr>\n<tr>\n<td>embargoedAt</td>\n<td>string</td>\n<td>Optional field. Poster embargo date.</td>\n</tr>\n<tr>\n<td>isFeatured</td>\n<td>boolean</td>\n<td>Optional field. Boolean flag to indicate if the poster is featured.</td>\n</tr>\n<tr>\n<td>isTimed</td>\n<td>boolean</td>\n<td>Optional field. Boolean flag to indicate if the poster is timed.</td>\n</tr>\n<tr>\n<td>author</td>\n<td>string</td>\n<td>Optional field. Poster author.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Optional field. Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>array of strings</td>\n<td>Optional field. List of Poster keywords.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-child-entities\">Includable Related Child Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterfiles</td>\n<td>posterlinks</td>\n<td>postervideos</td>\n</tr>\n<tr>\n<td>poster-speaker</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posters","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"12dd8769-b06a-40d1-b33a-4b792dbac0f7","name":"Create a poster","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"postercategoryId\": \"ddb3b5d0-4380-48ba-b1c5-e04cd1a91aa9\",\n    \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\",\n    \"clientIdentifier\": \"151\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"title\": \"Next gen mobile technology\",\n    \"startsAt\": \"2022-08-23T14:52:46.386Z\",\n    \"endsAt\": \"2099-02-07T00:00:00.000Z\",\n    \"description\": \"This poster will cover new advances in mobile tech.\",\n    \"abstract\": \"Mobile Information Technology\",\n    \"embargoedAt\": \"2022-07-27T21:13:11.358Z\",\n    \"disclosure\": \"Human\",\n    \"isFeatured\": \"false\",\n    \"isTimed\": \"true\",\n    \"author\": \"Steve Jobs\",\n    \"keywords\": [\"Technology\", \"Mobile\", \"iOS\"],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\" : \"gen_23456\",\n        \"sessionCustom2\" : \"education_credit\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posters/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:17:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"866"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"362-Bed1ENZP4D/Qpr0dRP6X17SAQRs\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"623b8049-573a-4ae2-8b08-be9e45708e1d\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"postercategoryId\": \"ddb3b5d0-4380-48ba-b1c5-e04cd1a91aa9\",\n    \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\",\n    \"clientIdentifier\": \"151\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"title\": \"Next gen mobile technology\",\n    \"startsAt\": \"2022-08-23T14:52:46.386Z\",\n    \"endsAt\": \"2099-02-07T00:00:00.000Z\",\n    \"description\": \"This poster will cover new advances in mobile tech.\",\n    \"abstract\": \"Mobile Information Technology\",\n    \"embargoedAt\": \"2022-07-27T21:13:11.358Z\",\n    \"disclosure\": \"Human\",\n    \"isFeatured\": false,\n    \"isTimed\": true,\n    \"author\": \"Steve Jobs\",\n    \"keywords\": [\n        \"Technology\",\n        \"Mobile\",\n        \"iOS\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"updatedAt\": \"2023-06-20T22:17:27.432Z\",\n    \"createdAt\": \"2023-06-20T22:17:27.432Z\"\n}"},{"id":"4ad7cd31-4df9-40b5-a7da-41ed8f389940","name":"Create a Poster with Related Child Entities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"posterformatId\": \"3506b5a6-21d2-4b3f-a5ec-ae2a3aa0aa1f\",\n    \"clientIdentifier\": \"151\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"title\": \"Next gen mobile technology\",\n    \"startsAt\": \"2022-08-23T14:52:46.386Z\",\n    \"endsAt\": \"2099-02-07T00:00:00.000Z\",\n    \"description\": \"This poster will cover new advances in mobile tech.\",\n    \"abstract\": \"Mobile Information Technology\",\n    \"embargoedAt\": \"2022-07-27T21:13:11.358Z\",\n    \"disclosure\": \"Human\",\n    \"isFeatured\": false,\n    \"isTimed\": true,\n    \"author\": \"Steve Jobs\",\n    \"keywords\": [\"Technology\", \"Mobile\", \"iOS\"],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\" : \"gen_23456\",\n        \"sessionCustom2\" : \"education_credit\"\n    },\n    \"posterfiles\": [\n        {\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n            \"name\": \"Small Clothing File\",\n            \"url\": \"https://lizeth.net\",\n            \"type\": \"application\",\n            \"extension\": \"pdf\",\n            \"systemPath\": \"/srv/firewall.ace\"\n        }\n    ],\n    \"postervideos\": [\n        {\n            \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n            \"type\":  \"mp3\",           \n            \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n            \"adminUrl\":  \"https://www.adminUrl.com\",\n            \"embedCode\": \"ibm_24579952\",        \n            \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n            \"streamKey\": \"BVRT879000VBNMH\",\n            \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n            \"closedcaptionStreamKey\":  \"STRCV109870\",\n            \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posters/v2"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1991"},{"key":"ETag","value":"W/\"7c7-vEASbcA+u6aB9Z9L2sAiONs/Wm4\""},{"key":"Date","value":"Thu, 21 Aug 2025 20:41:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"92e104b3-1142-410f-9229-24021f0a0b25\",\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"posterformatId\": \"3506b5a6-21d2-4b3f-a5ec-ae2a3aa0aa1f\",\n    \"clientIdentifier\": \"151\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"title\": \"Next gen mobile technology\",\n    \"startsAt\": \"2022-08-23T14:52:46.386Z\",\n    \"endsAt\": \"2099-02-07T00:00:00.000Z\",\n    \"description\": \"This poster will cover new advances in mobile tech.\",\n    \"abstract\": \"Mobile Information Technology\",\n    \"embargoedAt\": \"2022-07-27T21:13:11.358Z\",\n    \"disclosure\": \"Human\",\n    \"isFeatured\": false,\n    \"isTimed\": true,\n    \"author\": \"Steve Jobs\",\n    \"keywords\": [\n        \"Technology\",\n        \"Mobile\",\n        \"iOS\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"updatedAt\": \"2025-08-21T20:41:21.635Z\",\n    \"createdAt\": \"2025-08-21T20:41:21.635Z\",\n    \"postercategoryId\": null,\n    \"posterfiles\": {\n        \"collection\": [\n            {\n                \"sizeInBytes\": null,\n                \"id\": \"5e66c65f-54b3-4d47-89a4-c9e8ea053c07\",\n                \"posterId\": \"92e104b3-1142-410f-9229-24021f0a0b25\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n                \"name\": \"Small Clothing File\",\n                \"url\": \"https://lizeth.net\",\n                \"type\": \"application\",\n                \"extension\": \"pdf\",\n                \"systemPath\": \"/srv/firewall.ace\",\n                \"updatedAt\": \"2025-08-21T20:41:21.644Z\",\n                \"createdAt\": \"2025-08-21T20:41:21.644Z\"\n            }\n        ]\n    },\n    \"postervideos\": {\n        \"collection\": [\n            {\n                \"id\": \"5eb2b574-392b-4a20-bc59-c2e7bc392ae7\",\n                \"posterId\": \"92e104b3-1142-410f-9229-24021f0a0b25\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n                \"type\": \"mp3\",\n                \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n                \"adminUrl\": \"https://www.adminUrl.com\",\n                \"embedCode\": \"ibm_24579952\",\n                \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n                \"streamKey\": \"BVRT879000VBNMH\",\n                \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n                \"closedcaptionStreamKey\": \"STRCV109870\",\n                \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n                \"updatedAt\": \"2025-08-21T20:41:21.648Z\",\n                \"createdAt\": \"2025-08-21T20:41:21.648Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"11b7f400-9e60-4956-a6b2-f208fdbc3c99"},{"name":"Read a Poster","id":"130c0866-5d78-475a-8d1d-95d49e20be25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId","description":"<p>Retrieve a single poster record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>speakers</td>\n<td>postercategories</td>\n</tr>\n<tr>\n<td>posterformats</td>\n<td>posterlinks</td>\n<td>posterfiles</td>\n</tr>\n<tr>\n<td>postervideos</td>\n<td>poster-speaker</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posters","v2",":posterId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"9620affd-39be-4605-a0ed-3ea47488d3c4","description":{"content":"<p>PosterId</p>\n","type":"text/plain"},"type":"any","value":"623b8049-573a-4ae2-8b08-be9e45708e1d","key":"posterId"}]}},"response":[{"id":"8b632ad0-c634-4e3b-baff-dc38e589e6a4","name":"Read a poster","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posters","v2",":posterId"],"variable":[{"key":"posterId","value":"623b8049-573a-4ae2-8b08-be9e45708e1d","description":"PosterId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:18:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"866"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"362-OaGVz6/bS682JIQuO23CDXWtUN4\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"623b8049-573a-4ae2-8b08-be9e45708e1d\",\n    \"clientIdentifier\": \"151\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"title\": \"Next gen mobile technology\",\n    \"startsAt\": \"2022-08-23T14:52:46.386Z\",\n    \"endsAt\": \"2099-02-07T00:00:00.000Z\",\n    \"description\": \"This poster will cover new advances in mobile tech.\",\n    \"abstract\": \"Mobile Information Technology\",\n    \"embargoedAt\": \"2022-07-27T21:13:11.358Z\",\n    \"disclosure\": \"Human\",\n    \"isFeatured\": false,\n    \"isTimed\": true,\n    \"author\": \"Steve Jobs\",\n    \"keywords\": [\n        \"Technology\",\n        \"Mobile\",\n        \"iOS\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"createdAt\": \"2023-06-20T22:17:27.432Z\",\n    \"updatedAt\": \"2023-06-20T22:17:27.432Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"postercategoryId\": \"ddb3b5d0-4380-48ba-b1c5-e04cd1a91aa9\",\n    \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\"\n}"},{"id":"82b07981-f6b1-456b-8781-5c5a7dbda112","name":"Read a Poster with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId?include=speakers,posterformats","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posters","v2",":posterId"],"query":[{"key":"include","value":"speakers,posterformats"}],"variable":[{"key":"posterId","value":"97316b28-c460-450d-a3a1-9cb92e06d352","description":"PosterId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3407"},{"key":"ETag","value":"W/\"d4f-BB9SztRhclS/av0vGFDhNFNdA8M\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:17:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"97316b28-c460-450d-a3a1-9cb92e06d352\",\n    \"clientIdentifier\": \"p4uz5\",\n    \"producerRecordIdentifier\": \"oqbzw\",\n    \"title\": \"RSS\",\n    \"startsAt\": \"2023-05-19T00:02:54.834Z\",\n    \"endsAt\": \"2023-05-20T00:02:54.820Z\",\n    \"description\": \"A description\",\n    \"abstract\": \"Future\",\n    \"embargoedAt\": \"2023-05-20T00:02:54.820Z\",\n    \"disclosure\": \"Product\",\n    \"isFeatured\": false,\n    \"isTimed\": false,\n    \"author\": null,\n    \"keywords\": [\n        \"harum\",\n        \"id\",\n        \"pariatur\",\n        \"et\",\n        \"enim\"\n    ],\n    \"customAttributes\": \"{\\\"foo\\\":\\\"T#HS,`?KP*\\\",\\\"bar\\\":88769,\\\"bike\\\":\\\"[MO)LIklY)\\\",\\\"a\\\":65404,\\\"b\\\":70234,\\\"name\\\":99827,\\\"prop\\\":\\\"*O5\\\\\\\\G\\\\\\\\i;}e\\\"}\",\n    \"createdAt\": \"2023-05-19T00:02:54.834Z\",\n    \"updatedAt\": \"2023-05-19T00:02:54.835Z\",\n    \"eventId\": \"3b0d3f66-b9f3-465a-bdfc-8bb4625ecd26\",\n    \"postercategoryId\": \"cdd4a7db-3bfd-40e7-9437-ef63f99dfcbf\",\n    \"posterformatId\": \"24d2a85a-bacf-4c9f-9803-14232987643c\",\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"2459d701-613a-4973-8b54-0b9150c2695c\",\n                \"producerRecordIdentifier\": \"ktaes\",\n                \"prefix\": \"Mr.\",\n                \"preferredName\": \"Lacey\",\n                \"firstName\": \"Sydni\",\n                \"middleName\": \"James\",\n                \"lastName\": \"Towne\",\n                \"suffix\": \"DVM\",\n                \"degree\": \"Product Security Representative\",\n                \"title\": \"Corporate Program Associate\",\n                \"organization\": \"Technician\",\n                \"city\": \"Lake Yazmin\",\n                \"state\": \"Connecticut\",\n                \"country\": \"Timor-Leste\",\n                \"email\": \"Shaun.Schuster64@hotmail.com\",\n                \"emailTwo\": \"Sidney.Harris50@yahoo.com\",\n                \"phoneNumber\": \"1-378-706-1861 x502\",\n                \"mobileNumber\": \"893.922.4791\",\n                \"faxNumber\": \"244.392.5882 x89093\",\n                \"otherPhoneNumber\": \"1-960-673-8312\",\n                \"isVip\": true,\n                \"website\": \"https://slim-peacock.name\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1150.jpg\",\n                \"biographyText\": \"Investor\",\n                \"customAttributes\": \"{\\\"foo\\\":7949,\\\"bar\\\":\\\"2tkiy`i?Sn\\\",\\\"bike\\\":11438,\\\"a\\\":89662,\\\"b\\\":\\\"<2E'>0K(Rq\\\",\\\"name\\\":14649,\\\"prop\\\":\\\"/iKXZlgpP:\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:54.842Z\",\n                \"updatedAt\": \"2023-05-19T00:02:54.842Z\",\n                \"eventId\": \"3f25c4b9-ac62-4da3-8152-fba2def20d8e\",\n                \"poster-speaker\": [\n                    {\n                        \"id\": \"ad6d92e8-04ec-4bf3-bab0-f0a91e606990\",\n                        \"posterId\": \"97316b28-c460-450d-a3a1-9cb92e06d352\",\n                        \"speakerId\": \"2459d701-613a-4973-8b54-0b9150c2695c\",\n                        \"createdAt\": \"2023-05-19T00:02:54.844Z\",\n                        \"updatedAt\": \"2023-05-19T00:02:54.844Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"posterformats\": {\n        \"collection\": [\n            {\n                \"id\": \"24d2a85a-bacf-4c9f-9803-14232987643c\",\n                \"fullName\": \"PDF rx21p\",\n                \"createdAt\": \"2023-05-19T00:02:54.833Z\",\n                \"updatedAt\": \"2023-05-19T00:02:54.833Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/3b0d3f66-b9f3-465a-bdfc-8bb4625ecd26\"\n            },\n            \"postercategory\": {\n                \"href\": \"/postercategories/v2/cdd4a7db-3bfd-40e7-9437-ef63f99dfcbf\"\n            },\n            \"posterformat\": {\n                \"href\": \"/posterformats/v2/24d2a85a-bacf-4c9f-9803-14232987643c\"\n            }\n        },\n        \"children\": {\n            \"posterfiles\": {\n                \"href\": \"/posterfiles/v2?filter[posterId][eq]=97316b28-c460-450d-a3a1-9cb92e06d352\"\n            },\n            \"posterlinks\": {\n                \"href\": \"/posterlinks/v2?filter[posterId][eq]=97316b28-c460-450d-a3a1-9cb92e06d352\"\n            },\n            \"postervideos\": {\n                \"href\": \"/postervideos/v2?filter[posterId][eq]=97316b28-c460-450d-a3a1-9cb92e06d352\"\n            },\n            \"poster-speaker\": {\n                \"href\": \"/poster-speaker/v2?filter[posterId][eq]=97316b28-c460-450d-a3a1-9cb92e06d352\"\n            }\n        },\n        \"siblings\": {\n            \"speakers\": {\n                \"href\": \"/speakers/v2?filter[posterId][eq]=97316b28-c460-450d-a3a1-9cb92e06d352\"\n            }\n        }\n    }\n}"}],"_postman_id":"130c0866-5d78-475a-8d1d-95d49e20be25"},{"name":"Update a Poster","id":"682b3b71-0fbe-46a8-ba85-a625afb1c7a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \n    \"startsAt\": \"2022-08-02T18:14:35.113Z\" \n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId","description":"<p>Modify a single poster record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>postercategoryId</td>\n<td>UUID string</td>\n<td>Postercategory ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>posterformatId</td>\n<td>UUID string</td>\n<td>Posterformat ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Client identifier associated with the poster record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the poster record.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Poster title.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Poster start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Poster end time.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>abstract</td>\n<td>string</td>\n<td>Abstract.</td>\n</tr>\n<tr>\n<td>embargoedAt</td>\n<td>string</td>\n<td>Poster embargo date.</td>\n</tr>\n<tr>\n<td>isFeatured</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the poster is featured.</td>\n</tr>\n<tr>\n<td>isTimed</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the poster is timed.</td>\n</tr>\n<tr>\n<td>author</td>\n<td>string</td>\n<td>Poster author.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>array of strings</td>\n<td>List of Poster keywords.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"includable-related-child-entities\">Includable Related Child Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterfiles</td>\n<td>posterlinks</td>\n<td>postervideos</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posters","v2",":posterId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"c3a59ff9-a7b5-49d1-b174-2825ecc84087","description":{"content":"<p>PosterId</p>\n","type":"text/plain"},"type":"any","value":"623b8049-573a-4ae2-8b08-be9e45708e1d","key":"posterId"}]}},"response":[{"id":"8305d71f-7361-47da-8a84-ef0272dbf585","name":"Update a poster","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \n    \"startsAt\": \"2022-08-02T18:14:35.113Z\" \n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posters","v2",":posterId"],"variable":[{"key":"posterId","value":"623b8049-573a-4ae2-8b08-be9e45708e1d","description":"PosterId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:20:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"635"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"27b-0va5l5Agb4F+s8EjjYySKApbxwQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"623b8049-573a-4ae2-8b08-be9e45708e1d\",\n    \"clientIdentifier\": null,\n    \"producerRecordIdentifier\": null,\n    \"title\": \"Modern File and Folder\",\n    \"startsAt\": \"2022-08-02T18:14:35.113Z\",\n    \"endsAt\": null,\n    \"description\": null,\n    \"abstract\": \"Update\",\n    \"embargoedAt\": null,\n    \"disclosure\": null,\n    \"isFeatured\": false,\n    \"isTimed\": true,\n    \"author\": null,\n    \"keywords\": [\n        \"Mobile\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"createdAt\": \"2023-06-20T22:17:27.432Z\",\n    \"updatedAt\": \"2023-06-20T22:20:47.139Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"postercategoryId\": null,\n    \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\"\n}"},{"id":"6da0bc40-a3f5-4e61-9cbc-0a0e982f31ab","name":"Update a Poster with Related Child Entities","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \n    \"startsAt\": \"2025-08-02T18:14:35.113Z\",\n    \"posterfiles\": [\n        {\n            \"id\": \"5e66c65f-54b3-4d47-89a4-c9e8ea053c07\",\n            \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n            \"name\": \"Small Sewing File\"\n        }\n    ],\n    \"postervideos\": [\n        {\n            \"id\": \"5eb2b574-392b-4a20-bc59-c2e7bc392ae7\",\n            \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n            \"type\":  \"mp4\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posters","v2",":posterId"],"variable":[{"key":"posterId","value":"92e104b3-1142-410f-9229-24021f0a0b25","description":"PosterId"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1989"},{"key":"ETag","value":"W/\"7c5-5im545OtEVjujIGwNgWZI8yVIXw\""},{"key":"Date","value":"Thu, 21 Aug 2025 20:44:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"92e104b3-1142-410f-9229-24021f0a0b25\",\n    \"clientIdentifier\": \"151\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"title\": \"Next gen mobile technology\",\n    \"startsAt\": \"2025-08-02T18:14:35.113Z\",\n    \"endsAt\": \"2099-02-07T00:00:00.000Z\",\n    \"description\": \"This poster will cover new advances in mobile tech.\",\n    \"abstract\": \"Mobile Information Technology\",\n    \"embargoedAt\": \"2022-07-27T21:13:11.358Z\",\n    \"disclosure\": \"Human\",\n    \"isFeatured\": false,\n    \"isTimed\": true,\n    \"author\": \"Steve Jobs\",\n    \"keywords\": [\n        \"Technology\",\n        \"Mobile\",\n        \"iOS\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"createdAt\": \"2025-08-21T20:41:21.635Z\",\n    \"updatedAt\": \"2025-08-21T20:44:31.904Z\",\n    \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n    \"postercategoryId\": null,\n    \"posterformatId\": \"3506b5a6-21d2-4b3f-a5ec-ae2a3aa0aa1f\",\n    \"posterfiles\": {\n        \"collection\": [\n            {\n                \"sizeInBytes\": null,\n                \"id\": \"5e66c65f-54b3-4d47-89a4-c9e8ea053c07\",\n                \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n                \"name\": \"Small Sewing File\",\n                \"url\": \"https://lizeth.net\",\n                \"type\": \"application\",\n                \"extension\": \"pdf\",\n                \"systemPath\": \"/srv/firewall.ace\",\n                \"createdAt\": \"2025-08-21T20:41:21.644Z\",\n                \"updatedAt\": \"2025-08-21T20:44:31.908Z\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"posterId\": \"92e104b3-1142-410f-9229-24021f0a0b25\"\n            }\n        ]\n    },\n    \"postervideos\": {\n        \"collection\": [\n            {\n                \"id\": \"5eb2b574-392b-4a20-bc59-c2e7bc392ae7\",\n                \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n                \"type\": \"mp4\",\n                \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n                \"adminUrl\": \"https://www.adminUrl.com\",\n                \"embedCode\": \"ibm_24579952\",\n                \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n                \"streamKey\": \"BVRT879000VBNMH\",\n                \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n                \"closedcaptionStreamKey\": \"STRCV109870\",\n                \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n                \"createdAt\": \"2025-08-21T20:41:21.648Z\",\n                \"updatedAt\": \"2025-08-21T20:44:31.914Z\",\n                \"eventId\": \"47815ee9-b791-4da0-81a8-2417ebbbe3b6\",\n                \"posterId\": \"92e104b3-1142-410f-9229-24021f0a0b25\"\n            }\n        ]\n    }\n}"}],"_postman_id":"682b3b71-0fbe-46a8-ba85-a625afb1c7a3"},{"name":"Destroy a Poster","id":"d73df6de-2c5a-4777-b5a3-1a26d299ad23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId","description":"<p>Delete a poster record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posters","v2",":posterId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"5e1e8ae4-ce91-48d5-8f40-60500e480965","description":{"content":"<p>PosterId</p>\n","type":"text/plain"},"type":"any","value":"623b8049-573a-4ae2-8b08-be9e45708e1d","key":"posterId"}]}},"response":[{"id":"4615c151-7d1d-4108-936e-0e8f06155da7","name":"Destroy a poster","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posters/v2/:posterId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posters","v2",":posterId"],"variable":[{"key":"posterId","value":"623b8049-573a-4ae2-8b08-be9e45708e1d","description":"PosterId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:21:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"635"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"27b-0va5l5Agb4F+s8EjjYySKApbxwQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"623b8049-573a-4ae2-8b08-be9e45708e1d\",\n    \"clientIdentifier\": null,\n    \"producerRecordIdentifier\": null,\n    \"title\": \"Testing123\",\n    \"startsAt\": \"2022-08-02T18:14:35.113Z\",\n    \"endsAt\": null,\n    \"description\": null,\n    \"abstract\": \"Update\",\n    \"embargoedAt\": null,\n    \"disclosure\": null,\n    \"isFeatured\": false,\n    \"isTimed\": true,\n    \"author\": null,\n    \"keywords\": [\n        \"Mobile\"\n    ],\n    \"customAttributes\": {\n        \"patientReviews\": true,\n        \"sessionCustom1\": \"gen_23456\",\n        \"sessionCustom2\": \"education_credit\"\n    },\n    \"createdAt\": \"2023-06-20T22:17:27.432Z\",\n    \"updatedAt\": \"2023-06-20T22:20:47.139Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"postercategoryId\": null,\n    \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\"\n}"}],"_postman_id":"d73df6de-2c5a-4777-b5a3-1a26d299ad23"},{"name":"Posters based on Speakers (Presenters)","id":"d8925713-747d-47b6-a883-3e847f8c5a7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posters/v2?filter[speakerId][in][]=6b6ea960-10fa-4fe1-87cc-89718f4bcb9c","description":"<p>StartFragment</p>\n<p>For M:M connected entities, we can use filter queries on both the connected entities.</p>\n<p>Using either entity's GET endpoint and applying the IDs of the other entity as a filter.</p>\n<p>For this scenario, we are using the posters GET endpoint and applying the filter based on the \"speakerId\".</p>\n<p>EndFragment</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posters","v2"],"host":["{{domain}}{{port}}"],"query":[{"key":"filter[speakerId][in][]","value":"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c"}],"variable":[]}},"response":[{"id":"e8ba8d0e-9f86-4661-86e1-fcfba2127e32","name":"Posters based on Speakers (Presenters)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posters/v2?filter[speakerId][in][]=6b6ea960-10fa-4fe1-87cc-89718f4bcb9c","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posters","v2"],"query":[{"key":"filter[speakerId][in][]","value":"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:16:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"882"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"372-NUyOqEX06M+XA/v5a8PYjOyks8g\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n            \"clientIdentifier\": \"1686600737208\",\n            \"producerRecordIdentifier\": \"1686600737208\",\n            \"title\": \"Marketing is key to Success\",\n            \"startsAt\": \"2023-06-12T08:12:17.000Z\",\n            \"endsAt\": \"2024-06-11T20:12:17.000Z\",\n            \"description\": \"Marketing is one of the major components that helps organization to suceed.\",\n            \"abstract\": \"Marketing\",\n            \"embargoedAt\": null,\n            \"disclosure\": \"Investment\",\n            \"isFeatured\": false,\n            \"isTimed\": false,\n            \"author\": \"Seth Godin\",\n            \"keywords\": [\n             \"Marketing\",\n             \"Sales\",\n             \"Advertizing\"\n            ],\n            \"customAttributes\": {\n                \"name\": \"marketing\"\n            },\n            \"createdAt\": \"2023-06-12T20:12:17.225Z\",\n            \"updatedAt\": \"2023-06-12T20:12:17.225Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"postercategoryId\": \"ddb3b5d0-4380-48ba-b1c5-e04cd1a91aa9\",\n            \"posterformatId\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"d8925713-747d-47b6-a883-3e847f8c5a7c"}],"id":"74836b0f-f623-444f-b771-c1b8380b1708","description":"<p>Collection of CRUD operations and options to interact with Posters.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Poster ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>postercategoryId</td>\n<td>string</td>\n<td>Postercategory ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>posterformatId</td>\n<td>string</td>\n<td>Posterformat ID associated with the poster record (uuid).</td>\n</tr>\n<tr>\n<td>clientIdentifier</td>\n<td>string</td>\n<td>Client identifier associated with the poster record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the poster record.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Poster title.</td>\n</tr>\n<tr>\n<td>startsAt</td>\n<td>string</td>\n<td>Poster start time.</td>\n</tr>\n<tr>\n<td>endsAt</td>\n<td>string</td>\n<td>Poster end time.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>abstract</td>\n<td>string</td>\n<td>Abstract.</td>\n</tr>\n<tr>\n<td>embargoedAt</td>\n<td>string</td>\n<td>Poster embargo date.</td>\n</tr>\n<tr>\n<td>isFeatured</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the poster is featured.</td>\n</tr>\n<tr>\n<td>isTimed</td>\n<td>boolean</td>\n<td>Boolean flag to indicate if the poster is timed.</td>\n</tr>\n<tr>\n<td>author</td>\n<td>string</td>\n<td>Poster author.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>jsonb</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>array of strings</td>\n<td>List of Poster keywords.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"74836b0f-f623-444f-b771-c1b8380b1708","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Poster-Speaker (v2)","item":[{"name":"List Poster-Speaker relationships","id":"ed7becea-6a22-4a14-89c5-911d04c72185","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2","description":"<p>Retrieve a collection of related poster and speaker records.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["poster-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"50eaed74-315b-4fce-a4dd-28ed2d575edc","name":"List poster-speaker relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["poster-speaker","v2"],"query":[{"key":"filter[speakerId][eq]","value":"7cf0c061-eabf-4c07-8b93-87a63b349db8","description":"List all the poster speaker relationships for a specific speaker Id","disabled":true},{"key":"filter[posterId][eq]","value":"79f02389-0f67-4533-9179-f89f5f8e09ca","description":"List all the poster speaker relationships for a specific poster Id","disabled":true},{"key":"page","value":"2","description":"List alll the records on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:24:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11860"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"2e54-8OzOpL/bejp4+VyW8HqdNQuFn2Q\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"0438aebf-91c0-4e2f-bc66-540953dc1977\",\n            \"posterId\": \"13dbd7aa-c836-467a-861f-1c781dbc338a\",\n            \"speakerId\": \"28ecc613-c2fe-4580-99e5-8893d26a9c00\",\n            \"createdAt\": \"2023-06-22T21:37:43.450Z\",\n            \"updatedAt\": \"2023-06-22T21:37:43.450Z\"\n        },\n        {\n            \"id\": \"a5c1be2f-ca02-4448-b898-d6d0c6b50d6d\",\n            \"posterId\": \"355fc84a-bbe2-4672-8abb-7386a944e355\",\n            \"speakerId\": \"79cad168-4051-46db-8c1e-4701c6a6ffef\",\n            \"createdAt\": \"2022-11-21T17:11:08.750Z\",\n            \"updatedAt\": \"2022-11-21T17:11:08.750Z\"\n        },\n        {\n            \"id\": \"91ab2840-f8a3-4af6-8239-a757b3be74ce\",\n            \"posterId\": \"6f99844e-1d6a-4b20-ac44-8118d9f4302c\",\n            \"speakerId\": \"8953c034-2c5f-47d8-b4be-e40d907ab8f4\",\n            \"createdAt\": \"2022-11-21T17:11:19.013Z\",\n            \"updatedAt\": \"2022-11-21T17:11:19.013Z\"\n        },\n        {\n            \"id\": \"2e64b512-a063-4243-9b97-ac2e44cd6d13\",\n            \"posterId\": \"2a6101ed-aa01-404d-8efb-6b5b27db5029\",\n            \"speakerId\": \"89b59cca-f882-4d54-9357-b58bdcf99355\",\n            \"createdAt\": \"2022-11-21T17:11:23.357Z\",\n            \"updatedAt\": \"2022-11-21T17:11:23.357Z\"\n        },\n        {\n            \"id\": \"977fba20-12b6-48a7-8c50-4926e7542a0b\",\n            \"posterId\": \"9b1cc0e7-036d-4e51-8314-5c8d05f06ab3\",\n            \"speakerId\": \"2339c1e4-ee38-4455-ae93-6d901fcfba8e\",\n            \"createdAt\": \"2022-11-21T17:11:39.886Z\",\n            \"updatedAt\": \"2022-11-21T17:11:39.886Z\"\n        },\n        {\n            \"id\": \"0fcd944f-f913-48f7-ad07-340cd4370e9c\",\n            \"posterId\": \"19c82ee0-3a4c-419e-8a17-d780abdd2e17\",\n            \"speakerId\": \"95e66a25-2408-4a49-b849-ea962bf17175\",\n            \"createdAt\": \"2022-10-31T20:34:49.896Z\",\n            \"updatedAt\": \"2022-10-31T20:34:49.896Z\"\n        },\n        {\n            \"id\": \"593760dd-0bdc-4b3f-a079-aee282a485a4\",\n            \"posterId\": \"5da0d27d-5484-46cf-bf91-e0b357987413\",\n            \"speakerId\": \"1cdbe431-a95f-47ef-8540-8f7cc7ea8758\",\n            \"createdAt\": \"2022-10-31T20:38:25.562Z\",\n            \"updatedAt\": \"2022-10-31T20:38:25.562Z\"\n        },\n        {\n            \"id\": \"a2d124c5-9e42-41b1-8ae3-0baf52189856\",\n            \"posterId\": \"bba509b7-e11d-46dc-9602-44103d941f1d\",\n            \"speakerId\": \"09c6cca9-7e47-40d4-b40d-994ac0fddfb2\",\n            \"createdAt\": \"2022-10-31T20:45:24.988Z\",\n            \"updatedAt\": \"2022-10-31T20:45:24.988Z\"\n        },\n        {\n            \"id\": \"0cb3f69d-0f09-4725-a3f7-d5065078d82d\",\n            \"posterId\": \"fb794a45-ee7d-4ca0-b785-6b62eaeee441\",\n            \"speakerId\": \"95e66a25-2408-4a49-b849-ea962bf17175\",\n            \"createdAt\": \"2022-10-31T20:51:50.745Z\",\n            \"updatedAt\": \"2022-10-31T20:51:50.745Z\"\n        },\n        {\n            \"id\": \"1918ad96-7a27-4b48-93da-e433dfa9d410\",\n            \"posterId\": \"9b1cc0e7-036d-4e51-8314-5c8d05f06ab3\",\n            \"speakerId\": \"1644add5-fe02-4f1f-b932-d5ebb7dd80a4\",\n            \"createdAt\": \"2022-11-21T17:11:39.889Z\",\n            \"updatedAt\": \"2022-11-21T17:11:39.889Z\"\n        },\n        {\n            \"id\": \"d9ce8fca-8dd1-43f6-a28b-0c9326a68932\",\n            \"posterId\": \"fa7d4fe8-8a47-45a7-a9c3-e485fd07103a\",\n            \"speakerId\": \"2f10d276-c1f3-4498-84b3-f6966c3684f7\",\n            \"createdAt\": \"2022-11-21T17:12:11.061Z\",\n            \"updatedAt\": \"2022-11-21T17:12:11.061Z\"\n        },\n        {\n            \"id\": \"27bb3c27-dbc4-4c49-8f6c-a0d94bc2a233\",\n            \"posterId\": \"e900b5f6-65b4-419e-850b-19473d3651ce\",\n            \"speakerId\": \"79cad168-4051-46db-8c1e-4701c6a6ffef\",\n            \"createdAt\": \"2022-11-21T17:12:15.360Z\",\n            \"updatedAt\": \"2022-11-21T17:12:15.360Z\"\n        },\n        {\n            \"id\": \"7c04da30-0d23-4a9a-8c48-210c2778d255\",\n            \"posterId\": \"0c5e0e5e-66a8-41ee-a0c4-672cb2767eaa\",\n            \"speakerId\": \"8f701a0c-d64d-4749-abd5-469268e60b59\",\n            \"createdAt\": \"2022-11-21T17:12:22.030Z\",\n            \"updatedAt\": \"2022-11-21T17:12:22.030Z\"\n        },\n        {\n            \"id\": \"b74f2ff0-33d9-4777-a98e-397319fe0c02\",\n            \"posterId\": \"c2503118-8361-4c24-8bd0-7bb1ef010360\",\n            \"speakerId\": \"f6ee1f4b-0fa3-4ed5-9b3e-c26be1ca07a6\",\n            \"createdAt\": \"2022-11-21T17:12:28.371Z\",\n            \"updatedAt\": \"2022-11-21T17:12:28.371Z\"\n        },\n        {\n            \"id\": \"9142c0a7-b758-4a6c-a488-86bb3cbcd538\",\n            \"posterId\": \"c40062b3-6174-4277-a3e8-bb4b76744bf2\",\n            \"speakerId\": \"44a83dfd-f6e7-4a2e-a1e7-90fab832ca2d\",\n            \"createdAt\": \"2022-11-21T17:12:34.780Z\",\n            \"updatedAt\": \"2022-11-21T17:12:34.780Z\"\n        },\n        {\n            \"id\": \"bade18de-504c-4003-98fd-881d08cacdcb\",\n            \"posterId\": \"28a312d7-bb86-442b-aae9-23d45a245aa7\",\n            \"speakerId\": \"89b59cca-f882-4d54-9357-b58bdcf99355\",\n            \"createdAt\": \"2022-11-21T17:12:41.084Z\",\n            \"updatedAt\": \"2022-11-21T17:12:41.084Z\"\n        },\n        {\n            \"id\": \"53746b03-c8d3-4186-a7da-60f66d0c366f\",\n            \"posterId\": \"ca52be9a-0073-4a38-9328-fe869cea1c6c\",\n            \"speakerId\": \"2339c1e4-ee38-4455-ae93-6d901fcfba8e\",\n            \"createdAt\": \"2022-11-21T17:12:48.094Z\",\n            \"updatedAt\": \"2022-11-21T17:12:48.094Z\"\n        },\n        {\n            \"id\": \"e94b4f57-c289-4240-992d-4da5bdec0ef7\",\n            \"posterId\": \"e8ce8358-2cb4-4fa2-a386-37ed2b01f0b0\",\n            \"speakerId\": \"0ce7b351-6fbc-4f61-9b18-7d353cb11345\",\n            \"createdAt\": \"2022-11-21T17:12:52.372Z\",\n            \"updatedAt\": \"2022-11-21T17:12:52.372Z\"\n        },\n        {\n            \"id\": \"eaef1081-dd74-4a37-99bc-7085bde38c3c\",\n            \"posterId\": \"a75c08cd-0795-4720-b1b4-5f1234b475ce\",\n            \"speakerId\": \"413bd02b-e0b9-4d51-afa0-68df1385e68c\",\n            \"createdAt\": \"2022-11-21T17:12:56.668Z\",\n            \"updatedAt\": \"2022-11-21T17:12:56.668Z\"\n        },\n        {\n            \"id\": \"ebc1bf89-8543-4f77-b115-3c1373275fbc\",\n            \"posterId\": \"f4d0411a-cbd9-4822-bff3-f2a41bf2f86c\",\n            \"speakerId\": \"6c6c5902-d44f-470d-ae15-a4a8cbdf76da\",\n            \"createdAt\": \"2022-11-21T17:13:01.034Z\",\n            \"updatedAt\": \"2022-11-21T17:13:01.034Z\"\n        },\n        {\n            \"id\": \"e4b443f4-9aa0-4f41-a93f-c4c88f2b5da2\",\n            \"posterId\": \"894ec0c3-e464-44d8-b5b8-d63088689a37\",\n            \"speakerId\": \"b50826bd-f2f9-4d2d-8eb8-8a3b606819e2\",\n            \"createdAt\": \"2022-11-21T17:13:05.973Z\",\n            \"updatedAt\": \"2022-11-21T17:13:05.973Z\"\n        },\n        {\n            \"id\": \"7472b018-f50e-4c21-8d60-037bf301f2f3\",\n            \"posterId\": \"3c5a6479-fd98-40aa-ac49-6d77455cc821\",\n            \"speakerId\": \"20684c5d-2ae4-451f-a3ad-6f7d68d75848\",\n            \"createdAt\": \"2022-11-21T17:13:10.791Z\",\n            \"updatedAt\": \"2022-11-21T17:13:10.791Z\"\n        },\n        {\n            \"id\": \"97b61af1-0f40-4ac3-919d-7f07fad1f277\",\n            \"posterId\": \"50a794ae-b46b-4857-8af3-b5aff1d24a06\",\n            \"speakerId\": \"051465ba-e9b5-4841-b7c4-0446411ddefc\",\n            \"createdAt\": \"2022-11-21T17:13:15.458Z\",\n            \"updatedAt\": \"2022-11-21T17:13:15.458Z\"\n        },\n        {\n            \"id\": \"80a096ff-d44e-4b7a-b31a-f50d9a634294\",\n            \"posterId\": \"3573c142-5091-43f3-9b45-c1ae7a9a1fbc\",\n            \"speakerId\": \"e992e959-ebc7-4054-8d6a-093a20efb62a\",\n            \"createdAt\": \"2022-11-21T17:13:21.852Z\",\n            \"updatedAt\": \"2022-11-21T17:13:21.852Z\"\n        },\n        {\n            \"id\": \"0a811599-02ed-4a40-b173-af0f05febfa9\",\n            \"posterId\": \"2aa7ace5-b8c1-4f69-ba02-e43ce7404a30\",\n            \"speakerId\": \"bd22d703-dfa5-440c-9109-dac38ca5d3bc\",\n            \"createdAt\": \"2022-11-21T17:13:28.086Z\",\n            \"updatedAt\": \"2022-11-21T17:13:28.086Z\"\n        },\n        {\n            \"id\": \"8d492283-f930-4228-b9c8-3cbe85c352e1\",\n            \"posterId\": \"1fa7e60b-26a4-481f-a0af-2a43c4b14b1b\",\n            \"speakerId\": \"d05ba894-3e9e-405e-b037-53f203a86d83\",\n            \"createdAt\": \"2022-11-21T17:13:35.693Z\",\n            \"updatedAt\": \"2022-11-21T17:13:35.693Z\"\n        },\n        {\n            \"id\": \"c246c3f6-cdc9-4d3e-8db3-31e960ce302e\",\n            \"posterId\": \"7fe6c576-9acf-48e3-9dde-0f4517ceb8c7\",\n            \"speakerId\": \"26cedc0c-132b-4509-8a33-476bb4f428dc\",\n            \"createdAt\": \"2022-11-23T19:39:27.418Z\",\n            \"updatedAt\": \"2022-11-23T19:39:27.418Z\"\n        },\n        {\n            \"id\": \"06487913-c983-4f46-bbff-7340a3b3afa4\",\n            \"posterId\": \"17cccc3c-5f12-4892-865d-c6a154e773e2\",\n            \"speakerId\": \"199d7689-4eb1-431e-bc0e-d46bb7522849\",\n            \"createdAt\": \"2022-11-23T19:39:33.922Z\",\n            \"updatedAt\": \"2022-11-23T19:39:33.922Z\"\n        },\n        {\n            \"id\": \"d8282ec3-7c58-492f-ae0f-eda4e0ddbbf4\",\n            \"posterId\": \"b141e060-5ebc-4b1e-910e-6f6a202761be\",\n            \"speakerId\": \"bfdca4e7-8538-45ab-8a83-0304b0f90d3d\",\n            \"createdAt\": \"2022-11-23T19:39:36.836Z\",\n            \"updatedAt\": \"2022-11-23T19:39:36.836Z\"\n        },\n        {\n            \"id\": \"baaaaf2e-c887-4110-8402-e38002d7d7c7\",\n            \"posterId\": \"8408dc30-eb4c-4f6f-b5d1-7067f7ac78dd\",\n            \"speakerId\": \"f6b96945-8926-4537-a38b-a5c5640721ee\",\n            \"createdAt\": \"2022-11-23T19:39:46.915Z\",\n            \"updatedAt\": \"2022-11-23T19:39:46.915Z\"\n        },\n        {\n            \"id\": \"f3d372f0-8b16-4b04-8b96-ace50508acbb\",\n            \"posterId\": \"8408dc30-eb4c-4f6f-b5d1-7067f7ac78dd\",\n            \"speakerId\": \"c393b26a-26d7-4063-a5d1-3cf5358a28cf\",\n            \"createdAt\": \"2022-11-23T19:39:47.109Z\",\n            \"updatedAt\": \"2022-11-23T19:39:47.109Z\"\n        },\n        {\n            \"id\": \"4952cb5e-2d3c-4bc4-9aad-43b056cf89c9\",\n            \"posterId\": \"f7aba9fb-089a-42c1-aa56-210d2bdb24b1\",\n            \"speakerId\": \"7451dc65-d975-429d-ae8d-624206dd2b63\",\n            \"createdAt\": \"2022-11-23T19:40:04.902Z\",\n            \"updatedAt\": \"2022-11-23T19:40:04.902Z\"\n        },\n        {\n            \"id\": \"4e5803eb-59e0-4f74-a93b-fc847f51827e\",\n            \"posterId\": \"7f9f2dbf-8f58-4e26-a345-d0dc36b4f677\",\n            \"speakerId\": \"26cedc0c-132b-4509-8a33-476bb4f428dc\",\n            \"createdAt\": \"2022-11-23T19:40:07.421Z\",\n            \"updatedAt\": \"2022-11-23T19:40:07.421Z\"\n        },\n        {\n            \"id\": \"8306fe6b-21ee-49a2-992e-f2f538c976cb\",\n            \"posterId\": \"ee47c0a0-9ff2-4bca-ab74-f162fa62b5c7\",\n            \"speakerId\": \"d34af08b-0e54-43b4-891f-7b2565731f9b\",\n            \"createdAt\": \"2022-11-23T19:40:10.556Z\",\n            \"updatedAt\": \"2022-11-23T19:40:10.556Z\"\n        },\n        {\n            \"id\": \"f013f1a0-a0d5-4270-b3c5-2b83e61610ae\",\n            \"posterId\": \"3f9db9d0-0ed0-4714-aaca-9b30cda5b384\",\n            \"speakerId\": \"102ddc6c-9188-4536-ba7c-9ad2d1ac4aa5\",\n            \"createdAt\": \"2022-11-23T19:40:13.605Z\",\n            \"updatedAt\": \"2022-11-23T19:40:13.605Z\"\n        },\n        {\n            \"id\": \"b9494df2-9858-41a6-a4d5-6aa84d9ba191\",\n            \"posterId\": \"0ab4a412-55ad-44a3-807e-ad7960264cf8\",\n            \"speakerId\": \"2e3d45c1-0255-460e-b884-af07569ee2dc\",\n            \"createdAt\": \"2022-11-23T19:40:16.650Z\",\n            \"updatedAt\": \"2022-11-23T19:40:16.650Z\"\n        },\n        {\n            \"id\": \"1f8c08e5-0c51-4c04-bcd2-45345f038120\",\n            \"posterId\": \"9dce5a65-48b3-4919-8c3b-97b880ef7c37\",\n            \"speakerId\": \"bfdca4e7-8538-45ab-8a83-0304b0f90d3d\",\n            \"createdAt\": \"2022-11-23T19:40:19.687Z\",\n            \"updatedAt\": \"2022-11-23T19:40:19.687Z\"\n        },\n        {\n            \"id\": \"631b309d-db21-4fb8-a5fd-8689d131b359\",\n            \"posterId\": \"0c8ee3a0-07fd-4d81-8684-7da815ac4b83\",\n            \"speakerId\": \"f6b96945-8926-4537-a38b-a5c5640721ee\",\n            \"createdAt\": \"2022-11-23T19:40:22.819Z\",\n            \"updatedAt\": \"2022-11-23T19:40:22.819Z\"\n        },\n        {\n            \"id\": \"361b275d-d532-4842-9aab-c153b7ecb9e2\",\n            \"posterId\": \"5d27595a-1e7c-4456-9c6c-1cf6938c925b\",\n            \"speakerId\": \"19ce32f1-f91b-400b-b4f1-a49e2e8d3b34\",\n            \"createdAt\": \"2022-11-23T19:40:25.357Z\",\n            \"updatedAt\": \"2022-11-23T19:40:25.357Z\"\n        },\n        {\n            \"id\": \"120d437c-8a98-4ee8-aac9-b5e42c06560a\",\n            \"posterId\": \"ff08de93-1158-42e8-ad9d-5c4b7c442494\",\n            \"speakerId\": \"e54e7a4f-1430-486a-93ea-98539b4e7296\",\n            \"createdAt\": \"2022-11-23T19:40:27.898Z\",\n            \"updatedAt\": \"2022-11-23T19:40:27.898Z\"\n        },\n        {\n            \"id\": \"3b388c2b-9982-4abc-b41a-b56e406e3eea\",\n            \"posterId\": \"5b787d3c-c8ab-408e-8cf8-7c65489edccb\",\n            \"speakerId\": \"4ae714e3-c566-4e3a-bcb7-40e358bd0273\",\n            \"createdAt\": \"2022-11-23T19:40:30.429Z\",\n            \"updatedAt\": \"2022-11-23T19:40:30.429Z\"\n        },\n        {\n            \"id\": \"40de275b-4c45-47ef-960f-dad3ef1b4cab\",\n            \"posterId\": \"4972d086-c954-44eb-9d25-1738d7bbe4bd\",\n            \"speakerId\": \"82a73c9d-b687-48cd-a7af-bc079e65663d\",\n            \"createdAt\": \"2022-11-23T19:40:32.972Z\",\n            \"updatedAt\": \"2022-11-23T19:40:32.972Z\"\n        },\n        {\n            \"id\": \"7535cfea-413b-49ed-a290-9b84251530a6\",\n            \"posterId\": \"b7ccf85b-687c-4cf2-a647-3d639fa525e8\",\n            \"speakerId\": \"7f55ccd5-5266-4f1e-9dd0-b87a5c1ebc38\",\n            \"createdAt\": \"2022-11-23T19:40:38.206Z\",\n            \"updatedAt\": \"2022-11-23T19:40:38.206Z\"\n        },\n        {\n            \"id\": \"30218451-95f0-4226-a440-0cca699c5ce5\",\n            \"posterId\": \"511c69e7-b92d-4695-97c1-3902342908dc\",\n            \"speakerId\": \"03dff746-9cda-416c-992d-353d60db7a59\",\n            \"createdAt\": \"2023-06-22T22:11:24.945Z\",\n            \"updatedAt\": \"2023-06-22T22:11:24.945Z\"\n        },\n        {\n            \"id\": \"0f68772d-bafc-4f93-8be2-baa5452a4977\",\n            \"posterId\": \"c7c6f0cb-bee5-4c27-84ad-c1f62fa6a9c0\",\n            \"speakerId\": \"64467d13-a7a1-479f-80f8-588f89cf367f\",\n            \"createdAt\": \"2022-11-23T19:40:35.624Z\",\n            \"updatedAt\": \"2022-11-23T19:40:35.624Z\"\n        },\n        {\n            \"id\": \"d0de5d45-357a-45ad-837e-4aa3f919b4fb\",\n            \"posterId\": \"548d24fd-0ea2-46af-9261-364078932cb3\",\n            \"speakerId\": \"0c4738c1-42e7-4291-885b-3668a7cb6bf6\",\n            \"createdAt\": \"2022-11-23T19:40:44.494Z\",\n            \"updatedAt\": \"2022-11-23T19:40:44.494Z\"\n        },\n        {\n            \"id\": \"904b43b8-c44e-4c13-ab6d-aa1aa814a2a4\",\n            \"posterId\": \"3d825647-b5ed-4b3d-a456-b305973b52cb\",\n            \"speakerId\": \"c368e27c-f1a9-49b3-85fe-2d86425d8e86\",\n            \"createdAt\": \"2022-11-23T19:40:47.518Z\",\n            \"updatedAt\": \"2022-11-23T19:40:47.518Z\"\n        },\n        {\n            \"id\": \"b5e9a98c-d2f5-4f06-8cdf-05f345910271\",\n            \"posterId\": \"2d87629f-026c-4398-bb07-f01662d44785\",\n            \"speakerId\": \"7ee189b3-2917-4470-8a5b-f9be71802352\",\n            \"createdAt\": \"2023-06-22T22:12:32.332Z\",\n            \"updatedAt\": \"2023-06-22T22:12:32.332Z\"\n        },\n        {\n            \"id\": \"432dca5c-8f94-47e0-8baf-13fdcf9ed64f\",\n            \"posterId\": \"491dcaaf-de56-47db-8be2-73dc8b0d000d\",\n            \"speakerId\": \"40d597a7-0a6d-42f7-8241-93744fc8f3cd\",\n            \"createdAt\": \"2022-11-23T19:40:41.353Z\",\n            \"updatedAt\": \"2022-11-23T19:40:41.353Z\"\n        },\n        {\n            \"id\": \"6cdf8113-af10-4036-b8b9-b68a76d049c7\",\n            \"posterId\": \"c07f7527-54c3-4737-9fbb-674ef89abb37\",\n            \"speakerId\": \"4c6a33ea-0a16-41d4-bf2d-2b82b64b4bf3\",\n            \"createdAt\": \"2023-06-22T21:36:43.349Z\",\n            \"updatedAt\": \"2023-06-22T21:36:43.349Z\"\n        },\n        {\n            \"id\": \"801d696a-a957-41e7-b108-9a27c1017619\",\n            \"posterId\": \"55c65aed-915e-42c5-957c-393389f3705e\",\n            \"speakerId\": \"4a435099-3f9a-4d98-8a8a-fff07c03f8cd\",\n            \"createdAt\": \"2023-06-22T21:38:23.459Z\",\n            \"updatedAt\": \"2023-06-22T21:38:23.459Z\"\n        },\n        {\n            \"id\": \"7959888b-d96c-4c18-bfde-98702b98c0fc\",\n            \"posterId\": \"3b1aa2a3-7ff5-42cd-a221-33646dc934a1\",\n            \"speakerId\": \"f19ededf-3a90-425f-aeea-e073ad38a9c2\",\n            \"createdAt\": \"2023-06-22T22:13:13.326Z\",\n            \"updatedAt\": \"2023-06-22T22:13:13.326Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 52,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 52\n    }\n}"}],"_postman_id":"ed7becea-6a22-4a14-89c5-911d04c72185"},{"name":"Create a Poster-Speaker relationship","id":"79947bdd-743a-41f2-b279-f86c9fa5cd49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"posterId\":\"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\r\n\"speakerId\":\"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2","description":"<p>Create a poster and speaker relationship.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>speakerId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>Must be the primary identifier of an existing Speaker.</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>Must be the primary identifier of an existing Poster.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["poster-speaker","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"bb9c152c-208f-4885-93f6-7831e8d56939","name":"Create a poster-speaker relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"posterId\":\"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\r\n\"speakerId\":\"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:25:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"224"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e0-E7Y4LvcquWRNG6BGFpzSDuvmzxk\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6197f861-2aa4-490d-bdc8-485f94570594\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"updatedAt\": \"2023-06-28T20:25:31.886Z\",\n    \"createdAt\": \"2023-06-28T20:25:31.886Z\"\n}"}],"_postman_id":"79947bdd-743a-41f2-b279-f86c9fa5cd49"},{"name":"Read a Poster-Speaker relationship","id":"e474f6f3-95d3-4e1c-bfaf-260a81be0122","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2/:id","description":"<p>Retrieve single record for a related poster and speaker</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posters</td>\n<td>speakers</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["poster-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"4078bf64-9ef6-4e3e-adf2-d3fbb0412200","type":"any","value":"6197f861-2aa4-490d-bdc8-485f94570594","key":"id"}]}},"response":[{"id":"a41d610f-5ed4-4ff4-bebd-73ad253d4b8e","name":"Read a poster-speaker relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["poster-speaker","v2",":id"],"variable":[{"key":"id","value":"6197f861-2aa4-490d-bdc8-485f94570594"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:26:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"224"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e0-uGWQUM9wMTzvC2nB4t2Fnr8g5xU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6197f861-2aa4-490d-bdc8-485f94570594\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"createdAt\": \"2023-06-28T20:25:31.886Z\",\n    \"updatedAt\": \"2023-06-28T20:25:31.886Z\"\n}"},{"id":"8bf0bef4-d472-4f91-bf9c-b07418dee73f","name":"Read a Poster-Speaker relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2/:id?include=posters,speakers","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["poster-speaker","v2",":id"],"query":[{"key":"include","value":"posters,speakers"}],"variable":[{"key":"id","value":"ad6d92e8-04ec-4bf3-bab0-f0a91e606990"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2646"},{"key":"ETag","value":"W/\"a56-CAtZrEYjzsCkb1p3sAa18OUJ8G8\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:15:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ad6d92e8-04ec-4bf3-bab0-f0a91e606990\",\n    \"posterId\": \"97316b28-c460-450d-a3a1-9cb92e06d352\",\n    \"speakerId\": \"2459d701-613a-4973-8b54-0b9150c2695c\",\n    \"createdAt\": \"2023-05-19T00:02:54.844Z\",\n    \"updatedAt\": \"2023-05-19T00:02:54.844Z\",\n    \"posters\": {\n        \"collection\": [\n            {\n                \"id\": \"97316b28-c460-450d-a3a1-9cb92e06d352\",\n                \"clientIdentifier\": \"p4uz5\",\n                \"producerRecordIdentifier\": \"oqbzw\",\n                \"title\": \"RSS\",\n                \"startsAt\": \"2023-05-19T00:02:54.834Z\",\n                \"endsAt\": \"2023-05-20T00:02:54.820Z\",\n                \"description\": \"A description\",\n                \"abstract\": \"Future\",\n                \"embargoedAt\": \"2023-05-20T00:02:54.820Z\",\n                \"disclosure\": \"Product\",\n                \"isFeatured\": false,\n                \"isTimed\": false,\n                \"author\": null,\n                \"keywords\": [\n                    \"harum\",\n                    \"id\",\n                    \"pariatur\",\n                    \"et\",\n                    \"enim\"\n                ],\n                \"customAttributes\": \"{\\\"foo\\\":\\\"T#HS,`?KP*\\\",\\\"bar\\\":88769,\\\"bike\\\":\\\"[MO)LIklY)\\\",\\\"a\\\":65404,\\\"b\\\":70234,\\\"name\\\":99827,\\\"prop\\\":\\\"*O5\\\\\\\\G\\\\\\\\i;}e\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:54.834Z\",\n                \"updatedAt\": \"2023-05-19T00:02:54.835Z\",\n                \"eventId\": \"3b0d3f66-b9f3-465a-bdfc-8bb4625ecd26\",\n                \"postercategoryId\": \"cdd4a7db-3bfd-40e7-9437-ef63f99dfcbf\",\n                \"posterformatId\": \"24d2a85a-bacf-4c9f-9803-14232987643c\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"speakers\": {\n        \"collection\": [\n            {\n                \"id\": \"2459d701-613a-4973-8b54-0b9150c2695c\",\n                \"producerRecordIdentifier\": \"ktaes\",\n                \"prefix\": \"Mr.\",\n                \"preferredName\": \"Lacey\",\n                \"firstName\": \"Sydni\",\n                \"middleName\": \"James\",\n                \"lastName\": \"Towne\",\n                \"suffix\": \"DVM\",\n                \"degree\": \"Product Security Representative\",\n                \"title\": \"Corporate Program Associate\",\n                \"organization\": \"Technician\",\n                \"city\": \"Lake Yazmin\",\n                \"state\": \"Connecticut\",\n                \"country\": \"Timor-Leste\",\n                \"email\": \"Shaun.Schuster64@hotmail.com\",\n                \"emailTwo\": \"Sidney.Harris50@yahoo.com\",\n                \"phoneNumber\": \"1-378-706-1861 x502\",\n                \"mobileNumber\": \"893.922.4791\",\n                \"faxNumber\": \"244.392.5882 x89093\",\n                \"otherPhoneNumber\": \"1-960-673-8312\",\n                \"isVip\": true,\n                \"website\": \"https://slim-peacock.name\",\n                \"headshotUrl\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1150.jpg\",\n                \"biographyText\": \"Investor\",\n                \"customAttributes\": \"{\\\"foo\\\":7949,\\\"bar\\\":\\\"2tkiy`i?Sn\\\",\\\"bike\\\":11438,\\\"a\\\":89662,\\\"b\\\":\\\"<2E'>0K(Rq\\\",\\\"name\\\":14649,\\\"prop\\\":\\\"/iKXZlgpP:\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:54.842Z\",\n                \"updatedAt\": \"2023-05-19T00:02:54.842Z\",\n                \"eventId\": \"3f25c4b9-ac62-4da3-8152-fba2def20d8e\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"poster\": {\n                \"href\": \"/posters/v2/97316b28-c460-450d-a3a1-9cb92e06d352\"\n            },\n            \"speaker\": {\n                \"href\": \"/speakers/v2/2459d701-613a-4973-8b54-0b9150c2695c\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"e474f6f3-95d3-4e1c-bfaf-260a81be0122"},{"name":"Destroy a Poster-Speaker relationship","id":"473d791b-3602-4fce-940a-dd32350db4dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2/:id","description":"<p>Delete a record so that poster and speaker records are no longer associated</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["poster-speaker","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"ab20d9a0-e01d-4069-bc77-baebd42174c5","type":"any","value":"6197f861-2aa4-490d-bdc8-485f94570594","key":"id"}]}},"response":[{"id":"ac437b9f-b765-4274-8ebe-c9e1261d80a9","name":"Destroy a poster-speaker relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/poster-speaker/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["poster-speaker","v2",":id"],"variable":[{"key":"id","value":"6197f861-2aa4-490d-bdc8-485f94570594"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Jun 2023 20:26:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"224"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Tue Jun 27 2023 22:45:52 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e0-uGWQUM9wMTzvC2nB4t2Fnr8g5xU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6197f861-2aa4-490d-bdc8-485f94570594\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"speakerId\": \"6b6ea960-10fa-4fe1-87cc-89718f4bcb9c\",\n    \"createdAt\": \"2023-06-28T20:25:31.886Z\",\n    \"updatedAt\": \"2023-06-28T20:25:31.886Z\"\n}"}],"_postman_id":"473d791b-3602-4fce-940a-dd32350db4dd"}],"id":"36a673b0-c557-4e4c-912a-35249472e75e","description":"<p>Collection of CRUD operations and options to create, read and delete poster-speaker relationship</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID (uuid).</td>\n</tr>\n<tr>\n<td>speakerId</td>\n<td>string</td>\n<td>Speaker ID (uuid).</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>string</td>\n<td>Poster ID (uuid).</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"36a673b0-c557-4e4c-912a-35249472e75e","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Postercategories (v2)","item":[{"name":"List Postercategories","id":"82b76a60-7091-48d4-ae71-a933b069e227","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/postercategories/v2","description":"<p>Retrieve a collection of postercategories.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postercategories","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"9f7363e3-7994-47df-a583-a29f4a671a29","name":"List postercategories","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postercategories/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postercategories","v2"],"query":[{"key":"filter[eventId][eq]","value":"71740882-8be8-4eeb-8ead-6ed1dbbe46ef","description":"Filters postercategories where eventId equals to \"71740882-8be8-4eeb-8ead-6ed1dbbe46ef\".","disabled":true},{"key":"filter[producerRecordIdentifier][substring]","value":"jgyyn","description":"Filters postercategories where producerRecordIdentifier has substring of \"jgyyn\".","disabled":true},{"key":"filter[name][eq]","value":"methodology","description":"Filters postercategories where name equals to \"methodology\"","disabled":true},{"key":"filter[description][eq]","value":"null","description":"Filters postercategories where description is equal to null","disabled":true},{"key":"page","value":"2","description":"Filters postercategories at page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:24:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"28065"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"6da1-VSrGPYQbR/frMzMXa28dNi66FcM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"ddb3b5d0-4380-48ba-b1c5-e04cd1a91aa9\",\n            \"producerRecordIdentifier\": \"poster category\",\n            \"name\": \"Synthesize\",\n            \"description\": \"The description of the poster can be added here.\",\n            \"createdAt\": \"2023-06-12T20:12:17.124Z\",\n            \"updatedAt\": \"2023-06-12T20:12:17.124Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"82b76a60-7091-48d4-ae71-a933b069e227"},{"name":"Create a Postercategory","id":"b545b1bd-a430-4941-95d5-c4ad90f0d6dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n    \"name\": \"Information Technology\",\n    \"description\": \"Anything and everything IT related.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/postercategories/v2","description":"<p>Create a new postercategory.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Required field. Event ID associated with the postercategory record (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field. Producer record identifier associated with the postercategory record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Required field. Postercategory name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Optional field. Description.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postercategories","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"83dcbb39-38aa-4018-bb85-b33f46b3d699","name":"Create a postercategory","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n    \"name\": \"Information Technology\",\n    \"description\": \"Anything and everything IT related.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/postercategories/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:29:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"322"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"142-icQT9uoeDF2ZMKOTiUFY6tPi77Q\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a9c684d6-9cda-414a-b930-2249ee42db94\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n    \"name\": \"Information Technology\",\n    \"description\": \"Anything and everything IT related.\",\n    \"updatedAt\": \"2023-06-20T22:29:00.313Z\",\n    \"createdAt\": \"2023-06-20T22:29:00.313Z\"\n}"}],"_postman_id":"b545b1bd-a430-4941-95d5-c4ad90f0d6dd"},{"name":"Read a Postercategory","id":"6f5f05af-fbac-4da0-82cb-99e0d28edbcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/postercategories/v2/:postercategoryId","description":"<p>Retrieve a single postercategory.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>posters</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postercategories","v2",":postercategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"796fa537-eeeb-4474-95bd-c236e3622681","description":{"content":"<p>postercategoryId</p>\n","type":"text/plain"},"type":"any","value":"a9c684d6-9cda-414a-b930-2249ee42db94","key":"postercategoryId"}]}},"response":[{"id":"b49ae789-c229-4e39-abc3-8a1700560f2a","name":"Read a postercategory","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postercategories/v2/:postercategoryId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postercategories","v2",":postercategoryId"],"variable":[{"key":"postercategoryId","value":"a9c684d6-9cda-414a-b930-2249ee42db94","description":"postercategoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:29:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"322"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"142-DzROqcUibbl7Vpif09NlcKIO71I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a9c684d6-9cda-414a-b930-2249ee42db94\",\n    \"producerRecordIdentifier\": \"a3d10bdd-60be-4dd2-ad30-0eec0d9fa198\",\n    \"name\": \"Information Technology\",\n    \"description\": \"Anything and everything IT related.\",\n    \"createdAt\": \"2023-06-20T22:29:00.313Z\",\n    \"updatedAt\": \"2023-06-20T22:29:00.313Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}"},{"id":"1ac16f05-254a-4d3d-b477-f4ba2024dbdf","name":"Read a Postercategory with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postercategories/v2/:postercategoryId?include=posters","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postercategories","v2",":postercategoryId"],"query":[{"key":"include","value":"posters"}],"variable":[{"key":"postercategoryId","value":"ed720ff0-a381-48af-bd78-9137934d8158","description":"postercategoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1542"},{"key":"ETag","value":"W/\"606-PF8emfub8SpsFOq7BwOmqgn2z6k\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:18:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ed720ff0-a381-48af-bd78-9137934d8158\",\n    \"producerRecordIdentifier\": \"gvy00\",\n    \"name\": \"interfaces\",\n    \"description\": \"A description\",\n    \"createdAt\": \"2023-05-19T00:02:51.637Z\",\n    \"updatedAt\": \"2023-05-19T00:02:51.638Z\",\n    \"eventId\": \"b86434f5-b49b-4499-afc8-6a71590a1337\",\n    \"posters\": {\n        \"collection\": [\n            {\n                \"id\": \"d017bf78-f324-4de9-a386-53b0958892ff\",\n                \"clientIdentifier\": \"b8wnu\",\n                \"producerRecordIdentifier\": \"9a0sq\",\n                \"title\": \"Salad\",\n                \"startsAt\": \"2023-05-19T00:02:51.656Z\",\n                \"endsAt\": \"2023-05-20T00:02:51.624Z\",\n                \"description\": \"A description\",\n                \"abstract\": \"Dynamic\",\n                \"embargoedAt\": \"2023-05-20T00:02:51.624Z\",\n                \"disclosure\": \"Principal\",\n                \"isFeatured\": false,\n                \"isTimed\": true,\n                \"author\": \"Optional motivating moderator evolve virtual infomediaries\",\n                \"keywords\": [\n                    \"distinctio\",\n                    \"possimus\",\n                    \"aut\",\n                    \"quidem\",\n                    \"voluptas\"\n                ],\n                \"customAttributes\": \"{\\\"foo\\\":\\\"O>zcp|hOLy\\\",\\\"bar\\\":\\\"&&Vbi<aE*/\\\",\\\"bike\\\":31982,\\\"a\\\":75696,\\\"b\\\":\\\"pHy?Gi]w0T\\\",\\\"name\\\":85545,\\\"prop\\\":\\\"^UDRifRp%G\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:51.656Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.657Z\",\n                \"eventId\": \"afc736c6-9557-458b-9cfd-f391d4545abe\",\n                \"postercategoryId\": \"ed720ff0-a381-48af-bd78-9137934d8158\",\n                \"posterformatId\": \"621a0093-c9d7-43e3-8b11-d6d41aae406b\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/b86434f5-b49b-4499-afc8-6a71590a1337\"\n            }\n        },\n        \"children\": {\n            \"posters\": {\n                \"href\": \"/posters/v2?filter[postercategoryId][eq]=ed720ff0-a381-48af-bd78-9137934d8158\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"6f5f05af-fbac-4da0-82cb-99e0d28edbcc"},{"name":"Update a Postercategory","id":"286e91c5-4f01-4396-94f5-74d4b68e222d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \n    \"producerRecordIdentifier\": \"987cvz\" \n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/postercategories/v2/:postercategoryId","description":"<p>Modify one or more fields on the single Postercategory record of the supplied Postercategory ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID associated with the postercategory record (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the postercategory record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Postercategory name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postercategories","v2",":postercategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"27670929-4b3b-4f33-8b4b-c0edc3aecf00","description":{"content":"<p>PosterCategoryId</p>\n","type":"text/plain"},"type":"any","value":"a9c684d6-9cda-414a-b930-2249ee42db94","key":"postercategoryId"}]}},"response":[{"id":"6caedb5a-7f07-42d8-9934-a79106b143c3","name":"Update a postercategory","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \n    \"producerRecordIdentifier\": \"987cvz\" \n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postercategories/v2/:postercategoryId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postercategories","v2",":postercategoryId"],"variable":[{"key":"postercategoryId","value":"a9c684d6-9cda-414a-b930-2249ee42db94","description":"PosterCategoryId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:31:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"295"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"127-hhvfopt400s7oeSAG/LFwKOLhCY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a9c684d6-9cda-414a-b930-2249ee42db94\",\n    \"producerRecordIdentifier\": \"987cvz\",\n    \"name\": \"A new poster category\",\n    \"description\": \"New description for new poster category\",\n    \"createdAt\": \"2023-06-20T22:29:00.313Z\",\n    \"updatedAt\": \"2023-06-20T22:31:34.375Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}"}],"_postman_id":"286e91c5-4f01-4396-94f5-74d4b68e222d"},{"name":"Destroy a Postercategory","id":"2d3fc301-e6e0-4f9c-8585-61b7a2b16918","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/postercategories/v2/:postercategoryId","description":"<p>Delete a postercategory record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postercategories","v2",":postercategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"dd1e32a3-653b-4bae-8644-7f10bec0c924","description":{"content":"<p>PosterCategoryId</p>\n","type":"text/plain"},"type":"any","value":"a9c684d6-9cda-414a-b930-2249ee42db94","key":"postercategoryId"}]}},"response":[{"id":"d3a46727-760e-4608-8ca0-06b2a6a22371","name":"Destroy a postercategory","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postercategories/v2/:postercategoryId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postercategories","v2",":postercategoryId"],"variable":[{"key":"postercategoryId","value":"a9c684d6-9cda-414a-b930-2249ee42db94","description":"PosterCategoryId"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:32:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"295"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"127-hhvfopt400s7oeSAG/LFwKOLhCY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a9c684d6-9cda-414a-b930-2249ee42db94\",\n    \"producerRecordIdentifier\": \"987cvz\",\n    \"name\": \"A new poster category\",\n    \"description\": \"New description for new poster category\",\n    \"createdAt\": \"2023-06-20T22:29:00.313Z\",\n    \"updatedAt\": \"2023-06-20T22:31:34.375Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}"}],"_postman_id":"2d3fc301-e6e0-4f9c-8585-61b7a2b16918"}],"id":"64c98ce4-c1ed-4ba3-a688-8c8802c35cb2","description":"<p>Collection of CRUD operations and options to interact with Postercategories.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Poster Category ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID associated with the poster category record.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the poster category record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Poster Category name.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"64c98ce4-c1ed-4ba3-a688-8c8802c35cb2","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Posterformats (v2)","item":[{"name":"List Posterformats","id":"eadec56c-f880-4577-a05e-2164f1c0f394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterformats/v2","description":"<p>Retrieve a collection of posterformats.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterformats","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"03896022-8f84-4e0e-a8e0-5d5574fa70f3","name":"List posterformats","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterformats/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterformats","v2"],"query":[{"key":"filter[fullName][eq]","value":"PDF","description":"Filters posterformats where fullName equals \"PDF\".","disabled":true},{"key":"page","value":"2","description":"Filters posterformats at page number 2.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:33:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"442"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1ba-Ft/cpV1cjddJdHCj4Wls9+IURcg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"d02f450f-77e0-4e5e-a9fd-5d451f6c3287\",\n            \"fullName\": \"PDF\",\n            \"createdAt\": \"2022-09-23T16:15:42.429Z\",\n            \"updatedAt\": \"2022-09-23T16:15:42.429Z\"\n        },\n        {\n            \"id\": \"ea97c7a8-73b5-4a71-b93f-36cc195c4aac\",\n            \"fullName\": \"Video\",\n            \"createdAt\": \"2022-09-23T16:15:42.429Z\",\n            \"updatedAt\": \"2022-09-23T16:15:42.429Z\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"eadec56c-f880-4577-a05e-2164f1c0f394"},{"name":"Read a Posterformat","id":"262ab030-f7da-4a7c-a8c0-446c69c81a61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterformats/v2/:posterformatId","description":"<p>Retrieve a single posterformat record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterformats","v2",":posterformatId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Posterformat ID</p>\n","type":"text/plain"},"type":"any","value":"ea97c7a8-73b5-4a71-b93f-36cc195c4aac","key":"posterformatId"}]}},"response":[{"id":"63c869bf-e2f0-4b90-bb22-0556119cfd9b","name":"Read a posterformat","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterformats/v2/:posterformatId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterformats","v2",":posterformatId"],"variable":[{"key":"posterformatId","value":"ea97c7a8-73b5-4a71-b93f-36cc195c4aac","description":"Posterformat ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:34:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"142"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"8e-eeGwqdH45ZuocRU3EXzzncyp5Vg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ea97c7a8-73b5-4a71-b93f-36cc195c4aac\",\n    \"fullName\": \"Video\",\n    \"createdAt\": \"2022-09-23T16:15:42.429Z\",\n    \"updatedAt\": \"2022-09-23T16:15:42.429Z\"\n}"}],"_postman_id":"262ab030-f7da-4a7c-a8c0-446c69c81a61"}],"id":"1c8213cd-ff1b-4426-ac92-7e8ab57fdb09","description":"<p>Collection of operations and options to interact with Posterformats.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Posterformat ID (uuid).</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full name of a posterformat record.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1c8213cd-ff1b-4426-ac92-7e8ab57fdb09","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Posterlinks (v2)","item":[{"name":"List Posterlinks","id":"5b519494-70f1-4c5e-90f9-87b95b81f555","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2","description":"<p>Retrieve a collection of posterlinks.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c3ee3332-b52d-4c1a-9765-594ad94fa4dc","name":"List posterlinks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2"],"query":[{"key":"filter[posterId][eq]","value":"6fa6f4c8-1ddc-440f-b8b4-61f826088466","description":"filter posterlinks where posterId equals \"6fa6f4c8-1ddc-440f-b8b4-61f826088466\"","disabled":true},{"key":"filter[fullName][eq]","value":"posterlink 1234","description":"filter posterlinks with full name equals to \"session Link 1234\" ","disabled":true},{"key":"filter[fullName][substring]","value":"ame","description":"filter posterlinks having \"ame\" as a substring in full name","disabled":true},{"key":"filter[fullName][startsWith]","value":"Ergo","description":"filter posterlinks having full name starting with \"Ergo\"","disabled":true},{"key":"filter[value][eq]","value":"industrial2022","description":"filter posterlinks with value equals to \"industrial2022\"","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"filter posterlinsk with Id equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"filter posterlinks created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filter posterlinks created on and before \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filter posterlinks created before \"2022-04-12\"","disabled":true},{"key":"filter[createdAt][eq]","value":"2022-03-31T15:27:01.076Z","description":"filter posterlinks created on \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[value][eq]","value":"null","description":"filter posterlinks having value as NULL","disabled":true},{"key":"filter[createdAt][gt]","value":"2022-05-14T21:41:49.525Z","description":"filter posterlinks created after \"2022-05-14T21:41:49.525Z\"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:36:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"33058"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"8122-MHXHUtCpn5+7JM3dUAOp6HZcLX0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"f466647f-a8ee-434f-a460-1a7e8bb79f77\",\n            \"producerRecordIdentifier\": null,\n            \"type\": \"cmeLink\",\n            \"fullName\": \"Poster on Information Technology\",\n            \"value\": \"random value\",\n            \"createdAt\": \"2023-06-12T20:12:42.484Z\",\n            \"updatedAt\": \"2023-06-12T20:12:42.484Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"5b519494-70f1-4c5e-90f9-87b95b81f555"},{"name":"Create a Posterlink","id":"e79fe121-5294-4e22-b945-279214c1783c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2","description":"<p>Create a new posterlink.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Required field.  <br />Poster ID associated with Poster Link record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Required Field.  <br />Event ID linked to the Poster Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Required field.  <br />Type of posterlink</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Optional field.  <br />Value associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Optional field.  <br />Full Name for the posterlink record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"124174b1-a295-43eb-a824-bb8370325c1c","name":"Create a posterlink","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:39:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"368"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"170-YQV6ET2NMPZYbrN51Fnmj+XGGfI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\",\n    \"updatedAt\": \"2023-06-20T22:39:50.814Z\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\"\n}"}],"_postman_id":"e79fe121-5294-4e22-b945-279214c1783c"},{"name":"Read a Posterlink","id":"060e5e8c-3f8e-4d48-b8bd-032c65eb542d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","description":"<p>Retrieve a single posterlink record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>posters</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2",":posterlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"4688b372-6804-4e1c-a2fe-6e621792e548","description":{"content":"<p>Posterlink ID</p>\n","type":"text/plain"},"type":"any","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","key":"posterlinkId"}]}},"response":[{"id":"1e998389-8070-4c44-a8d5-b3f320c57cbf","name":"Read a posterlink","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2",":posterlinkId"],"variable":[{"key":"posterlinkId","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","description":"Posterlink ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:40:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"368"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"170-eilbgWGPYAKjkyt2TeVS3Jb7Fmg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\",\n    \"updatedAt\": \"2023-06-20T22:39:50.814Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n}"},{"id":"7128fc3c-dfb1-4434-9e5e-3fa449d37f1b","name":"Read a Posterlink with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId?include=posters","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2",":posterlinkId"],"query":[{"key":"include","value":"posters"}],"variable":[{"key":"posterlinkId","value":"fefee434-fbc8-41a2-8e24-859d73bae56e","description":"Posterlink ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1566"},{"key":"ETag","value":"W/\"61e-f8WwVOG8lcXJugzJwsPryjgQOgM\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:20:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fefee434-fbc8-41a2-8e24-859d73bae56e\",\n    \"producerRecordIdentifier\": \"f5u66\",\n    \"type\": \"postercmeLink\",\n    \"fullName\": \"Generic Fresh Hat\",\n    \"value\": \"http://fast-newsstand.org\",\n    \"createdAt\": \"2023-05-19T00:02:54.371Z\",\n    \"updatedAt\": \"2023-05-19T00:02:54.371Z\",\n    \"eventId\": \"f8bc4e2a-5e15-4bef-b7d3-3001df0c2254\",\n    \"posterId\": \"2a6ff550-d315-4cc4-907b-46d051890fa3\",\n    \"posters\": {\n        \"collection\": [\n            {\n                \"id\": \"2a6ff550-d315-4cc4-907b-46d051890fa3\",\n                \"clientIdentifier\": \"orgeh\",\n                \"producerRecordIdentifier\": \"jwdgz\",\n                \"title\": \"Movies\",\n                \"startsAt\": \"2023-05-19T00:02:54.368Z\",\n                \"endsAt\": \"2023-05-22T00:02:54.354Z\",\n                \"description\": \"A description\",\n                \"abstract\": \"Central\",\n                \"embargoedAt\": \"2023-05-22T00:02:54.354Z\",\n                \"disclosure\": \"Senior\",\n                \"isFeatured\": true,\n                \"isTimed\": true,\n                \"author\": \"Monitored multi-state monitoring implement dot-com bandwidth\",\n                \"keywords\": [\n                    \"in\",\n                    \"modi\",\n                    \"voluptates\",\n                    \"atque\",\n                    \"vitae\"\n                ],\n                \"customAttributes\": \"{\\\"foo\\\":87218,\\\"bar\\\":79767,\\\"bike\\\":73828,\\\"a\\\":\\\"a3Z||HLZY|\\\",\\\"b\\\":71482,\\\"name\\\":91479,\\\"prop\\\":71365}\",\n                \"createdAt\": \"2023-05-19T00:02:54.368Z\",\n                \"updatedAt\": \"2023-05-19T00:02:54.368Z\",\n                \"eventId\": \"9c700478-b514-49cf-ad20-ae9e87fbca1a\",\n                \"postercategoryId\": \"c211f9f4-ebfd-4961-aea7-252d8ab743fb\",\n                \"posterformatId\": \"7a9fe58d-625b-4119-8159-a54a3364ad21\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/f8bc4e2a-5e15-4bef-b7d3-3001df0c2254\"\n            },\n            \"poster\": {\n                \"href\": \"/posters/v2/2a6ff550-d315-4cc4-907b-46d051890fa3\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"060e5e8c-3f8e-4d48-b8bd-032c65eb542d"},{"name":"Update a Posterlink","id":"9ea1e599-ef75-4e0b-bd4b-705cfde2246b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"Open-source Link\",\n    \"value\": \"https://federico.name\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","description":"<p>Modify one or more fields on the single Posterlink record of the supplied Posterlink ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Poster ID associated with Poster Link record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID linked to the Poster Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of posterlink</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full Name for the posterlink record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2",":posterlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"39209389-9bf1-436e-86cb-0bbe88b7677c","description":{"content":"<p>Posterlink ID</p>\n","type":"text/plain"},"type":"any","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","key":"posterlinkId"}]}},"response":[{"id":"a54b9103-c9f9-4dbc-9458-08cfbf63621a","name":"Update a posterlink","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"Open-source Link\",\n    \"value\": \"https://federico.name\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2",":posterlinkId"],"variable":[{"key":"posterlinkId","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","description":"Posterlink ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:43:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"148-o5P7H5Kn2swsULdCIHQemdnq4nA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"Open-source Link\",\n    \"fullName\": null,\n    \"value\": \"https://federico.name\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\",\n    \"updatedAt\": \"2023-06-20T22:43:29.730Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n}"}],"_postman_id":"9ea1e599-ef75-4e0b-bd4b-705cfde2246b"},{"name":"Destroy a Posterlink","id":"cd0bb222-e150-4e32-a2b1-82852b4d32e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","description":"<p>Delete an posterlink record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2",":posterlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"22697fdd-e166-48c2-901b-41dd54f8248e","description":{"content":"<p>Posterlink ID</p>\n","type":"text/plain"},"type":"any","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","key":"posterlinkId"}]}},"response":[{"id":"492150d6-840d-4ab0-acee-26dfaeef9198","name":"Destroy a posterlink","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2",":posterlinkId"],"variable":[{"key":"posterlinkId","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","description":"Posterlink ID"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:44:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"148-o5P7H5Kn2swsULdCIHQemdnq4nA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"Open-source Link\",\n    \"fullName\": null,\n    \"value\": \"https://federico.name\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\",\n    \"updatedAt\": \"2023-06-20T22:43:29.730Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n}"}],"_postman_id":"cd0bb222-e150-4e32-a2b1-82852b4d32e2"}],"id":"0efa8b02-292e-482e-b89a-6e71553f13ef","description":"<p>Collection of CRUD operations and options to interact with Posterlinks.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Posterlink ID (uuid).</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>string</td>\n<td>Poster ID associated with posterlink link record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Poster Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of posterlink</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full Name for the posterlink record</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0efa8b02-292e-482e-b89a-6e71553f13ef","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Posterfiles (v2)","item":[{"name":"List Posterfiles","id":"21e3cea5-8a28-4c2b-abdb-f96cb29857a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2","description":"<p>Retrieve a collection of posterfiles.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterfiles","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"e359cee8-18f8-41c2-9bee-b201a7e2a5f4","name":"List posterfiles","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterfiles","v2"],"query":[{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"Filters posterfiles where Id equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[eventId][eq]","value":"98ef2c48-718d-4eeb-b0b5-e819ed181134","description":"Filters posterfiles where eventId equals to \"98ef2c48-718d-4eeb-b0b5-e819ed181134\"","disabled":true},{"key":"filter[posterId][eq]","value":"89c54076-c61e-49fb-97e8-f4338ef27acc","description":"Filters posterfiles where posterId equals \"89c54076-c61e-49fb-97e8-f4338ef27acc\"","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"null","description":"Filters posterfiles where producerRecordIdentifier equals Null","disabled":true},{"key":"filter[name][eq]","value":"Sample File","description":"Filters posterfiles where name equals substring \"Sample File\"","disabled":true},{"key":"filter[name][substring]","value":"Ame","description":"Filters posterfiles where name has substring \"Ame\"","disabled":true},{"key":"filter[type][eq]","value":"Data","description":"Filters posterfiles where type equals to \"Data\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"Filters posterfiles created on or after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"Filters posterfiles created before \"2022-04-18\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"Filters posterfiles updated at \"2022-04-12\"","disabled":true},{"key":"filter[systemPath][substring]","value":"Local","description":"Filters posterfiles where systemPath has substring  \"Local\"","disabled":true},{"key":"filter[extension][eq]","value":"Excel","description":"Filters posterfiles where extension equals to \"Excel\"","disabled":true},{"key":"page","value":"2","description":"Filters posterfiles on page 2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:44:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"39540"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"9a74-0J539/kkRRtpD4Ki3N0VzHkfdpw\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"sizeInBytes\": null,\n            \"id\": \"e689c351-e909-40e0-aedb-5867032a9635\",\n            \"producerRecordIdentifier\": \"Auto Poster\",\n            \"name\": \"Auto Poster\",\n            \"url\": \"www.testurl2.com\",\n            \"type\": null,\n            \"extension\": \"jpeg\",\n            \"systemPath\": \"Auto System Path\",\n            \"createdAt\": \"2023-06-12T20:12:17.330Z\",\n            \"updatedAt\": \"2023-06-12T20:12:17.330Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n        },\n        {\n            \"sizeInBytes\": null,\n            \"id\": \"11265e67-357d-4128-8f3d-ce406c05aab6\",\n            \"producerRecordIdentifier\": \"Auto Poster\",\n            \"name\": \"IT Poster\",\n            \"url\": \"www.itposter.com\",\n            \"type\": null,\n            \"extension\": \"pptx\",\n            \"systemPath\": \"Auto System Path\",\n            \"createdAt\": \"2023-06-12T20:14:13.064Z\",\n            \"updatedAt\": \"2023-06-12T20:14:13.064Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"posterId\": \"7a1a1c1d-eb1b-460c-917a-6c3926bf4a73\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2\n    }\n}"}],"_postman_id":"21e3cea5-8a28-4c2b-abdb-f96cb29857a6"},{"name":"Create a Posterfile","id":"0bf0d396-4fb0-4aa7-9025-92a3a81c5ec4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n    \"name\": \"Small Clothing File\",\n    \"url\": \"https://lizeth.net\",\n    \"type\": \"application\",\n    \"extension\": \"pdf\",\n    \"systemPath\": \"/srv/firewall.ace\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2","description":"<p>Create a new Posterfile record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Required Field.  <br />Event ID associated with the posterfile record. (uuid)</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Required Field.  <br />Poster ID associated with the posterfile record. (uuid)</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional Field.  <br />Producer record identifier associated with the posterfile record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Required Field.  <br />Name assigned to the posterfile</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Optional Field.  <br />URL/path associated to the posterfile.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Optional Field.  <br />Type of posterfile</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Optional Field.  <br />Extension of the posterfile</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>Optional Field.  <br />system path associated to the posterfile.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>Optional Field.  <br />size of file in bytes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterfiles","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"fd81dee6-c84d-4a4d-a114-c967e5e8e6a7","name":"Create a posterfile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n    \"name\": \"Small Clothing File\",\n    \"url\": \"https://lizeth.net\",\n    \"type\": \"application\",\n    \"extension\": \"pdf\",\n    \"systemPath\": \"/srv/firewall.ace\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:50:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"435"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1b3-DqeYrZ71xrUFrwqkxKjgsmHuNsg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n    \"name\": \"Small Clothing File\",\n    \"url\": \"https://lizeth.net\",\n    \"type\": \"application\",\n    \"extension\": \"pdf\",\n    \"systemPath\": \"/srv/firewall.ace\",\n    \"updatedAt\": \"2023-06-20T22:50:35.028Z\",\n    \"createdAt\": \"2023-06-20T22:50:35.028Z\"\n}"}],"_postman_id":"0bf0d396-4fb0-4aa7-9025-92a3a81c5ec4"},{"name":"Read a Posterfile","id":"f0b7fbd7-864c-498b-b627-2eaaa31a8270","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2/:posterfileId","description":"<p>Retrieve a single posterfile record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>posters</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterfiles","v2",":posterfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"8bf8c507-bcf8-4ac0-86dd-be126f69a23d","description":{"content":"<p>Posterfile ID.</p>\n","type":"text/plain"},"type":"any","value":"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b","key":"posterfileId"}]}},"response":[{"id":"8f40667f-07cf-4e1f-9689-6736acd7c6ea","name":"Read a posterfile","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2/:posterfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterfiles","v2",":posterfileId"],"variable":[{"key":"posterfileId","value":"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b","description":"Posterfile ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:51:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"435"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1b3-xhZBzIoe3WD5k6c6wEYiPO/vQcY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e54f\",\n    \"name\": \"Small Clothing File\",\n    \"url\": \"https://lizeth.net\",\n    \"type\": \"application\",\n    \"extension\": \"pdf\",\n    \"systemPath\": \"/srv/firewall.ace\",\n    \"createdAt\": \"2023-06-20T22:50:35.028Z\",\n    \"updatedAt\": \"2023-06-20T22:50:35.028Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n}"},{"id":"6d00f54b-0fb5-483d-9b74-52baaa50f688","name":"Read a Posterfile with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2/:posterfileId?include=posters","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterfiles","v2",":posterfileId"],"query":[{"key":"include","value":"posters"}],"variable":[{"key":"posterfileId","value":"80bd49f9-0b80-4b03-913f-0c4983c78a25","description":"Posterfile ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1650"},{"key":"ETag","value":"W/\"672-NBESTTXLpLT+/Rkm0GGzBVORVoc\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:22:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": 83763,\n    \"id\": \"80bd49f9-0b80-4b03-913f-0c4983c78a25\",\n    \"producerRecordIdentifier\": \"pisef\",\n    \"name\": \"Handmade Bronze Fish\",\n    \"url\": \"https://minty-refuse.info\",\n    \"type\": \"image\",\n    \"extension\": \"wrl\",\n    \"systemPath\": \"/usr\",\n    \"createdAt\": \"2023-05-19T00:02:51.668Z\",\n    \"updatedAt\": \"2023-05-19T00:02:51.668Z\",\n    \"eventId\": \"f4b5e114-7202-477d-8163-bc4ea909a9cd\",\n    \"posterId\": \"d017bf78-f324-4de9-a386-53b0958892ff\",\n    \"posters\": {\n        \"collection\": [\n            {\n                \"id\": \"d017bf78-f324-4de9-a386-53b0958892ff\",\n                \"clientIdentifier\": \"b8wnu\",\n                \"producerRecordIdentifier\": \"9a0sq\",\n                \"title\": \"Salad\",\n                \"startsAt\": \"2023-05-19T00:02:51.656Z\",\n                \"endsAt\": \"2023-05-20T00:02:51.624Z\",\n                \"description\": \"A description\",\n                \"abstract\": \"Dynamic\",\n                \"embargoedAt\": \"2023-05-20T00:02:51.624Z\",\n                \"disclosure\": \"Principal\",\n                \"isFeatured\": false,\n                \"isTimed\": true,\n                \"author\": \"Optional motivating moderator evolve virtual infomediaries\",\n                \"keywords\": [\n                    \"distinctio\",\n                    \"possimus\",\n                    \"aut\",\n                    \"quidem\",\n                    \"voluptas\"\n                ],\n                \"customAttributes\": \"{\\\"foo\\\":\\\"O>zcp|hOLy\\\",\\\"bar\\\":\\\"&&Vbi<aE*/\\\",\\\"bike\\\":31982,\\\"a\\\":75696,\\\"b\\\":\\\"pHy?Gi]w0T\\\",\\\"name\\\":85545,\\\"prop\\\":\\\"^UDRifRp%G\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:51.656Z\",\n                \"updatedAt\": \"2023-05-19T00:02:51.657Z\",\n                \"eventId\": \"afc736c6-9557-458b-9cfd-f391d4545abe\",\n                \"postercategoryId\": \"ed720ff0-a381-48af-bd78-9137934d8158\",\n                \"posterformatId\": \"621a0093-c9d7-43e3-8b11-d6d41aae406b\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/f4b5e114-7202-477d-8163-bc4ea909a9cd\"\n            },\n            \"poster\": {\n                \"href\": \"/posters/v2/d017bf78-f324-4de9-a386-53b0958892ff\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"f0b7fbd7-864c-498b-b627-2eaaa31a8270"},{"name":"Update a Posterfile","id":"94543fb5-8f6b-42d9-bf33-81a7e969af41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Small Grocery File\",\n    \"url\": \"http://oral.name\",\n    \"type\": \"message\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2/:posterfileId","description":"<p>Modify one or more fields on the single Posterfile record of the supplied Posterfile ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID associated with the posterfile record. (uuid)</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Poster ID associated with the posterfile record. (uuid)</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the posterfile record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name assigned to the posterfile</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>URL/path associated to the posterfile.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of posterfile</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Extension of the posterfile</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>System path associated to the posterfile.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>Size of file in bytes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterfiles","v2",":posterfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"4c1a58dd-7f2d-416a-a59c-4f8b42c8b4a7","description":{"content":"<p>Posterfile ID.</p>\n","type":"text/plain"},"type":"any","value":"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b","key":"posterfileId"}]}},"response":[{"id":"c1221b2e-2c58-4796-982d-77811f7c794e","name":"Update a posterfile","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Small Grocery File\",\n    \"url\": \"http://oral.name\",\n    \"type\": \"message\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2/:posterfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterfiles","v2",":posterfileId"],"variable":[{"key":"posterfileId","value":"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b","description":"Posterfile ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:55:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"401"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"191-jhgUGRDuT+H6Y3k/2tdZ4K0MM3I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b\",\n    \"producerRecordIdentifier\": \"1C347dhMau2fY5xMPwy3EWkSa\",\n    \"name\": \"Small Grocery File\",\n    \"url\": \"http://oral.name\",\n    \"type\": \"message\",\n    \"extension\": null,\n    \"systemPath\": null,\n    \"createdAt\": \"2023-06-20T22:50:35.028Z\",\n    \"updatedAt\": \"2023-06-20T22:55:09.013Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n}"}],"_postman_id":"94543fb5-8f6b-42d9-bf33-81a7e969af41"},{"name":"Destroy a Posterfile","id":"770053dc-73ae-4a5c-9368-e4dcba5da0ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2/:posterfileId","description":"<p>Delete a posterfile record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterfiles","v2",":posterfileId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"e0d614ee-144f-4296-87f9-d808c4da3c7b","description":{"content":"<p>Posterfile ID.</p>\n","type":"text/plain"},"type":"any","value":"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b","key":"posterfileId"}]}},"response":[{"id":"2b4f7aa0-8939-42b7-aa9d-59687b063853","name":"Destroy a posterfile","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterfiles/v2/:posterfileId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterfiles","v2",":posterfileId"],"variable":[{"key":"posterfileId","value":"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b","description":"Posterfile ID."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:55:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"401"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"191-jhgUGRDuT+H6Y3k/2tdZ4K0MM3I\""}],"cookie":[],"responseTime":null,"body":"{\n    \"sizeInBytes\": null,\n    \"id\": \"30eb84ef-bf9e-4db9-b897-5f92a5f0b18b\",\n    \"producerRecordIdentifier\": \"1C347dhMau2fY5xMPwy3EWkSa\",\n    \"name\": \"Small Grocery File\",\n    \"url\": \"http://oral.name\",\n    \"type\": \"message\",\n    \"extension\": null,\n    \"systemPath\": null,\n    \"createdAt\": \"2023-06-20T22:50:35.028Z\",\n    \"updatedAt\": \"2023-06-20T22:55:09.013Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n}"}],"_postman_id":"770053dc-73ae-4a5c-9368-e4dcba5da0ed"}],"id":"b2e0de1e-3e17-400e-bda8-be1d26a4511f","description":"<p>Collection of CRUD operations and options to interact with Posterfiles</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Posterfile ID (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID associated with the posterfile record (uuid).</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>string</td>\n<td>Poster ID associated with the posterfile record (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the posterfile record.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name assigned to the posterfile</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>URL/path associated to the posterfile.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of posterfile</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>string</td>\n<td>Extension of the posterfile</td>\n</tr>\n<tr>\n<td>systemPath</td>\n<td>string</td>\n<td>system path associated to the posterfile.</td>\n</tr>\n<tr>\n<td>sizeInBytes</td>\n<td>bigint</td>\n<td>size of file in bytes</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b2e0de1e-3e17-400e-bda8-be1d26a4511f","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Postervideos (v2)","item":[{"name":"List Postervideos","id":"c1b70212-f8a4-49ec-acf8-0293db95315b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/postervideos/v2","description":"<p>Retrieve a collection of postervideos.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postervideos","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"9b327180-23db-4af4-a4c6-217b19434732","name":"List postervideos","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postervideos/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postervideos","v2"],"query":[{"key":"filter[posterId][eq]","value":"de966aea-0121-4803-be23-4b638376aaf9","description":"Filters postervideos where posterId equals \"de966aea-0121-4803-be23-4b638376aaf9\"","disabled":true},{"key":"filter[producerRecordIdentifier][substring]","value":"g1cw6","description":"Filters postervideos whereproducerRecordIdentifier has a substring of \"g1cw6\".","disabled":true},{"key":"filter[type][eq]","value":"mp3","description":"Filters postervideos where type equals to \"mp3\".","disabled":true},{"key":"filter[closedcaptionDashboardUrl][eq]","value":"https://www.closedcaptionDashboardUrl.com","description":"Filters postervideos where closedcaptionDashboardUrl equals \"https://www.closedcaptionDashboardUrl.com\".","disabled":true},{"key":"filter[streamKey][startsWith]","value":"SRC","description":"Filters postervideos where streamKey startswith \"SRC\".","disabled":true},{"key":"page","value":"2","description":"Filters postervideos where page number is 2.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:57:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"58364"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"e3fc-Ufn05UFnzcBw3lyRwf1DfhyDKrQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"90ecbe42-10ac-4b45-b836-3c3b2c563079\",\n            \"producerRecordIdentifier\": \"SA5446E2U92286910DI06730\",\n            \"type\": \"audio\",\n            \"directPlayerLink\": \"http://placeimg.com/640/480\",\n            \"adminUrl\": \"http://marlee.org\",\n            \"embedCode\": \"VJIARED1303\",\n            \"rtmpUrl\": \"https://darlene.org\",\n            \"streamKey\": \"ABCD1234z1\",\n            \"closedcaptionRtmpUrl\": \"http://lempi.biz\",\n            \"closedcaptionStreamKey\": \"uhvrfg4561\",\n            \"closedcaptionDashboardUrl\": \"http://susie.com\",\n            \"createdAt\": \"2023-06-12T20:12:17.435Z\",\n            \"updatedAt\": \"2023-06-12T20:12:17.435Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"c1b70212-f8a4-49ec-acf8-0293db95315b"},{"name":"Create a Postervideo","id":"c0017cd6-0f96-455c-ae83-9f050ad84aaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\":  \"mp3\",           \n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\":  \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",        \n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\":  \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/postervideos/v2","description":"<p>Create a new postervideo record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Required field.  <br />Poster ID associated with the Poster Video record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Required Field.  <br />Event ID linked to the Poster Video(uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated with the postervideo record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />File type of the postervideo.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Optional field.  <br />Direct player link of the postervideo.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Admin url.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Rtmp url.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption rtmp url.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Optional field.  <br />Nullable.  <br />Closed caption dashboard url.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postervideos","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"b365273e-13ef-4231-a53d-905178b0d53b","name":"Create a postervideo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\":  \"mp3\",           \n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\":  \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",        \n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\":  \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/postervideos/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:58:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"659"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"293-QfTTZDW0IoL4bYhDicMQNBzzR0E\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0\",\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\": \"mp3\",\n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\": \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",\n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\": \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"updatedAt\": \"2023-06-20T22:58:58.781Z\",\n    \"createdAt\": \"2023-06-20T22:58:58.781Z\"\n}"}],"_postman_id":"c0017cd6-0f96-455c-ae83-9f050ad84aaf"},{"name":"Read a Postervideo","id":"693f3baa-08ff-4f62-90dd-b0ed5349b5f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/postervideos/v2/:postervideoId","description":"<p>Retrieve a single postervideo record.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>posters</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postervideos","v2",":postervideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"45f76c75-e70d-49e9-b7b4-7aac67618f1c","description":{"content":"<p>Postervideo ID</p>\n","type":"text/plain"},"type":"any","value":"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0","key":"postervideoId"}]}},"response":[{"id":"1767e7e8-7740-473c-a824-47399dfabb85","name":"Read a postervideo","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postervideos/v2/:postervideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postervideos","v2",":postervideoId"],"variable":[{"key":"postervideoId","value":"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0","description":"Postervideo ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:59:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"659"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"293-ahPTXpd3ShD7bhwxfmJBX7m/nls\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0\",\n    \"producerRecordIdentifier\": \"216e2c29-99c8-401f-bd3b-f5767b854965\",\n    \"type\": \"mp3\",\n    \"directPlayerLink\": \"https://www.directPlayerLink.com\",\n    \"adminUrl\": \"https://www.adminUrl.com\",\n    \"embedCode\": \"ibm_24579952\",\n    \"rtmpUrl\": \"https://www.rtmpUrl.com\",\n    \"streamKey\": \"BVRT879000VBNMH\",\n    \"closedcaptionRtmpUrl\": \"https://www.closedcaptionRtmpUrl.com\",\n    \"closedcaptionStreamKey\": \"STRCV109870\",\n    \"closedcaptionDashboardUrl\": \"https://www.closedcaptionDashboardUrl.com\",\n    \"createdAt\": \"2023-06-20T22:58:58.781Z\",\n    \"updatedAt\": \"2023-06-20T22:58:58.781Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n}"},{"id":"b61744b5-a16b-4917-ae49-22cc675d5493","name":"Read a Postervideo with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postervideos/v2/:postervideoId?include=posters","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postervideos","v2",":postervideoId"],"query":[{"key":"include","value":"posters"}],"variable":[{"key":"postervideoId","value":"95e2d1fc-8224-459c-8976-d0bb9d7c36f3","description":"Postervideo ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1793"},{"key":"ETag","value":"W/\"701-KK4tFPe+jwuuRtJxeR+kSz4oQlI\""},{"key":"Date","value":"Tue, 11 Jun 2024 15:23:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"95e2d1fc-8224-459c-8976-d0bb9d7c36f3\",\n    \"producerRecordIdentifier\": \"iay8o\",\n    \"type\": \"image\",\n    \"directPlayerLink\": \"https://honored-strudel.info\",\n    \"adminUrl\": \"https://physical-flan.com\",\n    \"embedCode\": \"174lgc9itu\",\n    \"rtmpUrl\": \"http://sorrowful-narrative.name\",\n    \"streamKey\": \"19lktbcce0j0g2a\",\n    \"closedcaptionRtmpUrl\": \"https://obedient-abrogation.info\",\n    \"closedcaptionStreamKey\": \"w3r7twsnn4usc1s\",\n    \"closedcaptionDashboardUrl\": \"https://stale-visor.com\",\n    \"createdAt\": \"2023-05-19T00:02:54.615Z\",\n    \"updatedAt\": \"2023-05-19T00:02:54.615Z\",\n    \"eventId\": \"9960a50f-fb2b-4aff-91a4-3b3c2d703557\",\n    \"posterId\": \"5555a7f0-51b9-4469-a268-b3cd8b47351e\",\n    \"posters\": {\n        \"collection\": [\n            {\n                \"id\": \"5555a7f0-51b9-4469-a268-b3cd8b47351e\",\n                \"clientIdentifier\": \"b174f\",\n                \"producerRecordIdentifier\": \"gn7dj\",\n                \"title\": \"back\",\n                \"startsAt\": \"2023-05-19T00:02:54.612Z\",\n                \"endsAt\": \"2023-05-20T00:02:54.596Z\",\n                \"description\": \"A description\",\n                \"abstract\": \"Regional\",\n                \"embargoedAt\": \"2023-05-20T00:02:54.596Z\",\n                \"disclosure\": \"Direct\",\n                \"isFeatured\": true,\n                \"isTimed\": true,\n                \"author\": null,\n                \"keywords\": [\n                    \"incidunt\",\n                    \"corrupti\",\n                    \"aut\",\n                    \"dolor\",\n                    \"et\"\n                ],\n                \"customAttributes\": \"{\\\"foo\\\":15769,\\\"bar\\\":\\\"`GC>!HuQL(\\\",\\\"bike\\\":74196,\\\"a\\\":\\\"B-1{0B0W,s\\\",\\\"b\\\":46487,\\\"name\\\":39519,\\\"prop\\\":\\\">QFmI;#Bd}\\\"}\",\n                \"createdAt\": \"2023-05-19T00:02:54.612Z\",\n                \"updatedAt\": \"2023-05-19T00:02:54.613Z\",\n                \"eventId\": \"54a8dd91-7bf3-48e9-88c6-2996e8d23144\",\n                \"postercategoryId\": \"8cb1c5ef-fe57-41e1-b893-ec54bb0bf53c\",\n                \"posterformatId\": \"3182640a-9338-48fa-9595-b5a0f9d1577c\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/9960a50f-fb2b-4aff-91a4-3b3c2d703557\"\n            },\n            \"poster\": {\n                \"href\": \"/posters/v2/5555a7f0-51b9-4469-a268-b3cd8b47351e\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"693f3baa-08ff-4f62-90dd-b0ed5349b5f2"},{"name":"Update a Postervideo","id":"6c0da305-a4cf-4665-9479-2d532fe6286a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{          \n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/postervideos/v2/:postervideoId","description":"<p>Modify one or more fields on the single Postervideo record of the supplied Postervideo ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Poster ID associated with the Poster Video record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID linked to the Poster Video(uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the postervideo record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>File type of the postervideo.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Direct player link of the postervideo.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Admin url.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Rtmp url.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Closed caption rtmp url.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Closed caption dashboard url.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postervideos","v2",":postervideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"70932a58-65ac-4fbe-8769-789c7ed6780d","description":{"content":"<p>Postervideo ID</p>\n","type":"text/plain"},"type":"any","value":"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0","key":"postervideoId"}]}},"response":[{"id":"2375e0d5-8150-4afe-b836-6f9a7c30f329","name":"Update a postervideo","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{          \n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postervideos/v2/:postervideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postervideos","v2",":postervideoId"],"variable":[{"key":"postervideoId","value":"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0","description":"Postervideo ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 23:01:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"492"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1ec-VI435fYB7PSQeCT+zvgjl4MHbEQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"application\",\n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\",\n    \"adminUrl\": null,\n    \"embedCode\": null,\n    \"rtmpUrl\": null,\n    \"streamKey\": null,\n    \"closedcaptionRtmpUrl\": null,\n    \"closedcaptionStreamKey\": null,\n    \"closedcaptionDashboardUrl\": null,\n    \"createdAt\": \"2023-06-20T22:58:58.781Z\",\n    \"updatedAt\": \"2023-06-20T23:01:59.593Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n}"}],"_postman_id":"6c0da305-a4cf-4665-9479-2d532fe6286a"},{"name":"Destroy a Postervideo","id":"1c389539-d17d-4132-b740-7437ec428718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/postervideos/v2/:postervideoId","description":"<p>Delete a postervideo record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["postervideos","v2",":postervideoId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"3a9acef3-a3ce-4ec8-9dd9-2cbf8002eca6","description":{"content":"<p>Postervideo ID</p>\n","type":"text/plain"},"type":"any","value":"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0","key":"postervideoId"}]}},"response":[{"id":"cfb37512-a8e4-4d85-9ab0-af5d9d475c11","name":"Destroy a postervideo","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/postervideos/v2/:postervideoId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["postervideos","v2",":postervideoId"],"variable":[{"key":"postervideoId","value":"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0","description":"Postervideo ID"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 23:02:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"492"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"1ec-VI435fYB7PSQeCT+zvgjl4MHbEQ\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5b6a2cce-56d3-4915-8aa0-a87f119b5eb0\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"application\",\n    \"directPlayerLink\": \"https://www.directPlayerLinkUpdated.com\",\n    \"adminUrl\": null,\n    \"embedCode\": null,\n    \"rtmpUrl\": null,\n    \"streamKey\": null,\n    \"closedcaptionRtmpUrl\": null,\n    \"closedcaptionStreamKey\": null,\n    \"closedcaptionDashboardUrl\": null,\n    \"createdAt\": \"2023-06-20T22:58:58.781Z\",\n    \"updatedAt\": \"2023-06-20T23:01:59.593Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"ab9cf7a9-b05b-4ad9-9d6b-6fd529423b7e\"\n}"}],"_postman_id":"1c389539-d17d-4132-b740-7437ec428718"}],"id":"a69c996c-8382-4b3f-9d4a-47af511717ea","description":"<p>Collection of CRUD operations and options to interact with Postervideos.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Postervideo ID (uuid).</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>string</td>\n<td>Poster ID associated with the Poster Video record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Poster Video(uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated with the Poster Video id record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>File type.</td>\n</tr>\n<tr>\n<td>directPlayerLink</td>\n<td>string</td>\n<td>Direct player link.</td>\n</tr>\n<tr>\n<td>adminUrl</td>\n<td>string</td>\n<td>Admin URL.</td>\n</tr>\n<tr>\n<td>embedCode</td>\n<td>string</td>\n<td>Embed code.</td>\n</tr>\n<tr>\n<td>rtmpUrl</td>\n<td>string</td>\n<td>Rtmp URL.</td>\n</tr>\n<tr>\n<td>streamKey</td>\n<td>string</td>\n<td>Stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionRtmpUrl</td>\n<td>string</td>\n<td>Closed caption rtmp URL.</td>\n</tr>\n<tr>\n<td>closedcaptionStreamKey</td>\n<td>string</td>\n<td>Closed caption stream key.</td>\n</tr>\n<tr>\n<td>closedcaptionDashboardUrl</td>\n<td>string</td>\n<td>Closed caption dashboard URL.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>iso formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>iso formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a69c996c-8382-4b3f-9d4a-47af511717ea","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Posterlinks (v2)","item":[{"name":"List Posterlinks","id":"475483ba-64d1-40c1-840c-2d66fef8a52f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2","description":"<p>Retrieve a collection of posterlinks.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c5a0e11f-8128-4afe-84a8-bc3495276168","name":"List posterlinks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2"],"query":[{"key":"filter[posterId][eq]","value":"6fa6f4c8-1ddc-440f-b8b4-61f826088466","description":"filter posterlinks where posterId equals \"6fa6f4c8-1ddc-440f-b8b4-61f826088466\"","disabled":true},{"key":"filter[fullName][eq]","value":"posterlink 1234","description":"filter posterlinks with full name equals to \"session Link 1234\" ","disabled":true},{"key":"filter[fullName][substring]","value":"ame","description":"filter posterlinks having \"ame\" as a substring in full name","disabled":true},{"key":"filter[fullName][startsWith]","value":"Ergo","description":"filter posterlinks having full name starting with \"Ergo\"","disabled":true},{"key":"filter[value][eq]","value":"industrial2022","description":"filter posterlinks with value equals to \"industrial2022\"","disabled":true},{"key":"filter[id][in][]","value":"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e","description":"filter posterlinsk with Id equals to \"8d9650e3-5da4-4ec7-9be7-70603d2c7a1e\"","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","description":"filter posterlinks created on and after \"2022-04-01\"","disabled":true},{"key":"filter[createdAt][lte]","value":"2022-04-08","description":"filter posterlinks created on and before \"2022-04-08\"","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","description":"filter posterlinks created before \"2022-04-12\"","disabled":true},{"key":"filter[createdAt][eq]","value":"2022-03-31T15:27:01.076Z","description":"filter posterlinks created on \"2022-03-31T15:27:01.076Z\"","disabled":true},{"key":"filter[value][eq]","value":"null","description":"filter posterlinks having value as NULL","disabled":true},{"key":"filter[createdAt][gt]","value":"2022-05-14T21:41:49.525Z","description":"filter posterlinks created after \"2022-05-14T21:41:49.525Z\"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:36:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"33058"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"8122-MHXHUtCpn5+7JM3dUAOp6HZcLX0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"f466647f-a8ee-434f-a460-1a7e8bb79f77\",\n            \"producerRecordIdentifier\": null,\n            \"type\": \"cmeLink\",\n            \"fullName\": \"Poster on Information Technology\",\n            \"value\": \"random value\",\n            \"createdAt\": \"2023-06-12T20:12:42.484Z\",\n            \"updatedAt\": \"2023-06-12T20:12:42.484Z\",\n            \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n            \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 1,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 1\n    }\n}"}],"_postman_id":"475483ba-64d1-40c1-840c-2d66fef8a52f"},{"name":"Create a Posterlink","id":"d12afda9-d864-4dfc-80d2-63033e33f25b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2","description":"<p>Create a new posterlink.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Required field.  <br />Poster ID associated with Poster Link record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Required Field.  <br />Event ID linked to the Poster Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Optional field.  <br />Producer record identifier associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Required field.  <br />Type of posterlink</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Optional field.  <br />Value associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Optional field.  <br />Full Name for the posterlink record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"baafb484-6587-4aa5-83c2-86952080b891","name":"Create a posterlink","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:39:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"368"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"170-YQV6ET2NMPZYbrN51Fnmj+XGGfI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\",\n    \"updatedAt\": \"2023-06-20T22:39:50.814Z\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\"\n}"}],"_postman_id":"d12afda9-d864-4dfc-80d2-63033e33f25b"},{"name":"Read a Posterlink","id":"1cb69bfa-4184-445e-ab45-5809570285db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","description":"<p>Retrieve a single posterlink record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2",":posterlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Posterlink ID</p>\n","type":"text/plain"},"type":"any","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","key":"posterlinkId"}]}},"response":[{"id":"1c70809d-9803-40c8-aa2b-1c99457eb515","name":"Read a posterlink","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2",":posterlinkId"],"variable":[{"key":"posterlinkId","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","description":"Posterlink ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:40:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"368"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"170-eilbgWGPYAKjkyt2TeVS3Jb7Fmg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"producerRecordIdentifier\": \"3a59e3e0-fa76-40ce-bd4d-573228c2e52e\",\n    \"type\": \"Tasty Link\",\n    \"fullName\": \"Intelligent panel\",\n    \"value\": \"https://kayden.biz\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\",\n    \"updatedAt\": \"2023-06-20T22:39:50.814Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n}"}],"_postman_id":"1cb69bfa-4184-445e-ab45-5809570285db"},{"name":"Update a Posterlink","id":"2a29a39a-5ec1-4d11-aacd-ed73e2697d60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"Open-source Link\",\n    \"value\": \"https://federico.name\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","description":"<p>Modify one or more fields on the single Posterlink record of the supplied Posterlink ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>posterId</td>\n<td>UUID string</td>\n<td>Poster ID associated with Poster Link record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Event ID linked to the Poster Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of posterlink</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full Name for the posterlink record</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2",":posterlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Posterlink ID</p>\n","type":"text/plain"},"type":"any","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","key":"posterlinkId"}]}},"response":[{"id":"00e5727a-5dc3-4887-9ae6-f84c7105bba6","name":"Update a posterlink","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"Open-source Link\",\n    \"value\": \"https://federico.name\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2",":posterlinkId"],"variable":[{"key":"posterlinkId","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","description":"Posterlink ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:43:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"148-o5P7H5Kn2swsULdCIHQemdnq4nA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"Open-source Link\",\n    \"fullName\": null,\n    \"value\": \"https://federico.name\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\",\n    \"updatedAt\": \"2023-06-20T22:43:29.730Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n}"}],"_postman_id":"2a29a39a-5ec1-4d11-aacd-ed73e2697d60"},{"name":"Destroy a Posterlink","id":"77affcf4-c805-49f9-b7c5-9660135c30c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","description":"<p>Delete an posterlink record.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["posterlinks","v2",":posterlinkId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"description":{"content":"<p>Posterlink ID</p>\n","type":"text/plain"},"type":"any","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","key":"posterlinkId"}]}},"response":[{"id":"b968de68-c0cc-40b4-b23b-c6b2c53f6357","name":"Destroy a posterlink","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/posterlinks/v2/:posterlinkId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["posterlinks","v2",":posterlinkId"],"variable":[{"key":"posterlinkId","value":"7b7df715-16fe-4a12-8eaa-4cad4887c4fe","description":"Posterlink ID"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Jun 2023 22:44:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"Fri Jun 09 2023 16:39:14 GMT+0000 (Coordinated Universal Time)"},{"key":"X-Fuzion-Deployment-Tier","value":"stage"},{"key":"X-Fuzion-Node-Env","value":"stage"},{"key":"X-Fuzion-Region","value":"us-east-1"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"ETag","value":"W/\"148-o5P7H5Kn2swsULdCIHQemdnq4nA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7b7df715-16fe-4a12-8eaa-4cad4887c4fe\",\n    \"producerRecordIdentifier\": null,\n    \"type\": \"Open-source Link\",\n    \"fullName\": null,\n    \"value\": \"https://federico.name\",\n    \"createdAt\": \"2023-06-20T22:39:50.814Z\",\n    \"updatedAt\": \"2023-06-20T22:43:29.730Z\",\n    \"eventId\": \"1efecfee-0e43-413a-9a2e-e399fa1ca45a\",\n    \"posterId\": \"fc481dd1-fde0-4159-b32c-826d18e6200b\"\n}"}],"_postman_id":"77affcf4-c805-49f9-b7c5-9660135c30c3"}],"id":"909dd8f1-43ec-4bfd-9b83-26064cc5bc0d","description":"<p>Collection of CRUD operations and options to interact with Posterlinks.</p>\n<p><code>Response Body</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Posterlink ID (uuid).</td>\n</tr>\n<tr>\n<td>posterId</td>\n<td>string</td>\n<td>Poster ID associated with posterlink link record (uuid).</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>Event ID linked to the Poster Link (uuid).</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>Producer record identifier associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of posterlink</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Value associated to the posterlink record.</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>string</td>\n<td>Full Name for the posterlink record</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO formatted string</td>\n<td>Created timestamp (UTC).</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO formatted string</td>\n<td>Updated timestamp (UTC).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"909dd8f1-43ec-4bfd-9b83-26064cc5bc0d","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}}],"id":"c4bbdb12-913e-4b48-8e2d-1d949e98217b","_postman_id":"c4bbdb12-913e-4b48-8e2d-1d949e98217b","description":"","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitor","item":[{"name":"Exhibitors (v2)","item":[{"name":"List Exhibitors","id":"fa4412ab-2715-47b9-bae6-1ff0ad8c0732","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitors/v2","description":"<p>Retrieve a collection of Exhibitor records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>boothId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitoraddressId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>singleSignOnIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>isPreviousExhibitor</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>isMember</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>badgeAllocationCount</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>ticketAllocationCount</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>staffAllocationCount</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>email</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>producerSystem</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>status</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>website</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>logoUrl</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>sponsorshipLevel</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>bookedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>badgeAllocationCount</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>ticketAllocationCount</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>staffAllocationCount</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>status</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>sponsorshipLevel</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>bookedAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitors","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"c205a79f-6eac-4ca1-a10f-01b258a38b37","name":"List Exhibitors","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitors/v2","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitors","v2"],"query":[{"key":"filter[id][in][]","value":"e6e8926f-6db8-4af4-8ac3-8eee0463f73c","type":"text","description":"filter exhibitors where id matches one of the values provided.  Pass more filter queries like that to pass more items to the array. See example.","disabled":true},{"key":"filter[eventId][eq]","value":"05930e27-c388-4269-9baa-0d5a06e2909e","type":"text","description":"get exhibitors with eventId \"05930e27-c388-4269-9baa-0d5a06e2909e\".","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"null","type":"text","description":"filter exhibitors where producerRecordIdentifier equals to null.","disabled":true},{"key":"filter[singleSignOnIdentifier][endsWith]","value":"September","type":"text","description":"filter exhibitors where singleSignOnIdentifier ends with \"September\".","disabled":true},{"key":"filter[description][substring]","value":"ame","type":"text","description":"filter exhibitors where description has a substring \"ame\".","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","type":"text","description":"filter exhibitors that have been created on or after 2022-04-01 using greater than or equal operator.","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","description":"filter exhibitors that have been updated before 2022-04-12 using less than operator","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","description":"sort exhibitors by created on time in ascending order.","disabled":true},{"key":"page","value":"1","type":"text","description":"get the first page of exhibitors records using page query param.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3718"},{"key":"ETag","value":"W/\"e86-vwRTDCllBTccLcYgDdtaKSobh6k\""},{"key":"Date","value":"Thu, 12 Oct 2023 13:40:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"57733a5e-5bd7-4aa0-b509-67bbb62cb1db\",\n            \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n            \"producerRecordIdentifier\": \"61cf4692-ba76-4268-8bc3-06441b6c8b87\",\n            \"singleSignOnIdentifier\": \"452003\",\n            \"producerSystem\": \"MapYourShow\",\n            \"name\": \"Tagopia\",\n            \"isPreviousExhibitor\": false,\n            \"isFirstTime\": null,\n            \"isMember\": true,\n            \"badgeAllocationCount\": 67,\n            \"ticketAllocationCount\": 10,\n            \"staffAllocationCount\": 10,\n            \"phoneNumber\": \"564-240-4568\",\n            \"email\": \"ryashnov0@gnu.org\",\n            \"status\": \"Confirmed\",\n            \"website\": \"http://scribd.com/in/porttitor/pede.xml?nulla=ligula&nisl=nec&nunc=sem&nisl=duis&duis=aliquam&bibendum=convallis&felis=nunc&sed=proin&interdum=at&venenatis=turpis&turpis=a&enim=pede&blandit=posuere\",\n            \"logoUrl\": \"https://dummyimage.com/144x100.png/ff4444/ffffff\",\n            \"sponsorshipLevel\": \"Gold\",\n            \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Volutpat blandit aliquam etiam erat velit scelerisque in. A cras semper auctor neque vitae. Suspendisse faucibus interdum posuere lorem ipsum dolor sit amet consectetur. Commodo viverra maecenas accumsan lacus vel. Viverra orci sagittis eu volutpat odio facilisis mauris sit. Ut morbi tincidunt augue interdum velit. Mattis ullamcorper velit sed ullamcorper. Rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis. Habitant morbi tristique senectus et netus et malesuada fames. Tincidunt id aliquet risus feugiat in ante metus. Habitant morbi tristique senectus et netus et malesuada fames ac. Vel eros donec ac odio tempor orci. Egestas dui id ornare arcu odio ut sem nulla. Vulputate enim nulla aliquet porttitor lacus luctus accumsan. Aliquet enim tortor at auctor urna. Tristique senectus et netus et malesuada fames ac turpis.\",\n            \"customAttributes\": {\n                \"localCompany\": true\n            },\n            \"bookedAt\": \"2023-10-26T17:47:21.000Z\",\n            \"updatedAt\": \"2023-10-12T13:38:45.405Z\",\n            \"createdAt\": \"2023-10-12T13:38:45.405Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/7b5ca172-7df7-4b3f-b030-8052c5f983df\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"303c3624-d31c-4474-a002-dde510187ed3\",\n            \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n            \"producerRecordIdentifier\": \"e40b064b-f933-4f73-8ad0-597f100abc99\",\n            \"singleSignOnIdentifier\": \"385566\",\n            \"name\": \"Divavu\",\n            \"isPreviousExhibitor\": true,\n            \"isFirstTime\": null,\n            \"isMember\": true,\n            \"badgeAllocationCount\": 31,\n            \"ticketAllocationCount\": 51,\n            \"staffAllocationCount\": 51,\n            \"phoneNumber\": \"680-485-5817\",\n            \"email\": \"aleeburn1@vistaprint.com\",\n            \"producerSystem\": \"MapYourShow\",\n            \"status\": \"Confirmed\",\n            \"website\": \"http://hp.com/nulla/tempus.js?sit=vestibulum&amet=vestibulum&turpis=ante&elementum=ipsum&ligula=primis&vehicula=in&consequat=faucibus&morbi=orci&a=luctus&ipsum=et&integer=ultrices&a=posuere&nibh=cubilia&in=curae&quis=nulla&justo=dapibus&maecenas=dolor&rhoncus=vel&aliquam=est&lacus=donec&morbi=odio&quis=justo&tortor=sollicitudin&id=ut&nulla=suscipit&ultrices=a&aliquet=feugiat&maecenas=et&leo=eros&odio=vestibulum&condimentum=ac&id=est&luctus=lacinia&nec=nisi&molestie=venenatis&sed=tristique&justo=fusce&pellentesque=congue&viverra=diam&pede=id&ac=ornare&diam=imperdiet&cras=sapien&pellentesque=urna&volutpat=pretium&dui=nisl&maecenas=ut&tristique=volutpat&est=sapien&et=arcu&tempus=sed&semper=augue&est=aliquam&quam=erat&pharetra=volutpat&magna=in&ac=congue&consequat=etiam&metus=justo&sapien=etiam&ut=pretium&nunc=iaculis&vestibulum=justo&ante=in&ipsum=hac&primis=habitasse&in=platea&faucibus=dictumst&orci=etiam&luctus=faucibus&et=cursus&ultrices=urna&posuere=ut&cubilia=tellus&curae=nulla&mauris=ut&viverra=erat&diam=id&vitae=mauris&quam=vulputate&suspendisse=elementum&potenti=nullam&nullam=varius&porttitor=nulla&lacus=facilisi&at=cras&turpis=non&donec=velit&posuere=nec&metus=nisi&vitae=vulputate&ipsum=nonummy&aliquam=maecenas&non=tincidunt&mauris=lacus&morbi=at&non=velit&lectus=vivamus\",\n            \"logoUrl\": null,\n            \"sponsorshipLevel\": \"Silver\",\n            \"description\": null,\n            \"customAttributes\": null,\n            \"bookedAt\": \"2023-10-25T22:15:47.000Z\",\n            \"createdAt\": \"2023-10-11T20:20:21.192Z\",\n            \"updatedAt\": \"2023-10-12T13:45:36.844Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/7b5ca172-7df7-4b3f-b030-8052c5f983df\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitors/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"fa4412ab-2715-47b9-bae6-1ff0ad8c0732"},{"name":"Create an Exhibitor","id":"582bac62-6a70-4fb9-af50-98a196c5d847","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n    \"producerRecordIdentifier\": \"61cf4692-ba76-4268-8bc3-06441b6c8b87\",\n    \"singleSignOnIdentifier\": \"452003\",\n    \"producerSystem\": \"MapYourShow\",\n    \"name\": \"Tagopia\",\n    \"isPreviousExhibitor\": false,\n    \"isFirstTime\": null,\n    \"isMember\": true,\n    \"badgeAllocationCount\": 67,\n    \"ticketAllocationCount\": 10,\n    \"staffAllocationCount\": 10,\n    \"phoneNumber\": \"564-240-4568\",\n    \"email\": \"ryashnov0@gnu.org\",\n    \"status\": \"Confirmed\",\n    \"website\": \"http://scribd.com/in/porttitor/pede.xml?nulla=ligula&nisl=nec&nunc=sem&nisl=duis&duis=aliquam&bibendum=convallis&felis=nunc&sed=proin&interdum=at&venenatis=turpis&turpis=a&enim=pede&blandit=posuere\",\n    \"logoUrl\": \"https://dummyimage.com/144x100.png/ff4444/ffffff\",\n    \"sponsorshipLevel\": \"Gold\",\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Volutpat blandit aliquam etiam erat velit scelerisque in. A cras semper auctor neque vitae. Suspendisse faucibus interdum posuere lorem ipsum dolor sit amet consectetur. Commodo viverra maecenas accumsan lacus vel. Viverra orci sagittis eu volutpat odio facilisis mauris sit. Ut morbi tincidunt augue interdum velit. Mattis ullamcorper velit sed ullamcorper. Rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis. Habitant morbi tristique senectus et netus et malesuada fames. Tincidunt id aliquet risus feugiat in ante metus. Habitant morbi tristique senectus et netus et malesuada fames ac. Vel eros donec ac odio tempor orci. Egestas dui id ornare arcu odio ut sem nulla. Vulputate enim nulla aliquet porttitor lacus luctus accumsan. Aliquet enim tortor at auctor urna. Tristique senectus et netus et malesuada fames ac turpis.\",\n    \"customAttributes\": {\n        \"localCompany\": true\n    },\n    \"bookedAt\": \"2023-10-26T17:47:21Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitors/v2","description":"<p>Create a new Exhibitor record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary idenfifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>singleSignOnIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isPreviousExhibitor</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>isMember</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>badgeAllocationCount</td>\n<td>Number</td>\n<td></td>\n<td>• Must be a positive integer.</td>\n</tr>\n<tr>\n<td>ticketAllocationCount</td>\n<td>Number</td>\n<td></td>\n<td>• Must be a positive integer.</td>\n</tr>\n<tr>\n<td>staffAllocationCount</td>\n<td>Number</td>\n<td></td>\n<td>• Must be a positive integer.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>producerSystem</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td></td>\n<td>• Valid values:  <br />Confirmed, Balance Due, Cancelled, Pending.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.</td>\n</tr>\n<tr>\n<td>logoUrl</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.  <br />• Must utilize the https protocol.</td>\n</tr>\n<tr>\n<td>sponsorshipLevel</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>bookedAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitors","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"230441a1-70ff-4435-970f-0eb1604d69d1","name":"Create an Exhibitor","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n    \"producerRecordIdentifier\": \"61cf4692-ba76-4268-8bc3-06441b6c8b87\",\n    \"singleSignOnIdentifier\": \"452003\",\n    \"producerSystem\": \"MapYourShow\",\n    \"name\": \"Tagopia\",\n    \"isPreviousExhibitor\": false,\n    \"isFirstTime\": null,\n    \"isMember\": true,\n    \"badgeAllocationCount\": 67,\n    \"ticketAllocationCount\": 10,\n    \"staffAllocationCount\": 10,\n    \"phoneNumber\": \"564-240-4568\",\n    \"email\": \"ryashnov0@gnu.org\",\n    \"status\": \"Confirmed\",\n    \"website\": \"http://scribd.com/in/porttitor/pede.xml?nulla=ligula&nisl=nec&nunc=sem&nisl=duis&duis=aliquam&bibendum=convallis&felis=nunc&sed=proin&interdum=at&venenatis=turpis&turpis=a&enim=pede&blandit=posuere\",\n    \"logoUrl\": \"https://dummyimage.com/144x100.png/ff4444/ffffff\",\n    \"sponsorshipLevel\": \"Gold\",\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Volutpat blandit aliquam etiam erat velit scelerisque in. A cras semper auctor neque vitae. Suspendisse faucibus interdum posuere lorem ipsum dolor sit amet consectetur. Commodo viverra maecenas accumsan lacus vel. Viverra orci sagittis eu volutpat odio facilisis mauris sit. Ut morbi tincidunt augue interdum velit. Mattis ullamcorper velit sed ullamcorper. Rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis. Habitant morbi tristique senectus et netus et malesuada fames. Tincidunt id aliquet risus feugiat in ante metus. Habitant morbi tristique senectus et netus et malesuada fames ac. Vel eros donec ac odio tempor orci. Egestas dui id ornare arcu odio ut sem nulla. Vulputate enim nulla aliquet porttitor lacus luctus accumsan. Aliquet enim tortor at auctor urna. Tristique senectus et netus et malesuada fames ac turpis.\",\n    \"customAttributes\": {\n        \"localCompany\": true\n    },\n    \"bookedAt\": \"2023-10-26T17:47:21Z\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/exhibitors/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"735"},{"key":"ETag","value":"W/\"2df-Xwyov5plrnCXluwZ3Bn4yqrAWAY\""},{"key":"Date","value":"Thu, 12 Oct 2023 13:38:45 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"57733a5e-5bd7-4aa0-b509-67bbb62cb1db\",\n    \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n    \"producerRecordIdentifier\": \"61cf4692-ba76-4268-8bc3-06441b6c8b87\",\n    \"singleSignOnIdentifier\": \"452003\",\n    \"producerSystem\": \"MapYourShow\",\n    \"name\": \"Tagopia\",\n    \"isPreviousExhibitor\": false,\n    \"isFirstTime\": null,\n    \"isMember\": true,\n    \"badgeAllocationCount\": 67,\n    \"ticketAllocationCount\": 10,\n    \"staffAllocationCount\": 10,\n    \"phoneNumber\": \"564-240-4568\",\n    \"email\": \"ryashnov0@gnu.org\",\n    \"status\": \"Confirmed\",\n    \"website\": \"http://scribd.com/in/porttitor/pede.xml?nulla=ligula&nisl=nec&nunc=sem&nisl=duis&duis=aliquam&bibendum=convallis&felis=nunc&sed=proin&interdum=at&venenatis=turpis&turpis=a&enim=pede&blandit=posuere\",\n    \"logoUrl\": \"https://dummyimage.com/144x100.png/ff4444/ffffff\",\n    \"sponsorshipLevel\": \"Gold\",\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Volutpat blandit aliquam etiam erat velit scelerisque in. A cras semper auctor neque vitae. Suspendisse faucibus interdum posuere lorem ipsum dolor sit amet consectetur. Commodo viverra maecenas accumsan lacus vel. Viverra orci sagittis eu volutpat odio facilisis mauris sit. Ut morbi tincidunt augue interdum velit. Mattis ullamcorper velit sed ullamcorper. Rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis. Habitant morbi tristique senectus et netus et malesuada fames. Tincidunt id aliquet risus feugiat in ante metus. Habitant morbi tristique senectus et netus et malesuada fames ac. Vel eros donec ac odio tempor orci. Egestas dui id ornare arcu odio ut sem nulla. Vulputate enim nulla aliquet porttitor lacus luctus accumsan. Aliquet enim tortor at auctor urna. Tristique senectus et netus et malesuada fames ac turpis.\",\n    \"customAttributes\": {\n        \"localCompany\": true\n    },\n    \"bookedAt\": \"2023-10-26T17:47:21.000Z\",\n    \"updatedAt\": \"2023-10-12T13:38:45.405Z\",\n    \"createdAt\": \"2023-10-12T13:38:45.405Z\"\n}"}],"_postman_id":"582bac62-6a70-4fb9-af50-98a196c5d847"},{"name":"Read an Exhibitor","id":"b365b020-36a2-4062-a054-30f317b0bd62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitors/v2/:exhibitorId","description":"<p>Retrieve the single Exhibitor record of the supplied Exhibitor ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>exhibitorcategories</td>\n<td>booth-exhibitor</td>\n</tr>\n<tr>\n<td>exhibitoraddresses</td>\n<td>exhibitorsubcategories</td>\n<td>exhibitor-exhibitorsubcategory</td>\n</tr>\n<tr>\n<td>exhibitorcontacts</td>\n<td>exhibitorproducts</td>\n<td>exhibitor-socialmediatype</td>\n</tr>\n<tr>\n<td>exhibitorcontacttypes</td>\n<td>exhibitor-exhibitoraddress</td>\n<td>exhibitor-exhibitorcategory</td>\n</tr>\n<tr>\n<td>booths</td>\n<td>socialmediatypes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitors","v2",":exhibitorId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"299f5b63-c955-4cb1-b4e4-655d62701b5c","description":{"content":"<p>Example: 57733a5e-5bd7-4aa0-b509-67bbb62cb1db</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor ID here> ","key":"exhibitorId"}]}},"response":[{"id":"32446123-2387-4aeb-a363-9c7e38cb050c","name":"Read an Exhibitor","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitors/v2/:exhibitorId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitors","v2",":exhibitorId"],"variable":[{"key":"exhibitorId","value":"57733a5e-5bd7-4aa0-b509-67bbb62cb1db","description":"Example: 57733a5e-5bd7-4aa0-b509-67bbb62cb1db"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"853"},{"key":"ETag","value":"W/\"355-Db5lVJz/DbQSVj6W0eUjQpXSof4\""},{"key":"Date","value":"Thu, 12 Oct 2023 13:43:54 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"57733a5e-5bd7-4aa0-b509-67bbb62cb1db\",\n    \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n    \"producerRecordIdentifier\": \"61cf4692-ba76-4268-8bc3-06441b6c8b87\",\n    \"singleSignOnIdentifier\": \"452003\",\n    \"producerSystem\": \"MapYourShow\",\n    \"name\": \"Tagopia\",\n    \"isPreviousExhibitor\": false,\n    \"isFirstTime\": null,\n    \"isMember\": true,\n    \"badgeAllocationCount\": 67,\n    \"ticketAllocationCount\": 10,\n    \"staffAllocationCount\": 10,\n    \"phoneNumber\": \"564-240-4568\",\n    \"email\": \"ryashnov0@gnu.org\",\n    \"status\": \"Confirmed\",\n    \"website\": \"http://scribd.com/in/porttitor/pede.xml?nulla=ligula&nisl=nec&nunc=sem&nisl=duis&duis=aliquam&bibendum=convallis&felis=nunc&sed=proin&interdum=at&venenatis=turpis&turpis=a&enim=pede&blandit=posuere\",\n    \"logoUrl\": \"https://dummyimage.com/144x100.png/ff4444/ffffff\",\n    \"sponsorshipLevel\": \"Gold\",\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Volutpat blandit aliquam etiam erat velit scelerisque in. A cras semper auctor neque vitae. Suspendisse faucibus interdum posuere lorem ipsum dolor sit amet consectetur. Commodo viverra maecenas accumsan lacus vel. Viverra orci sagittis eu volutpat odio facilisis mauris sit. Ut morbi tincidunt augue interdum velit. Mattis ullamcorper velit sed ullamcorper. Rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis. Habitant morbi tristique senectus et netus et malesuada fames. Tincidunt id aliquet risus feugiat in ante metus. Habitant morbi tristique senectus et netus et malesuada fames ac. Vel eros donec ac odio tempor orci. Egestas dui id ornare arcu odio ut sem nulla. Vulputate enim nulla aliquet porttitor lacus luctus accumsan. Aliquet enim tortor at auctor urna. Tristique senectus et netus et malesuada fames ac turpis.\",\n    \"customAttributes\": {\n        \"localCompany\": true\n    },\n    \"bookedAt\": \"2023-10-26T17:47:21.000Z\",\n    \"updatedAt\": \"2023-10-12T13:38:45.405Z\",\n    \"createdAt\": \"2023-10-12T13:38:45.405Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/7b5ca172-7df7-4b3f-b030-8052c5f983df\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"f296f7f1-e7f2-4656-a984-1f12bb84c6c5","name":"Read an Exhibitor with Includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitors/v2/:exhibitorId?include=exhibitorcontacts,exhibitoraddresses,exhibitorcategories,exhibitorsubcategories,socialmediatypes,booths","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitors","v2",":exhibitorId"],"query":[{"key":"include","value":"exhibitorcontacts,exhibitoraddresses,exhibitorcategories,exhibitorsubcategories,socialmediatypes,booths"}],"variable":[{"key":"exhibitorId","value":"6f696bf0-18a2-463a-b57b-48e172739bf2","description":"Example: 57733a5e-5bd7-4aa0-b509-67bbb62cb1db"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"9780"},{"key":"ETag","value":"W/\"2634-JO5JFPOZFESNPKWrxA5beK36qnA\""},{"key":"Date","value":"Mon, 17 Jun 2024 17:41:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n    \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n    \"producerRecordIdentifier\": \"hnM5c\",\n    \"singleSignOnIdentifier\": \"G3huEKi\",\n    \"name\": \"Hayes, Hansen and Hills\",\n    \"isPreviousExhibitor\": false,\n    \"isFirstTime\": false,\n    \"isMember\": false,\n    \"badgeAllocationCount\": 4,\n    \"ticketAllocationCount\": 2,\n    \"staffAllocationCount\": 2,\n    \"phoneNumber\": \"876.671.5495 x29287\",\n    \"email\": \"Tiara93@hotmail.com\",\n    \"producerSystem\": \"z8IDhAr\",\n    \"status\": \"Pending\",\n    \"website\": \"https://last-cherry.biz/\",\n    \"logoUrl\": \"https://loremflickr.com/640/480?lock=6436109605142528\",\n    \"sponsorshipLevel\": \"cW8ZGeL\",\n    \"description\": \"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016\",\n    \"customAttributes\": \"{\\\"location\\\":\\\"Curacao\\\"}\",\n    \"bookedAt\": \"2023-10-26T12:25:23.727Z\",\n    \"createdAt\": \"2023-10-26T12:25:23.727Z\",\n    \"updatedAt\": \"2023-10-26T12:25:23.727Z\",\n    \"exhibitorcontacts\": {\n        \"collection\": [\n            {\n                \"id\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n                \"firstName\": \"Kaleb\",\n                \"lastName\": \"Nasi\",\n                \"email\": \"knasi0@xrea.com\",\n                \"isPrimary\": true,\n                \"emailTwo\": \"jtorfinc@illinois.edu\",\n                \"middleName\": null,\n                \"title\": \"Senior Quality Engineer\",\n                \"prefix\": \"Dr.\",\n                \"suffix\": \"III\",\n                \"faxNumber\": \"644-535-5800\",\n                \"mobileNumber\": \"737-432-0648\",\n                \"otherPhoneNumber\": \"327-599-7760\",\n                \"phoneNumber\": null,\n                \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n                \"customAttributes\": {\n                    \"location\": \"USA\"\n                },\n                \"createdAt\": \"2024-06-13T17:52:44.377Z\",\n                \"updatedAt\": \"2024-06-13T17:52:44.377Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitoraddresses\": {\n        \"collection\": [\n            {\n                \"id\": \"5218ec6e-a81c-4e29-8ad4-486be0647fbc\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n                \"country\": \"US\",\n                \"lineOne\": \"Reanna Causeway\",\n                \"cityLocality\": \"New Hiltonberg\",\n                \"isPrimary\": true,\n                \"type\": \"Business\",\n                \"lineTwo\": \"78060 Mohammed Vista\",\n                \"stateProvince\": \"Tillman Group\",\n                \"countySubregion\": \"Wright\",\n                \"postalCode\": \"142806\",\n                \"customAttributes\": {\n                    \"custom1\": true,\n                    \"addressCustom2\": \"gen_23456\",\n                    \"registrationCustom3\": \"education_credit\"\n                },\n                \"createdAt\": \"2024-06-13T17:58:44.055Z\",\n                \"updatedAt\": \"2024-06-13T17:58:44.055Z\",\n                \"exhibitor-exhibitoraddress\": [\n                    {\n                        \"id\": \"98026e0d-5252-42ba-b03c-1548c3a8a7a5\",\n                        \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                        \"exhibitoraddressId\": \"5218ec6e-a81c-4e29-8ad4-486be0647fbc\",\n                        \"createdAt\": \"2024-06-13T18:03:31.629Z\",\n                        \"updatedAt\": \"2024-06-13T18:03:31.629Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorcategories\": {\n        \"collection\": [\n            {\n                \"id\": \"2d35723d-e4ee-4157-a079-68ebba804412\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"363fd5a8-6c11-48c8-96cc-428df6c9288d\",\n                \"name\": \"Building Materials\",\n                \"description\": \"Building materials are the raw materials or products used in construction and building projects. They are the essential components that go into the construction of structures, from homes to large-scale commercial buildings. Building materials can be broadly categorized into various types, each with specific characteristics and uses.\",\n                \"createdAt\": \"2024-06-13T18:09:49.525Z\",\n                \"updatedAt\": \"2024-06-13T18:09:49.525Z\",\n                \"exhibitor-exhibitorcategory\": [\n                    {\n                        \"id\": \"398dd582-eaf1-4f69-9775-d4639eee5a39\",\n                        \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                        \"exhibitorcategoryId\": \"2d35723d-e4ee-4157-a079-68ebba804412\",\n                        \"createdAt\": \"2024-06-13T18:11:07.001Z\",\n                        \"updatedAt\": \"2024-06-13T18:11:07.001Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorsubcategories\": {\n        \"collection\": [\n            {\n                \"id\": \"a30b35c9-b552-4f7f-b18a-b38df96264bc\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"exhibitorcategoryId\": \"2d35723d-e4ee-4157-a079-68ebba804412\",\n                \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n                \"name\": \"Concrete and Cement Products\",\n                \"description\": \"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\",\n                \"createdAt\": \"2024-06-13T18:22:06.504Z\",\n                \"updatedAt\": \"2024-06-13T18:22:06.504Z\",\n                \"exhibitor-exhibitorsubcategory\": [\n                    {\n                        \"id\": \"306cd55a-3900-4c34-92e7-f9e3a37b07ee\",\n                        \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                        \"exhibitorsubcategoryId\": \"a30b35c9-b552-4f7f-b18a-b38df96264bc\",\n                        \"createdAt\": \"2024-06-13T18:24:17.306Z\",\n                        \"updatedAt\": \"2024-06-13T18:24:17.306Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"socialmediatypes\": {\n        \"collection\": [\n            {\n                \"id\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n                \"name\": \"Facebook uwvdivobkfvdmwpaapcomcwosxmropxtfhqnglmcuonmxxpfbt\",\n                \"domain\": \"gray-legging.name\",\n                \"createdAt\": \"2023-09-08T14:04:26.458Z\",\n                \"updatedAt\": \"2023-09-08T14:04:26.458Z\",\n                \"exhibitor-socialmediatype\": [\n                    {\n                        \"id\": \"14056f4c-5621-4174-a2a4-4ef3a8f6857f\",\n                        \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                        \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n                        \"handle\": \"@jason254\",\n                        \"createdAt\": \"2024-06-13T18:32:17.332Z\",\n                        \"updatedAt\": \"2024-06-13T18:32:17.332Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"booths\": {\n        \"collection\": [\n            {\n                \"width\": 0.73,\n                \"depth\": 0.22,\n                \"area\": 0.71,\n                \"revenue\": 164,\n                \"id\": \"ed91f973-41c0-4647-b0b0-be62d61a3dd7\",\n                \"eventId\": \"e7d0a77a-3ef2-4cf2-9e9a-c59650e92644\",\n                \"boothtypeId\": \"6877aeb4-5401-4c33-93bd-d31d2f01e4ce\",\n                \"producerRecordIdentifier\": \"9MMBO\",\n                \"name\": \"Voluptate qui recusandae dolorem cupiditate qui sint.\",\n                \"number\": \"5343597463339008\",\n                \"description\": null,\n                \"assignedHall\": \"Southeast\",\n                \"assignedPavillion\": \"Northeast\",\n                \"displayName\": \"consequuntur\",\n                \"unitOfMeasurement\": \"Meter\",\n                \"currencyCode\": \"CZK\",\n                \"customAttributes\": \"{\\\"booth_setting\\\":\\\"Complete\\\",\\\"booth_status\\\":\\\"Approved\\\"}\",\n                \"targetMoveInAt\": \"2023-11-14T20:23:29.389Z\",\n                \"targetMoveOutAt\": \"2023-11-18T20:23:29.372Z\",\n                \"createdAt\": \"2023-11-14T20:23:29.389Z\",\n                \"updatedAt\": \"2023-11-14T20:23:29.389Z\",\n                \"booth-exhibitor\": [\n                    {\n                        \"id\": \"06c1bc70-2f6f-4844-aefe-c2d58a663069\",\n                        \"boothId\": \"ed91f973-41c0-4647-b0b0-be62d61a3dd7\",\n                        \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                        \"status\": \"Balance Due\",\n                        \"relationship\": \"Primary\",\n                        \"createdAt\": \"2023-11-14T20:23:29.403Z\",\n                        \"updatedAt\": \"2023-11-14T20:23:29.403Z\"\n                    }\n                ]\n            },\n            {\n                \"width\": 0.23,\n                \"depth\": 0.83,\n                \"area\": 0.1,\n                \"revenue\": 123,\n                \"id\": \"02d5cc0f-0849-46c1-b190-f561fadb9cb4\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"boothtypeId\": \"8080f031-ff26-4d0a-9608-4aeb81547b3a\",\n                \"producerRecordIdentifier\": \"T0vBp\",\n                \"name\": \"Soluta commodi nulla esse nostrum sunt eveniet aliquid quod autem.\",\n                \"number\": \"1436502749872128\",\n                \"description\": \"Innovative 5th generation open system grow back-end deliverables\",\n                \"assignedHall\": \"North\",\n                \"assignedPavillion\": \"Northwest\",\n                \"displayName\": \"dolore\",\n                \"unitOfMeasurement\": \"Meter\",\n                \"currencyCode\": \"XDR\",\n                \"customAttributes\": \"{\\\"booth_setting\\\":\\\"Complete\\\",\\\"booth_status\\\":\\\"Approved\\\"}\",\n                \"targetMoveInAt\": \"2023-11-14T20:23:29.263Z\",\n                \"targetMoveOutAt\": \"2023-11-17T20:23:29.246Z\",\n                \"createdAt\": \"2023-11-14T20:23:29.263Z\",\n                \"updatedAt\": \"2023-11-14T20:23:29.263Z\",\n                \"booth-exhibitor\": [\n                    {\n                        \"id\": \"c7952c5b-d785-4b87-8627-9f770d11785e\",\n                        \"boothId\": \"02d5cc0f-0849-46c1-b190-f561fadb9cb4\",\n                        \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                        \"status\": \"Pending\",\n                        \"relationship\": \"Primary\",\n                        \"createdAt\": \"2023-12-14T16:25:39.992Z\",\n                        \"updatedAt\": \"2023-12-14T16:25:39.992Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 2,\n            \"numberOfRecordsOnCurrentPage\": 2,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/1e4b7523-ba8b-47bc-99d0-23e5b858a27c\"\n            }\n        },\n        \"children\": {\n            \"exhibitorproducts\": {\n                \"href\": \"/exhibitorproducts/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitorcontacts\": {\n                \"href\": \"/exhibitorcontacts/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitor-socialmediatype\": {\n                \"href\": \"/exhibitor-socialmediatype/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitor-exhibitorcategory\": {\n                \"href\": \"/exhibitor-exhibitorcategory/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitor-exhibitorsubcategory\": {\n                \"href\": \"/exhibitor-exhibitorsubcategory/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"booth-exhibitor\": {\n                \"href\": \"/booth-exhibitor/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitor-exhibitoraddress\": {\n                \"href\": \"/exhibitor-exhibitoraddress/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            }\n        },\n        \"siblings\": {\n            \"socialmediatypes\": {\n                \"href\": \"/socialmediatypes/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitorcategories\": {\n                \"href\": \"/exhibitorcategories/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitorsubcategories\": {\n                \"href\": \"/exhibitorsubcategories/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"booths\": {\n                \"href\": \"/booths/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitoraddresses\": {\n                \"href\": \"/exhibitoraddresses/v2?filter[exhibitorId][eq]=6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            }\n        }\n    }\n}"}],"_postman_id":"b365b020-36a2-4062-a054-30f317b0bd62"},{"name":"Update an Exhibitor","id":"c155df2f-bfe3-4ac3-8b34-43dc7d0ac67a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerSystem\": \"MapYourShow\",\n    \"name\": \"Divavu\",\n    \"isPreviousExhibitor\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitors/v2/:exhibitorId","description":"<p>Modify one or more fields on the single Exhibitor record of the supplied Exhibitor ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>singleSignOnIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isPreviousExhibitor</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>isMember</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>badgeAllocationCount</td>\n<td>Number</td>\n<td></td>\n<td>• Must be a positive integer.</td>\n</tr>\n<tr>\n<td>ticketAllocationCount</td>\n<td>Number</td>\n<td></td>\n<td>• Must be a positive integer.</td>\n</tr>\n<tr>\n<td>staffAllocationCount</td>\n<td>Number</td>\n<td></td>\n<td>• Must be a positive integer.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>producerSystem</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td></td>\n<td>• Valid values:  <br />Confirmed, Balance Due, Cancelled, Pending.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.</td>\n</tr>\n<tr>\n<td>logoUrl</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.  <br />• Must utilize the https protocol.</td>\n</tr>\n<tr>\n<td>sponsorshipLevel</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>bookedAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitors","v2",":exhibitorId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"d0fa18a0-1e5f-4abd-89ec-771a26abd047","description":{"content":"<p>Example: 303c3624-d31c-4474-a002-dde510187ed3</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor ID here>","key":"exhibitorId"}]}},"response":[{"id":"4e752507-9f82-491f-acd8-58a4c1052603","name":"Update an Exhibitor","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerSystem\": \"MapYourShow\",\n    \"name\": \"Divavu\",\n    \"isPreviousExhibitor\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/exhibitors/v2/:exhibitorId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitors","v2",":exhibitorId"],"variable":[{"key":"exhibitorId","value":"303c3624-d31c-4474-a002-dde510187ed3","description":"Example: 303c3624-d31c-4474-a002-dde510187ed3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"748"},{"key":"ETag","value":"W/\"2ec-HpdamGjo4CAY+iMZY1fUtwgugKQ\""},{"key":"Date","value":"Thu, 12 Oct 2023 13:45:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"303c3624-d31c-4474-a002-dde510187ed3\",\n    \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n    \"producerRecordIdentifier\": \"e40b064b-f933-4f73-8ad0-597f100abc99\",\n    \"singleSignOnIdentifier\": \"385566\",\n    \"name\": \"Divavu\",\n    \"isPreviousExhibitor\": true,\n    \"isFirstTime\": null,\n    \"isMember\": true,\n    \"badgeAllocationCount\": 31,\n    \"ticketAllocationCount\": 51,\n    \"staffAllocationCount\": 51,\n    \"phoneNumber\": \"680-485-5817\",\n    \"email\": \"aleeburn1@vistaprint.com\",\n    \"producerSystem\": \"MapYourShow\",\n    \"status\": \"Confirmed\",\n    \"website\": \"http://hp.com/nulla/tempus.js?sit=vestibulum&amet=vestibulum&turpis=ante&elementum=ipsum&ligula=primis&vehicula=in&consequat=faucibus&morbi=orci&a=luctus&ipsum=et&integer=ultrices&a=posuere&nibh=cubilia&in=curae&quis=nulla&justo=dapibus&maecenas=dolor&rhoncus=vel&aliquam=est&lacus=donec&morbi=odio&quis=justo&tortor=sollicitudin&id=ut&nulla=suscipit&ultrices=a&aliquet=feugiat&maecenas=et&leo=eros&odio=vestibulum&condimentum=ac&id=est&luctus=lacinia&nec=nisi&molestie=venenatis&sed=tristique&justo=fusce&pellentesque=congue&viverra=diam&pede=id&ac=ornare&diam=imperdiet&cras=sapien&pellentesque=urna&volutpat=pretium&dui=nisl&maecenas=ut&tristique=volutpat&est=sapien&et=arcu&tempus=sed&semper=augue&est=aliquam&quam=erat&pharetra=volutpat&magna=in&ac=congue&consequat=etiam&metus=justo&sapien=etiam&ut=pretium&nunc=iaculis&vestibulum=justo&ante=in&ipsum=hac&primis=habitasse&in=platea&faucibus=dictumst&orci=etiam&luctus=faucibus&et=cursus&ultrices=urna&posuere=ut&cubilia=tellus&curae=nulla&mauris=ut&viverra=erat&diam=id&vitae=mauris&quam=vulputate&suspendisse=elementum&potenti=nullam&nullam=varius&porttitor=nulla&lacus=facilisi&at=cras&turpis=non&donec=velit&posuere=nec&metus=nisi&vitae=vulputate&ipsum=nonummy&aliquam=maecenas&non=tincidunt&mauris=lacus&morbi=at&non=velit&lectus=vivamus\",\n    \"logoUrl\": null,\n    \"sponsorshipLevel\": \"Silver\",\n    \"description\": null,\n    \"customAttributes\": null,\n    \"bookedAt\": \"2023-10-25T22:15:47.000Z\",\n    \"createdAt\": \"2023-10-11T20:20:21.192Z\",\n    \"updatedAt\": \"2023-10-12T13:45:36.844Z\"\n}"}],"_postman_id":"c155df2f-bfe3-4ac3-8b34-43dc7d0ac67a"},{"name":"Destroy an Exhibitor","id":"d6383602-6d7d-4544-85f1-d5f721a3fc33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitors/v2/:exhibitorId","description":"<p>Permanently delete the Exhibitor record of the supplied Exhibitor ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitors","v2",":exhibitorId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"e7a7724d-ea62-41ab-9341-81617eba199d","description":{"content":"<p>Example: 303c3624-d31c-4474-a002-dde510187ed3</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor ID here>","key":"exhibitorId"}]}},"response":[{"id":"6a6c6cb4-6fb7-4312-9a79-0fc9687eed46","name":"Destroy an Exhibitor","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/exhibitors/v2/:exhibitorId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitors","v2",":exhibitorId"],"variable":[{"key":"exhibitorId","value":"303c3624-d31c-4474-a002-dde510187ed3","description":"Example: 303c3624-d31c-4474-a002-dde510187ed3"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"748"},{"key":"ETag","value":"W/\"2ec-HpdamGjo4CAY+iMZY1fUtwgugKQ\""},{"key":"Date","value":"Thu, 12 Oct 2023 13:47:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"303c3624-d31c-4474-a002-dde510187ed3\",\n    \"eventId\": \"7b5ca172-7df7-4b3f-b030-8052c5f983df\",\n    \"producerRecordIdentifier\": \"e40b064b-f933-4f73-8ad0-597f100abc99\",\n    \"singleSignOnIdentifier\": \"385566\",\n    \"name\": \"Divavu\",\n    \"isPreviousExhibitor\": true,\n    \"isFirstTime\": null,\n    \"isMember\": true,\n    \"badgeAllocationCount\": 31,\n    \"ticketAllocationCount\": 51,\n    \"staffAllocationCount\": 51,\n    \"phoneNumber\": \"680-485-5817\",\n    \"email\": \"aleeburn1@vistaprint.com\",\n    \"producerSystem\": \"MapYourShow\",\n    \"status\": \"Confirmed\",\n    \"website\": \"http://hp.com/nulla/tempus.js?sit=vestibulum&amet=vestibulum&turpis=ante&elementum=ipsum&ligula=primis&vehicula=in&consequat=faucibus&morbi=orci&a=luctus&ipsum=et&integer=ultrices&a=posuere&nibh=cubilia&in=curae&quis=nulla&justo=dapibus&maecenas=dolor&rhoncus=vel&aliquam=est&lacus=donec&morbi=odio&quis=justo&tortor=sollicitudin&id=ut&nulla=suscipit&ultrices=a&aliquet=feugiat&maecenas=et&leo=eros&odio=vestibulum&condimentum=ac&id=est&luctus=lacinia&nec=nisi&molestie=venenatis&sed=tristique&justo=fusce&pellentesque=congue&viverra=diam&pede=id&ac=ornare&diam=imperdiet&cras=sapien&pellentesque=urna&volutpat=pretium&dui=nisl&maecenas=ut&tristique=volutpat&est=sapien&et=arcu&tempus=sed&semper=augue&est=aliquam&quam=erat&pharetra=volutpat&magna=in&ac=congue&consequat=etiam&metus=justo&sapien=etiam&ut=pretium&nunc=iaculis&vestibulum=justo&ante=in&ipsum=hac&primis=habitasse&in=platea&faucibus=dictumst&orci=etiam&luctus=faucibus&et=cursus&ultrices=urna&posuere=ut&cubilia=tellus&curae=nulla&mauris=ut&viverra=erat&diam=id&vitae=mauris&quam=vulputate&suspendisse=elementum&potenti=nullam&nullam=varius&porttitor=nulla&lacus=facilisi&at=cras&turpis=non&donec=velit&posuere=nec&metus=nisi&vitae=vulputate&ipsum=nonummy&aliquam=maecenas&non=tincidunt&mauris=lacus&morbi=at&non=velit&lectus=vivamus\",\n    \"logoUrl\": null,\n    \"sponsorshipLevel\": \"Silver\",\n    \"description\": null,\n    \"customAttributes\": null,\n    \"bookedAt\": \"2023-10-25T22:15:47.000Z\",\n    \"createdAt\": \"2023-10-11T20:20:21.192Z\",\n    \"updatedAt\": \"2023-10-12T13:45:36.844Z\"\n}"}],"_postman_id":"d6383602-6d7d-4544-85f1-d5f721a3fc33"}],"id":"763403de-fbc6-469a-8082-38c84b1c5b9c","description":"<p>Exhibitors are organizations or companies that participate in events. Exhibitors setup booths within a designated exhibit space, where they promote and display their products and/or services to a targeted audience.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>singleSignOnIdentifier</td>\n<td>String</td>\n<td>The single sign on id of the Exhibitor.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name of the exhibiting company.</td>\n</tr>\n<tr>\n<td>isPreviousExhibitor</td>\n<td>Boolean</td>\n<td>Denotes if the exhibiting company has exhibited at this event previously.</td>\n</tr>\n<tr>\n<td>isFirstTime</td>\n<td>Boolean</td>\n<td>Denotes if this is the first time the Exhibitor has attended this Event.</td>\n</tr>\n<tr>\n<td>isMember</td>\n<td>Boolean</td>\n<td>Denotes if the Exhibitor is a member of the Events organization.</td>\n</tr>\n<tr>\n<td>badgeAllocationCount</td>\n<td>Number</td>\n<td>The number or count of badges allocated to the Exhibitor.</td>\n</tr>\n<tr>\n<td>ticketAllocationCount</td>\n<td>Number</td>\n<td>The number or count of tickets allocated to the Exhibitor.</td>\n</tr>\n<tr>\n<td>staffAllocationCount</td>\n<td>Number</td>\n<td>The number or count of staff allocated to the Exhibitor.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td>The phone number for the exhibiting company.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>The email address for the exhibiting company.</td>\n</tr>\n<tr>\n<td>producerSystem</td>\n<td>String</td>\n<td>The name of the producer system.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>The status of the Exhibitor record.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td>The website URL for the exhibiting company.</td>\n</tr>\n<tr>\n<td>logoUrl</td>\n<td>String</td>\n<td>The URL for the exhibiting companies logo.</td>\n</tr>\n<tr>\n<td>sponsorshipLevel</td>\n<td>String</td>\n<td>The level of sponsorship the exhibitor has purchased.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A description of the Exhibitor.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>bookedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date time the Exhibitor was booked at/Sold.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"763403de-fbc6-469a-8082-38c84b1c5b9c","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitoraddresses (v2)","item":[{"name":"List Exhibitoraddresses","id":"61627c50-ac1d-4d81-a727-20c3e8d38d0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2","description":"<p>Retrieve a collection of Exhibitoraddress records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>line Two</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>country</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>type</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lineOne</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>country</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>type</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddresses","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"3928a1b3-58d8-4432-a27b-2ca1dfc6a031","name":"List Exhibitoraddresses","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"6161"},{"key":"ETag","value":"W/\"1811-TVeETtYLc6v9raSz7fKj912TV4U\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:16:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"07799ce6-4355-4f94-8e39-82cc232e4f22\",\n            \"eventId\": \"5d6597a3-2dd2-4ce2-b956-fd1ce230718b\",\n            \"producerRecordIdentifier\": \"c82ee6a4-553e-4ca6-9d68-cfe3656d2b59\",\n            \"country\": \"BN\",\n            \"lineOne\": \"3363 Olson Parkways\",\n            \"cityLocality\": \"Wardberg\",\n            \"isPrimary\": true,\n            \"type\": \"Home\",\n            \"lineTwo\": \"Apt. 214\",\n            \"stateProvince\": \"Wyoming\",\n            \"countySubregion\": \"Avon\",\n            \"postalCode\": \"86695-9349\",\n            \"customAttributes\": {},\n            \"createdAt\": \"2023-10-23T16:32:49.603Z\",\n            \"updatedAt\": \"2023-10-23T16:32:49.603Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/5d6597a3-2dd2-4ce2-b956-fd1ce230718b\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"9a88046b-0a21-4479-8423-61660467c144\",\n            \"eventId\": \"c9fcea42-3bd8-4969-aa8c-d02b723e74a1\",\n            \"producerRecordIdentifier\": \"7b9084b1-8541-42ca-b2ba-5887fd81e843\",\n            \"country\": \"GG\",\n            \"lineOne\": \"61547 Orlo Hill\",\n            \"cityLocality\": \"West Eriberto\",\n            \"isPrimary\": true,\n            \"type\": \"Work\",\n            \"lineTwo\": \"Apt. 533\",\n            \"stateProvince\": \"Rhode Island\",\n            \"countySubregion\": \"Borders\",\n            \"postalCode\": \"31687-2486\",\n            \"customAttributes\": {},\n            \"createdAt\": \"2023-10-23T16:32:49.620Z\",\n            \"updatedAt\": \"2023-10-23T16:32:49.620Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/c9fcea42-3bd8-4969-aa8c-d02b723e74a1\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitoraddresses/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"61627c50-ac1d-4d81-a727-20c3e8d38d0a"},{"name":"Create an Exhibitoraddress","id":"1c11bad5-c07c-440e-b4d8-620cfc1f46e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"d466e3c4-b3c0-4b4a-9f5b-72394c4878cf\",\n    \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n    \"country\": \"US\",\n    \"type\": \"Business\",\n    \"isPrimary\": true,\n    \"lineOne\": \"Reanna Causeway\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"customAttributes\": {\n        \"custom1\": true,\n        \"addressCustom2\": \"gen_23456\",\n        \"registrationCustom3\": \"education_credit\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2","description":"<p>Create a new Exhibitoraddress record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 2 characters and a maximum of 14 characters.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\">ISO 3166-1 Alpha-2 Code</a>.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.  <br />• Default value: true</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddresses","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"de3588ee-f22c-42bf-9621-6bb3d3e1bf69","name":"Create an Exhibitoraddress","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"d466e3c4-b3c0-4b4a-9f5b-72394c4878cf\",\n    \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n    \"country\": \"US\",\n    \"type\": \"Business\",\n    \"isPrimary\": true,\n    \"lineOne\": \"Reanna Causeway\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"customAttributes\": {\n        \"custom1\": true,\n        \"addressCustom2\": \"gen_23456\",\n        \"registrationCustom3\": \"education_credit\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"568"},{"key":"ETag","value":"W/\"238-HSwFp1SMIJXMzTiWIpqRFgAYR8E\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:27:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5a343961-61d7-4186-857c-093e12023105\",\n    \"eventId\": \"d466e3c4-b3c0-4b4a-9f5b-72394c4878cf\",\n    \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n    \"country\": \"US\",\n    \"type\": \"Business\",\n    \"isPrimary\": true,\n    \"lineOne\": \"Reanna Causeway\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"customAttributes\": {\n        \"custom1\": true,\n        \"addressCustom2\": \"gen_23456\",\n        \"registrationCustom3\": \"education_credit\"\n    },\n    \"updatedAt\": \"2023-10-23T17:27:29.229Z\",\n    \"createdAt\": \"2023-10-23T17:27:29.229Z\"\n}"}],"_postman_id":"1c11bad5-c07c-440e-b4d8-620cfc1f46e8"},{"name":"Read an Exhibitoraddress","id":"eb3000f8-c88c-48ee-9a25-da90e57d552b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2/:exhibitoraddressId","description":"<p>Retrieve the single Exhibitoraddress record of the supplied Exhibitoraddress ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>exhibitorcontacts</td>\n<td>exhibitoraddress-exhibitorcontact</td>\n</tr>\n<tr>\n<td>exhibitors</td>\n<td>exhibitor-exhibitoraddress</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddresses","v2",":exhibitoraddressId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"2997ffb1-b0fa-44e9-a095-dc348dbbbd82","description":{"content":"<p>Example: 5a343961-61d7-4186-857c-093e12023105</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitoraddress ID here>","key":"exhibitoraddressId"}]}},"response":[{"id":"08839c2a-102a-43c9-8ed2-e2a4e59a9427","name":"Read an Exhibitoraddress","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitoraddresses/v2/:exhibitoraddressesId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitoraddresses","v2",":exhibitoraddressesId"],"variable":[{"key":"exhibitoraddressesId","value":"5a343961-61d7-4186-857c-093e12023105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"686"},{"key":"ETag","value":"W/\"2ae-03sxEhZpPQ2gEHvkggs+hR4DmVk\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:29:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5a343961-61d7-4186-857c-093e12023105\",\n    \"eventId\": \"d466e3c4-b3c0-4b4a-9f5b-72394c4878cf\",\n    \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n    \"country\": \"US\",\n    \"lineOne\": \"Reanna Causeway\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"isPrimary\": true,\n    \"type\": \"Business\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"customAttributes\": {\n        \"custom1\": true,\n        \"addressCustom2\": \"gen_23456\",\n        \"registrationCustom3\": \"education_credit\"\n    },\n    \"createdAt\": \"2023-10-23T17:27:29.229Z\",\n    \"updatedAt\": \"2023-10-23T17:27:29.229Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/d466e3c4-b3c0-4b4a-9f5b-72394c4878cf\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"2c6c8202-8f8e-4f95-be1d-d7c216ef3d00","name":"Read an Exhibitoraddress with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2/:exhibitoraddressId?include=events, exhibitors,exhibitorcontacts","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitoraddresses","v2",":exhibitoraddressId"],"query":[{"key":"include","value":"events, exhibitors,exhibitorcontacts","type":"text"}],"variable":[{"key":"exhibitoraddressId","value":"5218ec6e-a81c-4e29-8ad4-486be0647fbc","description":"Example: 5a343961-61d7-4186-857c-093e12023105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4578"},{"key":"ETag","value":"W/\"11e2-Y6/dbbYHHwftrT5M9uRUh2Z3Ei8\""},{"key":"Date","value":"Mon, 17 Jun 2024 17:53:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5218ec6e-a81c-4e29-8ad4-486be0647fbc\",\n    \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n    \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n    \"country\": \"US\",\n    \"lineOne\": \"Reanna Causeway\",\n    \"cityLocality\": \"New Hiltonberg\",\n    \"isPrimary\": true,\n    \"type\": \"Business\",\n    \"lineTwo\": \"78060 Mohammed Vista\",\n    \"stateProvince\": \"Tillman Group\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"customAttributes\": {\n        \"custom1\": true,\n        \"addressCustom2\": \"gen_23456\",\n        \"registrationCustom3\": \"education_credit\"\n    },\n    \"createdAt\": \"2024-06-13T17:58:44.055Z\",\n    \"updatedAt\": \"2024-06-13T17:58:44.055Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"shortName\": \"Rustic Beauty Show 2026\",\n                \"fullName\": \"Rustic Recycled Frozen Car Grocery Show 2026\",\n                \"systemName\": \"rusticbeautyshow2026-8b9d\",\n                \"website\": \"https://faraway-geometry.com\",\n                \"description\": null,\n                \"startsAt\": \"2023-09-13T16:50:16.236Z\",\n                \"endsAt\": \"2023-09-16T16:50:16.233Z\",\n                \"timezoneOffsetInMinutes\": -303,\n                \"freemanJobIdentifier\": null,\n                \"isSandbox\": true,\n                \"createdAt\": \"2023-09-13T16:50:16.236Z\",\n                \"updatedAt\": \"2023-09-13T16:50:16.236Z\",\n                \"organizationId\": \"73d23231-1b73-42c3-84db-8a271e7b6e05\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"hnM5c\",\n                \"singleSignOnIdentifier\": \"G3huEKi\",\n                \"name\": \"Hayes, Hansen and Hills\",\n                \"isPreviousExhibitor\": false,\n                \"isFirstTime\": false,\n                \"isMember\": false,\n                \"badgeAllocationCount\": 4,\n                \"ticketAllocationCount\": 2,\n                \"staffAllocationCount\": 2,\n                \"phoneNumber\": \"876.671.5495 x29287\",\n                \"email\": \"Tiara93@hotmail.com\",\n                \"producerSystem\": \"z8IDhAr\",\n                \"status\": \"Pending\",\n                \"website\": \"https://last-cherry.biz/\",\n                \"logoUrl\": \"https://loremflickr.com/640/480?lock=6436109605142528\",\n                \"sponsorshipLevel\": \"cW8ZGeL\",\n                \"description\": \"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Curacao\\\"}\",\n                \"bookedAt\": \"2023-10-26T12:25:23.727Z\",\n                \"createdAt\": \"2023-10-26T12:25:23.727Z\",\n                \"updatedAt\": \"2023-10-26T12:25:23.727Z\",\n                \"exhibitor-exhibitoraddress\": [\n                    {\n                        \"id\": \"98026e0d-5252-42ba-b03c-1548c3a8a7a5\",\n                        \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                        \"exhibitoraddressId\": \"5218ec6e-a81c-4e29-8ad4-486be0647fbc\",\n                        \"createdAt\": \"2024-06-13T18:03:31.629Z\",\n                        \"updatedAt\": \"2024-06-13T18:03:31.629Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorcontacts\": {\n        \"collection\": [\n            {\n                \"id\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n                \"firstName\": \"Kaleb\",\n                \"lastName\": \"Nasi\",\n                \"email\": \"knasi0@xrea.com\",\n                \"isPrimary\": true,\n                \"emailTwo\": \"jtorfinc@illinois.edu\",\n                \"middleName\": null,\n                \"title\": \"Senior Quality Engineer\",\n                \"prefix\": \"Dr.\",\n                \"suffix\": \"III\",\n                \"faxNumber\": \"644-535-5800\",\n                \"mobileNumber\": \"737-432-0648\",\n                \"otherPhoneNumber\": \"327-599-7760\",\n                \"phoneNumber\": null,\n                \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n                \"customAttributes\": {\n                    \"location\": \"USA\"\n                },\n                \"createdAt\": \"2024-06-13T17:52:44.377Z\",\n                \"updatedAt\": \"2024-06-13T17:52:44.377Z\",\n                \"exhibitoraddress-exhibitorcontact\": [\n                    {\n                        \"id\": \"1aa48680-2604-4ac9-88fd-f79151ae252d\",\n                        \"exhibitoraddressId\": \"5218ec6e-a81c-4e29-8ad4-486be0647fbc\",\n                        \"exhibitorcontactId\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n                        \"createdAt\": \"2024-06-13T18:59:07.502Z\",\n                        \"updatedAt\": \"2024-06-13T18:59:07.502Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/1e4b7523-ba8b-47bc-99d0-23e5b858a27c\"\n            }\n        },\n        \"children\": {\n            \"exhibitor-exhibitoraddress\": {\n                \"href\": \"/exhibitor-exhibitoraddress/v2?filter[exhibitoraddressId][eq]=5218ec6e-a81c-4e29-8ad4-486be0647fbc\"\n            },\n            \"exhibitoraddress-exhibitorcontact\": {\n                \"href\": \"/exhibitoraddress-exhibitorcontact/v2?filter[exhibitoraddressId][eq]=5218ec6e-a81c-4e29-8ad4-486be0647fbc\"\n            }\n        },\n        \"siblings\": {\n            \"exhibitors\": {\n                \"href\": \"/exhibitors/v2?filter[exhibitoraddressId][eq]=5218ec6e-a81c-4e29-8ad4-486be0647fbc\"\n            },\n            \"exhibitorcontacts\": {\n                \"href\": \"/exhibitorcontacts/v2?filter[exhibitoraddressId][eq]=5218ec6e-a81c-4e29-8ad4-486be0647fbc\"\n            }\n        }\n    }\n}"}],"_postman_id":"eb3000f8-c88c-48ee-9a25-da90e57d552b"},{"name":"Update an Exhibitoraddress","id":"cf09c08b-3209-4364-841b-af5403eff43a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"country\": \"US\",\n    \"type\": \"Work\",\n    \"lineOne\": \"4700 Keele St\",\n    \"lineTwo\":\"Apt 1099\",\n    \"cityLocality\":\"North York\",\n    \"stateProvince\":\"MN\",\n    \"postalCode\": \"142806\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2/:exhibitoraddressId","description":"<p>Modify one or more fields on the single Exhibitoraddress record of the supplied Exhibitoraddress ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the ID of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 2 chacters and a maximum of 14 characters.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\">ISO 3166-1 Alpha-2 Code</a>.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddresses","v2",":exhibitoraddressId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"792505f4-97f4-4cb3-bc6f-fdbbd08a7040","description":{"content":"<p>Example: 5a343961-61d7-4186-857c-093e12023105</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitoraddress ID here>","key":"exhibitoraddressId"}]}},"response":[{"id":"bc4cc796-1a88-4b46-9b5e-cf2d3fae454e","name":"Update a Exhibitoraddress","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"country\": \"US\",\n    \"type\": \"Work\",\n    \"lineOne\": \"4700 Keele St\",\n    \"lineTwo\":\"Apt 1099\",\n    \"cityLocality\":\"North York\",\n    \"stateProvince\":\"MN\",\n    \"postalCode\": \"142806\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/exhibitoraddresses/v2/:exhibitoraddressesId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitoraddresses","v2",":exhibitoraddressesId"],"variable":[{"key":"exhibitoraddressesId","value":"5a343961-61d7-4186-857c-093e12023105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"535"},{"key":"ETag","value":"W/\"217-gagJiZYnhTwt46AssG0wtWNiu5s\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:32:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5a343961-61d7-4186-857c-093e12023105\",\n    \"eventId\": \"d466e3c4-b3c0-4b4a-9f5b-72394c4878cf\",\n    \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n    \"country\": \"US\",\n    \"lineOne\": \"4700 Keele St\",\n    \"cityLocality\": \"North York\",\n    \"isPrimary\": true,\n    \"type\": \"Work\",\n    \"lineTwo\": \"Apt 1099\",\n    \"stateProvince\": \"MN\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"customAttributes\": {\n        \"custom1\": true,\n        \"addressCustom2\": \"gen_23456\",\n        \"registrationCustom3\": \"education_credit\"\n    },\n    \"createdAt\": \"2023-10-23T17:27:29.229Z\",\n    \"updatedAt\": \"2023-10-23T17:32:07.253Z\"\n}"}],"_postman_id":"cf09c08b-3209-4364-841b-af5403eff43a"},{"name":"Destroy an Exhibitoraddress","id":"2342ba33-a771-4c4e-923d-a269d1e28e5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddresses/v2/:exhibitoraddressId","description":"<p>Permanently delete the Exhibitoraddress record of the supplied Exhibitoraddress ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddresses","v2",":exhibitoraddressId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"9dd036b0-a3c9-4728-a1a9-8f63c770dc1f","description":{"content":"<p>Example: 5a343961-61d7-4186-857c-093e12023105</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitoraddress ID here>","key":"exhibitoraddressId"}]}},"response":[{"id":"ea92fe8c-4549-4b1f-9b60-be79af15cc20","name":"Destroy a Exhibitoraddress","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/exhibitoraddresses/v2/:exhibitoraddressesId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitoraddresses","v2",":exhibitoraddressesId"],"variable":[{"key":"exhibitoraddressesId","value":"5a343961-61d7-4186-857c-093e12023105"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"535"},{"key":"ETag","value":"W/\"217-gagJiZYnhTwt46AssG0wtWNiu5s\""},{"key":"Date","value":"Mon, 23 Oct 2023 17:37:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5a343961-61d7-4186-857c-093e12023105\",\n    \"eventId\": \"d466e3c4-b3c0-4b4a-9f5b-72394c4878cf\",\n    \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n    \"country\": \"US\",\n    \"lineOne\": \"4700 Keele St\",\n    \"cityLocality\": \"North York\",\n    \"isPrimary\": true,\n    \"type\": \"Work\",\n    \"lineTwo\": \"Apt 1099\",\n    \"stateProvince\": \"MN\",\n    \"countySubregion\": \"Wright\",\n    \"postalCode\": \"142806\",\n    \"customAttributes\": {\n        \"custom1\": true,\n        \"addressCustom2\": \"gen_23456\",\n        \"registrationCustom3\": \"education_credit\"\n    },\n    \"createdAt\": \"2023-10-23T17:27:29.229Z\",\n    \"updatedAt\": \"2023-10-23T17:32:07.253Z\"\n}"}],"_postman_id":"2342ba33-a771-4c4e-923d-a269d1e28e5f"}],"id":"68dde4e1-dda9-42fc-9d82-7479b3e15830","description":"<p>Exhibitoraddresses are the physical addresses of the exhibiting company or exhibitor contact, an exhibitor or exhibitor contact can have multiple addresses.</p>\n<h4 id=\"response-body\"><strong>Response Body</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>lineOne</td>\n<td>String</td>\n<td>The first line in a street address and belongs below the \"Recipient\" line. Line one should contain the building or house number, predirectionals, street name/PO Box, postdirectionals, and street suffix.</td>\n</tr>\n<tr>\n<td>lineTwo</td>\n<td>String</td>\n<td>Line two field allows users to add secondary address information, such as numbers for apartments, suites, PO Boxes, and other address designators.</td>\n</tr>\n<tr>\n<td>cityLocality</td>\n<td>String</td>\n<td>The city or locality of the address being supplied.</td>\n</tr>\n<tr>\n<td>countySubregion</td>\n<td>String</td>\n<td>The county or sub region of the address being supplied.</td>\n</tr>\n<tr>\n<td>stateProvince</td>\n<td>String</td>\n<td>The state or province of the address being supplied.</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String</td>\n<td>Postal code or zip code of the address being supplied.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>ISO 3166-1 Alpha-2 Code, two letter code</td>\n<td>The country of the address being supplied.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td>Denotes that the address provided is the primary address of the exhibitor or exhibitor contact.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>The type, if multiple addresses are provided. Typically Home, Office.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"68dde4e1-dda9-42fc-9d82-7479b3e15830","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitor-Exhibitoraddress (v2)","item":[{"name":"List Exhibitor-Exhibitoraddress relationships","id":"09fc8a93-263d-4a7c-b979-8e9cf8ec4f53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2","description":"<p>Retrieve a collection of Exhibitor-Exhibitoraddress relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitoraddressId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitoraddress","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"121ccbca-b138-4425-9e01-b28b52140f72","name":"List Exhibitor-Exhibitoraddress relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4808"},{"key":"ETag","value":"W/\"12c8-TbRqtSSSy6oWSM9JnqBxr8IUhfI\""},{"key":"Date","value":"Thu, 02 Nov 2023 16:57:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"ae3f878f-a2bd-4931-9385-df18f819cd2b\",\n            \"exhibitorId\": \"26cfc885-b7b6-441b-a7e4-414216df35fa\",\n            \"exhibitoraddressId\": \"462db65d-57fa-4f55-a64e-1f2b323d5820\",\n            \"createdAt\": \"2023-11-02T16:53:47.340Z\",\n            \"updatedAt\": \"2023-11-02T16:53:47.340Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/26cfc885-b7b6-441b-a7e4-414216df35fa\"\n                    },\n                    \"exhibitoraddress\": {\n                        \"href\": \"/exhibitoraddresses/v2/462db65d-57fa-4f55-a64e-1f2b323d5820\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"111e0dfa-1d57-4fb3-8303-4e857568a22c\",\n            \"exhibitorId\": \"41aa0407-cbb2-4ec8-be88-f086846ec787\",\n            \"exhibitoraddressId\": \"66a285c1-b64a-4e1d-a999-e8222760e6d2\",\n            \"createdAt\": \"2023-11-02T16:53:47.385Z\",\n            \"updatedAt\": \"2023-11-02T16:53:47.385Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/41aa0407-cbb2-4ec8-be88-f086846ec787\"\n                    },\n                    \"exhibitoraddress\": {\n                        \"href\": \"/exhibitoraddresses/v2/66a285c1-b64a-4e1d-a999-e8222760e6d2\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitor-exhibitoraddress/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"09fc8a93-263d-4a7c-b979-8e9cf8ec4f53"},{"name":"Create an Exhibitor-Exhibitoraddress relationship","id":"4153a583-24ce-40dd-a8a5-705c10204dca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitoraddressId\": \"07799ce6-4355-4f94-8e39-82cc232e4f22\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2","description":"<p>Create a new Exhibitor-Exhibitoraddress relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>exhibitoraddressId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitoraddress.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorId</code> and <code>exhibitoraddressId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitoraddress","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"98549b2d-51ce-4f20-a388-03b8c3a30b33","name":"Create an Exhibitor-Exhibitoraddress relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitoraddressId\": \"07799ce6-4355-4f94-8e39-82cc232e4f22\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"236"},{"key":"ETag","value":"W/\"ec-N+BQM4Xhh2CrzG0iQwAWPJIqezE\""},{"key":"Date","value":"Thu, 02 Nov 2023 17:47:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5aecd753-7081-4a05-a27f-45a6a5f96177\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitoraddressId\": \"07799ce6-4355-4f94-8e39-82cc232e4f22\",\n    \"updatedAt\": \"2023-11-02T17:47:38.167Z\",\n    \"createdAt\": \"2023-11-02T17:47:38.167Z\"\n}"}],"_postman_id":"4153a583-24ce-40dd-a8a5-705c10204dca"},{"name":"Read an Exhibitor-Exhibitoraddress relationship","id":"b5cc0f76-1203-4f02-9816-1635d07d382f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2/:id","description":"<p>Retrieve the single Exhibitor-Exhibitoraddress relationship record of the supplied Exhibitor-Exhibitoraddress ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitors</td>\n<td>exhibitoraddresses</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitoraddress","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"574430b4-cbca-4927-be08-8eb02e718dd5","description":{"content":"<p>Example: 5aecd753-7081-4a05-a27f-45a6a5f96177</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Exhibitoraddress ID here>","key":"id"}]}},"response":[{"id":"d2cfb151-7eb1-4667-af62-af0a036abd75","name":"Read an Exhibitor-Exhibitoraddress relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitoraddress","v2",":id"],"variable":[{"key":"id","value":"5aecd753-7081-4a05-a27f-45a6a5f96177","description":"Example: 5aecd753-7081-4a05-a27f-45a6a5f96177"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"452"},{"key":"ETag","value":"W/\"1c4-twBydxB+MkFj7yUNCSEXzbwjxgc\""},{"key":"Date","value":"Thu, 02 Nov 2023 17:50:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5aecd753-7081-4a05-a27f-45a6a5f96177\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitoraddressId\": \"07799ce6-4355-4f94-8e39-82cc232e4f22\",\n    \"createdAt\": \"2023-11-02T17:47:38.167Z\",\n    \"updatedAt\": \"2023-11-02T17:47:38.167Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/1d9a5252-6b3e-484d-90e6-8e66af29f7d9\"\n            },\n            \"exhibitoraddress\": {\n                \"href\": \"/exhibitoraddresses/v2/07799ce6-4355-4f94-8e39-82cc232e4f22\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"8aabb869-386f-4375-bd2f-48f728d53bd3","name":"Read an Exhibitor-Exhibitoraddress relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2/:id?include=exhibitors,exhibitoraddresses","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitoraddress","v2",":id"],"query":[{"key":"include","value":"exhibitors,exhibitoraddresses","type":"text"}],"variable":[{"key":"id","value":"98026e0d-5252-42ba-b03c-1548c3a8a7a5","description":"Example: 5aecd753-7081-4a05-a27f-45a6a5f96177"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2296"},{"key":"ETag","value":"W/\"8f8-3h+CtLHiplQfX5u+BA/v6COLwpo\""},{"key":"Date","value":"Mon, 17 Jun 2024 17:56:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"98026e0d-5252-42ba-b03c-1548c3a8a7a5\",\n    \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n    \"exhibitoraddressId\": \"5218ec6e-a81c-4e29-8ad4-486be0647fbc\",\n    \"createdAt\": \"2024-06-13T18:03:31.629Z\",\n    \"updatedAt\": \"2024-06-13T18:03:31.629Z\",\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"hnM5c\",\n                \"singleSignOnIdentifier\": \"G3huEKi\",\n                \"name\": \"Hayes, Hansen and Hills\",\n                \"isPreviousExhibitor\": false,\n                \"isFirstTime\": false,\n                \"isMember\": false,\n                \"badgeAllocationCount\": 4,\n                \"ticketAllocationCount\": 2,\n                \"staffAllocationCount\": 2,\n                \"phoneNumber\": \"876.671.5495 x29287\",\n                \"email\": \"Tiara93@hotmail.com\",\n                \"producerSystem\": \"z8IDhAr\",\n                \"status\": \"Pending\",\n                \"website\": \"https://last-cherry.biz/\",\n                \"logoUrl\": \"https://loremflickr.com/640/480?lock=6436109605142528\",\n                \"sponsorshipLevel\": \"cW8ZGeL\",\n                \"description\": \"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Curacao\\\"}\",\n                \"bookedAt\": \"2023-10-26T12:25:23.727Z\",\n                \"createdAt\": \"2023-10-26T12:25:23.727Z\",\n                \"updatedAt\": \"2023-10-26T12:25:23.727Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitoraddresses\": {\n        \"collection\": [\n            {\n                \"id\": \"5218ec6e-a81c-4e29-8ad4-486be0647fbc\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"63053f96-71c9-11ee-b962-0242ac120002\",\n                \"country\": \"US\",\n                \"lineOne\": \"Reanna Causeway\",\n                \"cityLocality\": \"New Hiltonberg\",\n                \"isPrimary\": true,\n                \"type\": \"Business\",\n                \"lineTwo\": \"78060 Mohammed Vista\",\n                \"stateProvince\": \"Tillman Group\",\n                \"countySubregion\": \"Wright\",\n                \"postalCode\": \"142806\",\n                \"customAttributes\": {\n                    \"custom1\": true,\n                    \"addressCustom2\": \"gen_23456\",\n                    \"registrationCustom3\": \"education_credit\"\n                },\n                \"createdAt\": \"2024-06-13T17:58:44.055Z\",\n                \"updatedAt\": \"2024-06-13T17:58:44.055Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitoraddress\": {\n                \"href\": \"/exhibitoraddresses/v2/5218ec6e-a81c-4e29-8ad4-486be0647fbc\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"b5cc0f76-1203-4f02-9816-1635d07d382f"},{"name":"Delete an Exhibitor-Exhibitoraddress relationship","id":"ace9e556-2acc-4a0d-8e35-39b69cfb6486","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2/:id","description":"<p>Permanently delete the Exhibitor-Exhibitoraddress relationship record of the supplied Exhibitor-Exhibitoraddress ID. Destroying a relationship record will not destroy the supplied Exhibitor or the supplied Exhibitoraddress, it will instead cause the supplied Exhibitor and Exhibitoraddress to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitoraddress","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"a25b76ef-421b-46a9-ad0a-a38b36cd8ed4","description":{"content":"<p>Example: ae3f878f-a2bd-4931-9385-df18f819cd2b</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Exhibitoraddress ID here>","key":"id"}]}},"response":[{"id":"90b92a44-8487-403c-b8e9-9e9a3a84939a","name":"Delete an Exhibitor-Exhibitorsubcategory relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitoraddress/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitoraddress","v2",":id"],"variable":[{"key":"id","value":"ae3f878f-a2bd-4931-9385-df18f819cd2b","description":"Example: ae3f878f-a2bd-4931-9385-df18f819cd2b"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"236"},{"key":"ETag","value":"W/\"ec-PBEJBubNKNgQylTv/HNkh7UQW70\""},{"key":"Date","value":"Thu, 02 Nov 2023 17:54:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ae3f878f-a2bd-4931-9385-df18f819cd2b\",\n    \"exhibitorId\": \"26cfc885-b7b6-441b-a7e4-414216df35fa\",\n    \"exhibitoraddressId\": \"462db65d-57fa-4f55-a64e-1f2b323d5820\",\n    \"createdAt\": \"2023-11-02T16:53:47.340Z\",\n    \"updatedAt\": \"2023-11-02T16:53:47.340Z\"\n}"}],"_postman_id":"ace9e556-2acc-4a0d-8e35-39b69cfb6486"}],"id":"232065e2-9d34-43ce-86c0-f08af1faf959","description":"<p>The Exhibitor-Exhibitoraddress entity provides a way to interact with the relationships between Exhibitors and Exhibitoraddress. A single Exhibitoraddress can have many Exhibitors and a single Exhibitor can belong to many Exhibitoraddresses.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitor.</td>\n</tr>\n<tr>\n<td>exhibitoraddressId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitoraddress.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"232065e2-9d34-43ce-86c0-f08af1faf959","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitor-Socialmediatype (v2)","item":[{"name":"List Exhibitor-Socialmediatype relationships","id":"4b1c3750-9844-4644-9c7d-886154da68a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2","description":"<p>Retrieve a collection of Exhibitor-Socialmediatype relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>handle</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-socialmediatype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"08e584f5-4ec9-4209-b64a-86e0cb29159e","name":"List Exhibitor-Socialmediatype relationships","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitor-socialmediatype/v2","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitor-socialmediatype","v2"],"query":[{"key":"filter[id][in][]","value":"e6e8926f-6db8-4af4-8ac3-8eee0463f73c","type":"text","disabled":true},{"key":"filter[exhibitorId][eq]","value":"05930e27-c388-4269-9baa-0d5a06e2909","type":"text","disabled":true},{"key":"filter[socialmediatypeId][eq]","value":"067661b9-00d2-484b-9ba8-1551ee0db364","type":"text","disabled":true},{"key":"filter[handle][endsWith]","value":"September","type":"text","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","type":"text","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","disabled":true},{"key":"page","value":"1","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1218"},{"key":"ETag","value":"W/\"4c2-VmJ70ZosicLKIhMhcdBPrYUI9/Y\""},{"key":"Date","value":"Wed, 25 Oct 2023 17:33:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"23e88732-de5a-45dd-95c2-2518f2e6f6f7\",\n            \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n            \"socialmediatypeId\": \"067661b9-00d2-484b-9ba8-1551ee0db364\",\n            \"handle\": \"@jason254\",\n            \"createdAt\": \"2023-10-25T17:31:49.505Z\",\n            \"updatedAt\": \"2023-10-25T17:31:49.505Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/1961151b-598a-46d8-83c1-fbb5e68988f4\"\n                    },\n                    \"socialmediatype\": {\n                        \"href\": \"/socialmediatypes/v2/067661b9-00d2-484b-9ba8-1551ee0db364\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"f3fef77f-b0a3-4675-8225-3ee10751e1b0\",\n            \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n            \"socialmediatypeId\": \"aa5af749-6caa-4630-983d-0356b1f32f1c\",\n            \"handle\": \"kelvin-smith\",\n            \"createdAt\": \"2023-10-25T17:32:40.582Z\",\n            \"updatedAt\": \"2023-10-25T17:32:40.582Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/1961151b-598a-46d8-83c1-fbb5e68988f4\"\n                    },\n                    \"socialmediatype\": {\n                        \"href\": \"/socialmediatypes/v2/aa5af749-6caa-4630-983d-0356b1f32f1c\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitor-socialmediatype/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"4b1c3750-9844-4644-9c7d-886154da68a2"},{"name":"Create an Exhibitor-Socialmediatype relationship","id":"547eb2b5-d212-429b-a0b9-476ec3cc8fdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"socialmediatypeId\": \"067661b9-00d2-484b-9ba8-1551ee0db364\",\n    \"handle\":\"@jason254\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2","description":"<p>Create a new Exhibitor-Socialmediatype relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Socialmediatype.</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorId</code> and <code>socialmediatypeId</code> and <code>handle</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-socialmediatype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"8142619a-40f7-4f71-b4be-9b2eaf905208","name":"Create an Exhibitor-Socialmediatype relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"socialmediatypeId\": \"067661b9-00d2-484b-9ba8-1551ee0db364\",\n    \"handle\":\"@jason254\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"256"},{"key":"ETag","value":"W/\"100-NkfvtPTJ4nUk2lVnMUzXBVj1tWo\""},{"key":"Date","value":"Wed, 25 Oct 2023 17:31:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"23e88732-de5a-45dd-95c2-2518f2e6f6f7\",\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"socialmediatypeId\": \"067661b9-00d2-484b-9ba8-1551ee0db364\",\n    \"handle\": \"@jason254\",\n    \"updatedAt\": \"2023-10-25T17:31:49.505Z\",\n    \"createdAt\": \"2023-10-25T17:31:49.505Z\"\n}"}],"_postman_id":"547eb2b5-d212-429b-a0b9-476ec3cc8fdd"},{"name":"Read an Exhibitor-Socialmediatype relationship","id":"d5fe6f0c-ab86-40fc-bb67-20cd12b2b662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2/:id","description":"<p>Retrieve the single Exhibitor-Socialmediatype relationship record of the supplied Exhibitor-Socialmediatype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitors</td>\n<td>socialmediatypes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-socialmediatype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"bd9644c3-0cee-41f4-b7a1-6825a691a763","description":{"content":"<p>Example: 23e88732-de5a-45dd-95c2-2518f2e6f6f7</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Socialmediatype ID here>","key":"id"}]}},"response":[{"id":"2fe9e75b-dabd-42f6-a82e-53c5e16640b6","name":"Read an Exhibitor-Socialmediatype relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-socialmediatype","v2",":id"],"variable":[{"key":"id","value":"23e88732-de5a-45dd-95c2-2518f2e6f6f7","description":"Example: 23e88732-de5a-45dd-95c2-2518f2e6f6f7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"469"},{"key":"ETag","value":"W/\"1d5-RW03XzLQozperCkxa6BHobgjqIk\""},{"key":"Date","value":"Wed, 25 Oct 2023 17:34:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"23e88732-de5a-45dd-95c2-2518f2e6f6f7\",\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"socialmediatypeId\": \"067661b9-00d2-484b-9ba8-1551ee0db364\",\n    \"handle\": \"@jason254\",\n    \"createdAt\": \"2023-10-25T17:31:49.505Z\",\n    \"updatedAt\": \"2023-10-25T17:31:49.505Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/1961151b-598a-46d8-83c1-fbb5e68988f4\"\n            },\n            \"socialmediatype\": {\n                \"href\": \"/socialmediatypes/v2/067661b9-00d2-484b-9ba8-1551ee0db364\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"8324cac1-9842-40bb-aea3-6a714de50f5d","name":"Read an Exhibitor-Socialmediatype relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2/:id?include=exhibitors, socialmediatypes","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-socialmediatype","v2",":id"],"query":[{"key":"include","value":"exhibitors, socialmediatypes","type":"text"}],"variable":[{"key":"id","value":"14056f4c-5621-4174-a2a4-4ef3a8f6857f","description":"Example: 23e88732-de5a-45dd-95c2-2518f2e6f6f7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1964"},{"key":"ETag","value":"W/\"7ac-wn0iMJTlA1bKYrq2IEqYQgF9wEU\""},{"key":"Date","value":"Mon, 17 Jun 2024 18:47:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"14056f4c-5621-4174-a2a4-4ef3a8f6857f\",\n    \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@jason254\",\n    \"createdAt\": \"2024-06-13T18:32:17.332Z\",\n    \"updatedAt\": \"2024-06-13T18:32:17.332Z\",\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"hnM5c\",\n                \"singleSignOnIdentifier\": \"G3huEKi\",\n                \"name\": \"Hayes, Hansen and Hills\",\n                \"isPreviousExhibitor\": false,\n                \"isFirstTime\": false,\n                \"isMember\": false,\n                \"badgeAllocationCount\": 4,\n                \"ticketAllocationCount\": 2,\n                \"staffAllocationCount\": 2,\n                \"phoneNumber\": \"876.671.5495 x29287\",\n                \"email\": \"Tiara93@hotmail.com\",\n                \"producerSystem\": \"z8IDhAr\",\n                \"status\": \"Pending\",\n                \"website\": \"https://last-cherry.biz/\",\n                \"logoUrl\": \"https://loremflickr.com/640/480?lock=6436109605142528\",\n                \"sponsorshipLevel\": \"cW8ZGeL\",\n                \"description\": \"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Curacao\\\"}\",\n                \"bookedAt\": \"2023-10-26T12:25:23.727Z\",\n                \"createdAt\": \"2023-10-26T12:25:23.727Z\",\n                \"updatedAt\": \"2023-10-26T12:25:23.727Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"socialmediatypes\": {\n        \"collection\": [\n            {\n                \"id\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n                \"name\": \"Facebook uwvdivobkfvdmwpaapcomcwosxmropxtfhqnglmcuonmxxpfbt\",\n                \"domain\": \"gray-legging.name\",\n                \"createdAt\": \"2023-09-08T14:04:26.458Z\",\n                \"updatedAt\": \"2023-09-08T14:04:26.458Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"socialmediatype\": {\n                \"href\": \"/socialmediatypes/v2/fafdbe9e-f6eb-446b-a4ed-145f33e21b42\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"d5fe6f0c-ab86-40fc-bb67-20cd12b2b662"},{"name":"Delete an Exhibitor-Socialmediatype relationship","id":"124a7a75-93bf-4d29-b736-484e5f3e9775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2/:id","description":"<p>Permanently delete the Exhibitor-Socialmediatype relationship record of the supplied Exhibitor-Socialmediatype ID. Destroying a relationship record will not destroy the supplied Exhibitor or the supplied Socialmediatype, it will instead cause the supplied Exhibitor and Socialmediatype to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-socialmediatype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"0270627d-b496-4b8c-8ca2-ef5aa444ae53","description":{"content":"<p>Example: f3fef77f-b0a3-4675-8225-3ee10751e1b0</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Socialmediatype ID here>","key":"id"}]}},"response":[{"id":"693f66a8-17e7-4517-b981-f51c15fd907b","name":"Delete an Exhibitor-Socialmediatype relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-socialmediatype/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-socialmediatype","v2",":id"],"variable":[{"key":"id","value":"f3fef77f-b0a3-4675-8225-3ee10751e1b0","description":"Example: f3fef77f-b0a3-4675-8225-3ee10751e1b0"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"259"},{"key":"ETag","value":"W/\"103-zlFZi6eO3durLW46bFdukP5JGU0\""},{"key":"Date","value":"Wed, 25 Oct 2023 17:35:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"f3fef77f-b0a3-4675-8225-3ee10751e1b0\",\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"socialmediatypeId\": \"aa5af749-6caa-4630-983d-0356b1f32f1c\",\n    \"handle\": \"kelvin-smith\",\n    \"createdAt\": \"2023-10-25T17:32:40.582Z\",\n    \"updatedAt\": \"2023-10-25T17:32:40.582Z\"\n}"}],"_postman_id":"124a7a75-93bf-4d29-b736-484e5f3e9775"}],"id":"fe6ced79-0da6-4e79-be22-86a392e7a729","description":"<p>The Exhibitor-Socialmediatype entity provides a way to interact with the relationships between Exhibitors and Socialmediatypes. A single Socialmediatype can have many Exhibitors and a single Exhibitor can belong to many Socialmediatypes.</p>\n<p>Exhibitor-Socialmediatype connects a social media platform and the social media handle to an Exhibitor.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitor.</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Socialmediatype.</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>String</td>\n<td>The social media handle of the Exhibitor.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fe6ced79-0da6-4e79-be22-86a392e7a729","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorcontacts (v2)","item":[{"name":"List Exhibitorcontacts","id":"9715e180-5bc5-4f3d-be85-490efe8840e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2","description":"<p>Retrieve a collection of Exhibitorcontact records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorcontacttypeId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitoraddressId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>title</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>email</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>website</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>prefix</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>title</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>email</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>website</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacts","v2"],"host":["{{domain}}{{port}}"],"query":[{"disabled":true,"key":null,"value":""}],"variable":[]}},"response":[{"id":"6b78f1dc-0c84-4adb-b258-aac1ef3b2029","name":"List Exhibitorcontacts","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontacts","v2"],"query":[{"key":null,"value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3134"},{"key":"ETag","value":"W/\"c3e-nobPS/5TkdV+p856Pn3iRBfVZoM\""},{"key":"Date","value":"Wed, 01 Nov 2023 16:35:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"94c41ce6-de2b-4045-b354-dcfd59477078\",\n            \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n            \"exhibitorId\": \"521fa106-1878-4f62-a162-6d1d38023bcb\",\n            \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n            \"firstName\": \"Kaleb\",\n            \"lastName\": \"Nasi\",\n            \"email\": \"knasi0@xrea.com\",\n            \"isPrimary\": true,\n            \"emailTwo\": \"jtorfinc@illinois.edu\",\n            \"middleName\": null,\n            \"title\": \"Senior Quality Engineer\",\n            \"prefix\": \"Dr.\",\n            \"suffix\": \"III\",\n            \"faxNumber\": \"644-535-5800\",\n            \"mobileNumber\": \"737-432-0648\",\n            \"otherPhoneNumber\": \"327-599-7760\",\n            \"phoneNumber\": null,\n            \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n            \"customAttributes\": {\n                \"location\": \"USA\"\n            },\n            \"createdAt\": \"2023-11-01T16:21:00.937Z\",\n            \"updatedAt\": \"2023-11-01T16:21:00.937Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/cd389d23-ddf2-43df-a4a6-75c2f31a10eb\"\n                    },\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/521fa106-1878-4f62-a162-6d1d38023bcb\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"df320b58-c8a8-4021-897c-837e69b8a060\",\n            \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n            \"exhibitorId\": null,\n            \"producerRecordIdentifier\": \"1dd8436f-3e9e-4d38-aab1-cbc47c15479f\",\n            \"firstName\": \"Corrina\",\n            \"lastName\": \"Bonnavant\",\n            \"email\": \"cbonnavant1@nih.gov\",\n            \"isPrimary\": false,\n            \"emailTwo\": null,\n            \"middleName\": \"Baker\",\n            \"title\": \"Dental Hygienist\",\n            \"prefix\": \"Dr.\",\n            \"suffix\": \"IV\",\n            \"faxNumber\": null,\n            \"mobileNumber\": \"836-759-6008\",\n            \"otherPhoneNumber\": null,\n            \"phoneNumber\": null,\n            \"website\": \"https://wordpress.org/est/risus/auctor/sed/tristique/in.xml?proin=nunc&risus=viverra&praesent=dapibus&lectus=nulla&vestibulum=suscipit&quam=ligula&sapien=in&varius=lacus&ut=curabitur&blandit=at&non=ipsum\",\n            \"customAttributes\": null,\n            \"createdAt\": \"2023-11-01T16:32:06.624Z\",\n            \"updatedAt\": \"2023-11-01T16:32:06.624Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/cd389d23-ddf2-43df-a4a6-75c2f31a10eb\"\n                    },\n                    \"exhibitor\": {}\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorcontacts/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"9715e180-5bc5-4f3d-be85-490efe8840e9"},{"name":"Create an Exhibitorcontact","id":"b47e4263-d99d-45ed-8f29-afb64ce611ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n    \"exhibitorId\":\"521fa106-1878-4f62-a162-6d1d38023bcb\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"firstName\": \"Kaleb\",\n    \"lastName\": \"Nasi\",\n    \"email\": \"knasi0@xrea.com\",\n    \"isPrimary\": true,\n    \"emailTwo\": \"jtorfinc@illinois.edu\",\n    \"middleName\": null,\n    \"title\": \"Senior Quality Engineer\",\n    \"prefix\": \"Dr.\",\n    \"suffix\": \"III\",\n    \"faxNumber\": \"644-535-5800\",\n    \"mobileNumber\": \"737-432-0648\",\n    \"otherPhoneNumber\": \"327-599-7760\",\n    \"phoneNumber\": null,\n    \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\", \n    \"customAttributes\": {\"location\":\"USA\"} \n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2","description":"<p>Create a new Exhibitorcontact record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th>Validation</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacts","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"30392a77-3c6f-435f-9cc6-d405857014c3","name":"Create an Exhibitorcontact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n    \"exhibitorId\":\"521fa106-1878-4f62-a162-6d1d38023bcb\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"firstName\": \"Kaleb\",\n    \"lastName\": \"Nasi\",\n    \"email\": \"knasi0@xrea.com\",\n    \"isPrimary\": true,\n    \"emailTwo\": \"jtorfinc@illinois.edu\",\n    \"middleName\": null,\n    \"title\": \"Senior Quality Engineer\",\n    \"prefix\": \"Dr.\",\n    \"suffix\": \"III\",\n    \"faxNumber\": \"644-535-5800\",\n    \"mobileNumber\": \"737-432-0648\",\n    \"otherPhoneNumber\": \"327-599-7760\",\n    \"phoneNumber\": null,\n    \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\", \n    \"customAttributes\": {\"location\":\"USA\"} \n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"833"},{"key":"ETag","value":"W/\"341-JSmVcr45gS7oBXSARQzWL6SWEsM\""},{"key":"Date","value":"Wed, 01 Nov 2023 16:21:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"94c41ce6-de2b-4045-b354-dcfd59477078\",\n    \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n    \"exhibitorId\": \"521fa106-1878-4f62-a162-6d1d38023bcb\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"firstName\": \"Kaleb\",\n    \"lastName\": \"Nasi\",\n    \"email\": \"knasi0@xrea.com\",\n    \"isPrimary\": true,\n    \"emailTwo\": \"jtorfinc@illinois.edu\",\n    \"middleName\": null,\n    \"title\": \"Senior Quality Engineer\",\n    \"prefix\": \"Dr.\",\n    \"suffix\": \"III\",\n    \"faxNumber\": \"644-535-5800\",\n    \"mobileNumber\": \"737-432-0648\",\n    \"otherPhoneNumber\": \"327-599-7760\",\n    \"phoneNumber\": null,\n    \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n    \"customAttributes\": {\n        \"location\": \"USA\"\n    },\n    \"updatedAt\": \"2023-11-01T16:21:00.937Z\",\n    \"createdAt\": \"2023-11-01T16:21:00.937Z\"\n}"}],"_postman_id":"b47e4263-d99d-45ed-8f29-afb64ce611ed"},{"name":"Read an Exhibitorcontact","id":"5c4076fe-e366-4b2b-adb5-4ddf7a1f149b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2/:exhibitorcontactId","description":"<p>Retrieve the single Exhibitorcontact record of the supplied Exhibitorcontact ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>exhibitors</td>\n<td>socialmediatypes</td>\n</tr>\n<tr>\n<td>exhibitoraddresses</td>\n<td>exhibitorcontacttypes</td>\n<td>exhibitorcontact-socialmediatype</td>\n</tr>\n<tr>\n<td>exhibitoraddress-exhibitorcontact</td>\n<td>exhibitorcontact-exhibitorcontacttype</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacts","v2",":exhibitorcontactId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"7e670e8d-2f9e-4f46-b4df-48533460c470","description":{"content":"<p>Example: 94c41ce6-de2b-4045-b354-dcfd59477078</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontact ID here>","key":"exhibitorcontactId"}]}},"response":[{"id":"0c3ad5cf-5e4b-4696-9b07-2e0db1449a86","name":"Read an Exhibitorcontact","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2/:exhibitorcontactId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontacts","v2",":exhibitorcontactId"],"variable":[{"key":"exhibitorcontactId","value":"94c41ce6-de2b-4045-b354-dcfd59477078","description":"Example: 94c41ce6-de2b-4045-b354-dcfd59477078"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1026"},{"key":"ETag","value":"W/\"402-ecd3sYjxc6zVxxHiOm63EYlc1Cg\""},{"key":"Date","value":"Wed, 01 Nov 2023 16:37:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"94c41ce6-de2b-4045-b354-dcfd59477078\",\n    \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n    \"exhibitorId\": \"521fa106-1878-4f62-a162-6d1d38023bcb\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"firstName\": \"Kaleb\",\n    \"lastName\": \"Nasi\",\n    \"email\": \"knasi0@xrea.com\",\n    \"isPrimary\": true,\n    \"emailTwo\": \"jtorfinc@illinois.edu\",\n    \"middleName\": null,\n    \"title\": \"Senior Quality Engineer\",\n    \"prefix\": \"Dr.\",\n    \"suffix\": \"III\",\n    \"faxNumber\": \"644-535-5800\",\n    \"mobileNumber\": \"737-432-0648\",\n    \"otherPhoneNumber\": \"327-599-7760\",\n    \"phoneNumber\": null,\n    \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n    \"customAttributes\": {\n        \"location\": \"USA\"\n    },\n    \"createdAt\": \"2023-11-01T16:21:00.937Z\",\n    \"updatedAt\": \"2023-11-01T16:21:00.937Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/cd389d23-ddf2-43df-a4a6-75c2f31a10eb\"\n            },\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/521fa106-1878-4f62-a162-6d1d38023bcb\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"1c5d7f99-b514-408a-8cb1-e6e15dd9ab9e","name":"Read an Exhibitorcontact with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2/:exhibitorcontactId?include=events,exhibitors","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontacts","v2",":exhibitorcontactId"],"query":[{"key":"include","value":"events,exhibitors","type":"text"}],"variable":[{"key":"exhibitorcontactId","value":"01f97f77-8eaf-4ce3-abfb-11ea9e902485","description":"Example: 94c41ce6-de2b-4045-b354-dcfd59477078"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3650"},{"key":"ETag","value":"W/\"e42-x9CQDNBqMELiK70vratWTLn1OEo\""},{"key":"Date","value":"Mon, 17 Jun 2024 18:49:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n    \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n    \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"firstName\": \"Kaleb\",\n    \"lastName\": \"Nasi\",\n    \"email\": \"knasi0@xrea.com\",\n    \"isPrimary\": true,\n    \"emailTwo\": \"jtorfinc@illinois.edu\",\n    \"middleName\": null,\n    \"title\": \"Senior Quality Engineer\",\n    \"prefix\": \"Dr.\",\n    \"suffix\": \"III\",\n    \"faxNumber\": \"644-535-5800\",\n    \"mobileNumber\": \"737-432-0648\",\n    \"otherPhoneNumber\": \"327-599-7760\",\n    \"phoneNumber\": null,\n    \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n    \"customAttributes\": {\n        \"location\": \"USA\"\n    },\n    \"createdAt\": \"2024-06-13T17:52:44.377Z\",\n    \"updatedAt\": \"2024-06-13T17:52:44.377Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"shortName\": \"Rustic Beauty Show 2026\",\n                \"fullName\": \"Rustic Recycled Frozen Car Grocery Show 2026\",\n                \"systemName\": \"rusticbeautyshow2026-8b9d\",\n                \"website\": \"https://faraway-geometry.com\",\n                \"description\": null,\n                \"startsAt\": \"2023-09-13T16:50:16.236Z\",\n                \"endsAt\": \"2023-09-16T16:50:16.233Z\",\n                \"timezoneOffsetInMinutes\": -303,\n                \"freemanJobIdentifier\": null,\n                \"isSandbox\": true,\n                \"createdAt\": \"2023-09-13T16:50:16.236Z\",\n                \"updatedAt\": \"2023-09-13T16:50:16.236Z\",\n                \"organizationId\": \"73d23231-1b73-42c3-84db-8a271e7b6e05\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"hnM5c\",\n                \"singleSignOnIdentifier\": \"G3huEKi\",\n                \"name\": \"Hayes, Hansen and Hills\",\n                \"isPreviousExhibitor\": false,\n                \"isFirstTime\": false,\n                \"isMember\": false,\n                \"badgeAllocationCount\": 4,\n                \"ticketAllocationCount\": 2,\n                \"staffAllocationCount\": 2,\n                \"phoneNumber\": \"876.671.5495 x29287\",\n                \"email\": \"Tiara93@hotmail.com\",\n                \"producerSystem\": \"z8IDhAr\",\n                \"status\": \"Pending\",\n                \"website\": \"https://last-cherry.biz/\",\n                \"logoUrl\": \"https://loremflickr.com/640/480?lock=6436109605142528\",\n                \"sponsorshipLevel\": \"cW8ZGeL\",\n                \"description\": \"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Curacao\\\"}\",\n                \"bookedAt\": \"2023-10-26T12:25:23.727Z\",\n                \"createdAt\": \"2023-10-26T12:25:23.727Z\",\n                \"updatedAt\": \"2023-10-26T12:25:23.727Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/1e4b7523-ba8b-47bc-99d0-23e5b858a27c\"\n            },\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            }\n        },\n        \"children\": {\n            \"exhibitorcontact-socialmediatype\": {\n                \"href\": \"/exhibitorcontact-socialmediatype/v2?filter[exhibitorcontactId][eq]=01f97f77-8eaf-4ce3-abfb-11ea9e902485\"\n            },\n            \"exhibitoraddress-exhibitorcontact\": {\n                \"href\": \"/exhibitoraddress-exhibitorcontact/v2?filter[exhibitorcontactId][eq]=01f97f77-8eaf-4ce3-abfb-11ea9e902485\"\n            },\n            \"exhibitorcontact-exhibitorcontacttype\": {\n                \"href\": \"/exhibitorcontact-exhibitorcontacttype/v2?filter[exhibitorcontactId][eq]=01f97f77-8eaf-4ce3-abfb-11ea9e902485\"\n            }\n        },\n        \"siblings\": {\n            \"socialmediatypes\": {\n                \"href\": \"/socialmediatypes/v2?filter[exhibitorcontactId][eq]=01f97f77-8eaf-4ce3-abfb-11ea9e902485\"\n            },\n            \"exhibitoraddresses\": {\n                \"href\": \"/exhibitoraddresses/v2?filter[exhibitorcontactId][eq]=01f97f77-8eaf-4ce3-abfb-11ea9e902485\"\n            },\n            \"exhibitorcontacttypes\": {\n                \"href\": \"/exhibitorcontacttypes/v2?filter[exhibitorcontactId][eq]=01f97f77-8eaf-4ce3-abfb-11ea9e902485\"\n            }\n        }\n    }\n}"}],"_postman_id":"5c4076fe-e366-4b2b-adb5-4ddf7a1f149b"},{"name":"Update an Exhibitorcontact","id":"68469eaa-15cc-46ee-aeab-ce3e6f5f370b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"isPrimary\":true,\n    \"middleName\":\"Rogers\",\n    \"otherPhoneNumber\":\"327-599-7760\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2/:exhibitorcontactId","description":"<p>Modify one or more fields on the single Exhibitorcontact record of the supplied Exhibitorcontact ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th>Validations</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid email.</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td></td>\n<td>• Valid values: true, false.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacts","v2",":exhibitorcontactId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"a13140bd-0970-4f86-b7f8-70029546f422","description":{"content":"<p>Example: 94c41ce6-de2b-4045-b354-dcfd59477078</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontact ID here>","key":"exhibitorcontactId"}]}},"response":[{"id":"c9e98f2e-d25c-46bf-be9b-f72fbc76ffe4","name":"Update an Exhibitorcontact","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"isPrimary\":true,\n    \"middleName\":\"Rogers\",\n    \"otherPhoneNumber\":\"327-599-7760\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2/:exhibitorcontactId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontacts","v2",":exhibitorcontactId"],"variable":[{"key":"exhibitorcontactId","value":"94c41ce6-de2b-4045-b354-dcfd59477078","description":"Example: 94c41ce6-de2b-4045-b354-dcfd59477078"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"837"},{"key":"ETag","value":"W/\"345-JhfQ5Z15B3rWqwERbkOLzR747tM\""},{"key":"Date","value":"Wed, 01 Nov 2023 16:38:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"94c41ce6-de2b-4045-b354-dcfd59477078\",\n    \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n    \"exhibitorId\": \"521fa106-1878-4f62-a162-6d1d38023bcb\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"firstName\": \"Kaleb\",\n    \"lastName\": \"Nasi\",\n    \"email\": \"knasi0@xrea.com\",\n    \"isPrimary\": true,\n    \"emailTwo\": \"jtorfinc@illinois.edu\",\n    \"middleName\": \"Rogers\",\n    \"title\": \"Senior Quality Engineer\",\n    \"prefix\": \"Dr.\",\n    \"suffix\": \"III\",\n    \"faxNumber\": \"644-535-5800\",\n    \"mobileNumber\": \"737-432-0648\",\n    \"otherPhoneNumber\": \"327-599-7760\",\n    \"phoneNumber\": null,\n    \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n    \"customAttributes\": {\n        \"location\": \"USA\"\n    },\n    \"createdAt\": \"2023-11-01T16:21:00.937Z\",\n    \"updatedAt\": \"2023-11-01T16:38:36.981Z\"\n}"}],"_postman_id":"68469eaa-15cc-46ee-aeab-ce3e6f5f370b"},{"name":"Destroy an Exhibitorcontact","id":"a36bc5a5-2179-4581-993f-4c8a16417508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2/:exhibitorcontactId","description":"<p>Permanently delete the Exhibitorcontact record of the supplied Exhibitorcontact ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacts","v2",":exhibitorcontactId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"2067d1dc-ada1-4468-9a5d-d47aa0bd0216","description":{"content":"<p>Example: df320b58-c8a8-4021-897c-837e69b8a060</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontact ID here>","key":"exhibitorcontactId"}]}},"response":[{"id":"b9d90325-816e-49cd-8782-70c01bd6c3ec","name":"Destroy an Exhibitorcontact","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacts/v2/:exhibitorcontactId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontacts","v2",":exhibitorcontactId"],"variable":[{"key":"exhibitorcontactId","value":"df320b58-c8a8-4021-897c-837e69b8a060","description":"Example: df320b58-c8a8-4021-897c-837e69b8a060"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"773"},{"key":"ETag","value":"W/\"305-xXT15QPt8Q2HNFwbM0ugP2Rob40\""},{"key":"Date","value":"Wed, 01 Nov 2023 16:39:17 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"df320b58-c8a8-4021-897c-837e69b8a060\",\n    \"eventId\": \"cd389d23-ddf2-43df-a4a6-75c2f31a10eb\",\n    \"exhibitorId\": null,\n    \"producerRecordIdentifier\": \"1dd8436f-3e9e-4d38-aab1-cbc47c15479f\",\n    \"firstName\": \"Corrina\",\n    \"lastName\": \"Bonnavant\",\n    \"email\": \"cbonnavant1@nih.gov\",\n    \"isPrimary\": false,\n    \"emailTwo\": null,\n    \"middleName\": \"Baker\",\n    \"title\": \"Dental Hygienist\",\n    \"prefix\": \"Dr.\",\n    \"suffix\": \"IV\",\n    \"faxNumber\": null,\n    \"mobileNumber\": \"836-759-6008\",\n    \"otherPhoneNumber\": null,\n    \"phoneNumber\": null,\n    \"website\": \"https://wordpress.org/est/risus/auctor/sed/tristique/in.xml?proin=nunc&risus=viverra&praesent=dapibus&lectus=nulla&vestibulum=suscipit&quam=ligula&sapien=in&varius=lacus&ut=curabitur&blandit=at&non=ipsum\",\n    \"customAttributes\": null,\n    \"createdAt\": \"2023-11-01T16:32:06.624Z\",\n    \"updatedAt\": \"2023-11-01T16:32:06.624Z\"\n}"}],"_postman_id":"a36bc5a5-2179-4581-993f-4c8a16417508"}],"id":"8861d089-6478-48b1-a033-4cee2689231e","description":"<p>Exhibitorcontacts refers to the individuals or representatives from companies, organizations, or entities that are participating as exhibitors at an event.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitor.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>prefix</td>\n<td>String</td>\n<td>The prefix of the Exhibitorcontact, typically Mr., Mrs., Ms., etc.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>The title of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>The first name of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>String</td>\n<td>The middle name of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>The last name of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>suffix</td>\n<td>String</td>\n<td>The suffix of the Exhibitorcontact, typically Jr., Sr., II, III etc.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>The email of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>emailTwo</td>\n<td>String</td>\n<td>Secondary email of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td>String</td>\n<td>The mobile/cellular phone number of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>website</td>\n<td>String</td>\n<td>The website of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>String</td>\n<td>The primary phone number of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>faxNumber</td>\n<td>String</td>\n<td>The fax number of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td>String</td>\n<td>Additional phone numbers of the Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>isPrimary</td>\n<td>Boolean</td>\n<td>Denotes if the Exhibitorcontact is the primary contact of the exhibiting company.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8861d089-6478-48b1-a033-4cee2689231e","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitoraddress-Exhibitorcontact (v2)","item":[{"name":"List Exhibitoraddress-Exhibitorcontact relationships","id":"98a8a03f-1c67-4dfc-a853-02ce35989571","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2","description":"<p>Retrieve a collection of Exhibitoraddress-Exhibitorcontact relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitoraddressId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddress-exhibitorcontact","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"2f381162-31cd-4b1a-8ba1-3d6419715dd4","name":"List Exhibitoraddress-Exhibitorcontact relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1231"},{"key":"ETag","value":"W/\"4cf-jOKQpiv+KxSjel3QgOwQhhEe4X0\""},{"key":"Date","value":"Thu, 02 Nov 2023 16:41:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"9880186a-804d-4c17-b46c-f2665c57a06e\",\n            \"exhibitoraddressId\": \"75ca9d23-20f3-4041-98c1-44f54145d433\",\n            \"exhibitorcontactId\": \"86468b7e-af82-4863-ac89-61424fde7365\",\n            \"createdAt\": \"2023-11-02T16:39:11.279Z\",\n            \"updatedAt\": \"2023-11-02T16:39:11.279Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitoraddress\": {\n                        \"href\": \"/exhibitoraddresses/v2/75ca9d23-20f3-4041-98c1-44f54145d433\"\n                    },\n                    \"exhibitorcontact\": {\n                        \"href\": \"/exhibitorcontacts/v2/86468b7e-af82-4863-ac89-61424fde7365\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"d03ad266-cd57-4f42-a513-fea942525b1a\",\n            \"exhibitoraddressId\": \"75ca9d23-20f3-4041-98c1-44f54145d433\",\n            \"exhibitorcontactId\": \"e5c63137-1702-4d4e-aead-d9a94824207d\",\n            \"createdAt\": \"2023-11-02T16:39:48.278Z\",\n            \"updatedAt\": \"2023-11-02T16:39:48.278Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitoraddress\": {\n                        \"href\": \"/exhibitoraddresses/v2/75ca9d23-20f3-4041-98c1-44f54145d433\"\n                    },\n                    \"exhibitorcontact\": {\n                        \"href\": \"/exhibitorcontacts/v2/e5c63137-1702-4d4e-aead-d9a94824207d\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitoraddress-exhibitorcontact/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"98a8a03f-1c67-4dfc-a853-02ce35989571"},{"name":"Create an Exhibitoraddress-Exhibitorcontact relationship","id":"a02b39e4-3638-4330-968f-86b0253dcc5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitoraddressId\": \"75ca9d23-20f3-4041-98c1-44f54145d433\",\n    \"exhibitorcontactId\": \"86468b7e-af82-4863-ac89-61424fde7365\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2","description":"<p>Create a new Exhibitoraddress-Exhibitorcontact relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitoraddressId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitoraddress.</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorcontact.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitoraddressId</code> and <code>exhibitorcontactId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddress-exhibitorcontact","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"2f25a0e2-da23-4c19-a606-75e8f0a34323","name":"Create an Exhibitoraddress-Exhibitorcontact relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitoraddressId\": \"75ca9d23-20f3-4041-98c1-44f54145d433\",\n    \"exhibitorcontactId\": \"86468b7e-af82-4863-ac89-61424fde7365\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"243"},{"key":"ETag","value":"W/\"f3-FCOsQzTZDYYJEWVNSJNrpor04X4\""},{"key":"Date","value":"Thu, 02 Nov 2023 16:39:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9880186a-804d-4c17-b46c-f2665c57a06e\",\n    \"exhibitoraddressId\": \"75ca9d23-20f3-4041-98c1-44f54145d433\",\n    \"exhibitorcontactId\": \"86468b7e-af82-4863-ac89-61424fde7365\",\n    \"updatedAt\": \"2023-11-02T16:39:11.279Z\",\n    \"createdAt\": \"2023-11-02T16:39:11.279Z\"\n}"}],"_postman_id":"a02b39e4-3638-4330-968f-86b0253dcc5e"},{"name":"Read an Exhibitoraddress-Exhibitorcontact relationship","id":"1604a668-f59b-4873-a8f1-8d2ac8f3d712","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2/:id","description":"<p>Retrieve the single Exhibitoraddress-Exhibitorcontact relationship record of the supplied Exhibitoraddress-Exhibitorcontact ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitoraddresses</td>\n<td>exhibitorcontacts</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddress-exhibitorcontact","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"9f132c14-2f4d-421c-a083-7fbe5cdaf967","description":{"content":"<p>Example: 9880186a-804d-4c17-b46c-f2665c57a06e</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitoraddress-Exhibitorcontact ID here>","key":"id"}]}},"response":[{"id":"96bbd0d0-20b2-46e2-90fc-02c2315cd937","name":"Read an Exhibitoraddress-Exhibitorcontactrelationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitoraddress-exhibitorcontact","v2",":id"],"variable":[{"key":"id","value":"9880186a-804d-4c17-b46c-f2665c57a06e","description":"Example: 9880186a-804d-4c17-b46c-f2665c57a06e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"473"},{"key":"ETag","value":"W/\"1d9-+gWCRPjGvKZ1+HXUjcnc4LNOj6g\""},{"key":"Date","value":"Thu, 02 Nov 2023 16:43:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9880186a-804d-4c17-b46c-f2665c57a06e\",\n    \"exhibitoraddressId\": \"75ca9d23-20f3-4041-98c1-44f54145d433\",\n    \"exhibitorcontactId\": \"86468b7e-af82-4863-ac89-61424fde7365\",\n    \"createdAt\": \"2023-11-02T16:39:11.279Z\",\n    \"updatedAt\": \"2023-11-02T16:39:11.279Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitoraddress\": {\n                \"href\": \"/exhibitoraddresses/v2/75ca9d23-20f3-4041-98c1-44f54145d433\"\n            },\n            \"exhibitorcontact\": {\n                \"href\": \"/exhibitorcontacts/v2/86468b7e-af82-4863-ac89-61424fde7365\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"7c631c1b-0d7d-4eb4-9f15-5150935e4387","name":"Read an Exhibitoraddress-Exhibitorcontact relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2/:id?include=exhibitoraddresses,exhibitorcontacts","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitoraddress-exhibitorcontact","v2",":id"],"query":[{"key":"include","value":"exhibitoraddresses,exhibitorcontacts","type":"text"}],"variable":[{"key":"id","value":"dda92651-bb74-4ec9-b6e4-68a282aca5ed","description":"Example: 9880186a-804d-4c17-b46c-f2665c57a06e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2039"},{"key":"ETag","value":"W/\"7f7-ZMFrvH7XshpfF4rg/jnJNHmVTG0\""},{"key":"Date","value":"Mon, 17 Jun 2024 18:57:06 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"dda92651-bb74-4ec9-b6e4-68a282aca5ed\",\n    \"exhibitoraddressId\": \"7b188fdf-4ca3-4928-a57f-2d9a382910cd\",\n    \"exhibitorcontactId\": \"73799feb-3493-43fd-aa42-aa49e8154b69\",\n    \"createdAt\": \"2023-11-27T14:47:19.691Z\",\n    \"updatedAt\": \"2023-11-27T14:47:19.691Z\",\n    \"exhibitoraddresses\": {\n        \"collection\": [\n            {\n                \"id\": \"7b188fdf-4ca3-4928-a57f-2d9a382910cd\",\n                \"eventId\": \"450505b2-f676-4093-bce2-03f57ac3d0c9\",\n                \"producerRecordIdentifier\": \"a13aad80-6587-4719-abba-8e99c38add65\",\n                \"country\": \"IS\",\n                \"lineOne\": \"2258 Zita Flats\",\n                \"cityLocality\": \"Wylie\",\n                \"isPrimary\": false,\n                \"type\": \"Work\",\n                \"lineTwo\": \"Apt. 945\",\n                \"stateProvince\": \"Massachusetts\",\n                \"countySubregion\": \"Buckinghamshire\",\n                \"postalCode\": \"75823\",\n                \"customAttributes\": \"{}\",\n                \"createdAt\": \"2023-11-27T14:47:19.639Z\",\n                \"updatedAt\": \"2023-11-27T14:47:19.639Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorcontacts\": {\n        \"collection\": [\n            {\n                \"id\": \"73799feb-3493-43fd-aa42-aa49e8154b69\",\n                \"eventId\": \"72302af0-c582-494a-b24e-534809d067c3\",\n                \"exhibitorId\": \"1cc5359c-4fa5-4557-b220-dabed0b22a10\",\n                \"producerRecordIdentifier\": \"RIuLI\",\n                \"firstName\": \"Leonor\",\n                \"lastName\": \"Schoen\",\n                \"email\": \"Bert_Ondricka8@yahoo.com\",\n                \"isPrimary\": true,\n                \"emailTwo\": \"Davonte.Koepp@hotmail.com\",\n                \"middleName\": \"Drew\",\n                \"title\": \"Technician\",\n                \"prefix\": \"Mr.\",\n                \"suffix\": \"I\",\n                \"faxNumber\": \"575-664-1026 x1520\",\n                \"mobileNumber\": \"1-611-840-3333 x419\",\n                \"otherPhoneNumber\": \"1-995-664-4362\",\n                \"phoneNumber\": \"(997) 971-3178 x20287\",\n                \"website\": \"https://wretched-flock.info/\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Serbia\\\"}\",\n                \"createdAt\": \"2023-11-27T14:47:19.683Z\",\n                \"updatedAt\": \"2023-11-27T14:47:19.683Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitoraddress\": {\n                \"href\": \"/exhibitoraddresses/v2/7b188fdf-4ca3-4928-a57f-2d9a382910cd\"\n            },\n            \"exhibitorcontact\": {\n                \"href\": \"/exhibitorcontacts/v2/73799feb-3493-43fd-aa42-aa49e8154b69\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"1604a668-f59b-4873-a8f1-8d2ac8f3d712"},{"name":"Delete an Exhibitoraddress-Exhibitorcontact relationship","id":"54c22ffb-c101-44e9-ad71-6f405a47560f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2/:id","description":"<p>Permanently delete the Exhibitoraddress-Exhibitorcontact relationship record of the supplied Exhibitoraddress-Exhibitorcontact ID. Destroying a relationship record will not destroy the supplied Exhibitoraddress or the supplied Exhibitorcontact, it will instead cause the supplied Exhibitoraddress and Exhibitorcontact to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitoraddress-exhibitorcontact","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"39f0aeda-41e2-4ac9-badd-f0d5f1915cd2","description":{"content":"<p>Example: d03ad266-cd57-4f42-a513-fea942525b1a</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitoraddress-Exhibitorcontact ID here>","key":"id"}]}},"response":[{"id":"8249aec0-b1da-4191-9113-928fb8719912","name":"Delete an Exhibitoraddress-Exhibitorcontact relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitoraddress-exhibitorcontact/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitoraddress-exhibitorcontact","v2",":id"],"variable":[{"key":"id","value":"d03ad266-cd57-4f42-a513-fea942525b1a","description":"Example: d03ad266-cd57-4f42-a513-fea942525b1a"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"243"},{"key":"ETag","value":"W/\"f3-9/y9NbRX8ycRDe6bBfAZF3h6MdE\""},{"key":"Date","value":"Thu, 02 Nov 2023 16:44:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d03ad266-cd57-4f42-a513-fea942525b1a\",\n    \"exhibitoraddressId\": \"75ca9d23-20f3-4041-98c1-44f54145d433\",\n    \"exhibitorcontactId\": \"e5c63137-1702-4d4e-aead-d9a94824207d\",\n    \"createdAt\": \"2023-11-02T16:39:48.278Z\",\n    \"updatedAt\": \"2023-11-02T16:39:48.278Z\"\n}"}],"_postman_id":"54c22ffb-c101-44e9-ad71-6f405a47560f"}],"id":"77b66915-f2c9-4fd0-ba10-ea4653c128b0","description":"<p>The Exhibitoraddress-Exhibitorcontact entity provides a way to interact with the relationships between Exhibitoraddress and Exhibitorcontact. A single Exhibitoraddress can have many Exhibitorcontacts and a single Exhibitorcontact can belong to many Exhibitoraddresses.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitoraddressId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitoraddress.</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"77b66915-f2c9-4fd0-ba10-ea4653c128b0","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorcontacttypes (v2)","item":[{"name":"List Exhibitorcontacttypes","id":"19640732-b2f6-40cf-a8df-3ef286abf0c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2","description":"<p>Retrieve a collection of Exhibitorcontacttypes records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacttypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"80ff0f8c-8aff-4a5e-8d84-7a9c089e7076","name":"List Exhibitorcontacttypes","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3876"},{"key":"ETag","value":"W/\"f24-eKYT5+zKlm2UXDE2okXK/761Rv8\""},{"key":"Date","value":"Wed, 18 Oct 2023 19:39:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"e9b1c38c-a25e-423f-be45-21c5794b90f3\",\n            \"eventId\": \"a493e58b-0e15-476a-bd67-eed0191198ba\",\n            \"producerRecordIdentifier\": \"61cf4692-ba76-4268-8bc3-06441b6c8b87\",\n            \"name\": \"Coordinator\",\n            \"createdAt\": \"2023-10-18T18:59:09.550Z\",\n            \"updatedAt\": \"2023-10-18T18:59:09.550Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/a493e58b-0e15-476a-bd67-eed0191198ba\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"eead761b-3bb9-445f-a614-f93fc4621976\",\n            \"eventId\": \"83d14ed8-3c40-4456-a42c-1546bb11c023\",\n            \"producerRecordIdentifier\": \"e40b064b-f933-4f73-8ad0-597f100abc99\",\n            \"name\": \"Main Contact\",\n            \"createdAt\": \"2023-10-18T18:59:09.575Z\",\n            \"updatedAt\": \"2023-10-18T18:59:09.575Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/83d14ed8-3c40-4456-a42c-1546bb11c023\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorcontacttypes/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"19640732-b2f6-40cf-a8df-3ef286abf0c9"},{"name":"Create an Exhibitorcontacttype","id":"95694f34-37cc-4602-bfd8-71ae53445b5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Sales Rep\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2","description":"<p>Create a new Exhibitorcontacttype record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacttypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"55554e71-bfec-42b2-b032-7462bde11320","name":"Create an Exhibitorcontacttype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Sales Rep\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"257"},{"key":"ETag","value":"W/\"101-v6kVjfJJn7MaQni+7jrLU0o66I8\""},{"key":"Date","value":"Wed, 18 Oct 2023 19:44:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0b040b1f-c0ae-4584-a161-79e9e8226113\",\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Sales Rep\",\n    \"updatedAt\": \"2023-10-18T19:44:30.133Z\",\n    \"createdAt\": \"2023-10-18T19:44:30.133Z\"\n}"}],"_postman_id":"95694f34-37cc-4602-bfd8-71ae53445b5f"},{"name":"Read an Exhibitorcontacttype","id":"b6fbda7d-133f-4725-a8d3-700888ec20bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2/:exhibitorcontacttypeId","description":"<p>Retrieve the single Exhibitorcontacttype record of the supplied Exhibitorcontacttype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>exhibitorcontacts</td>\n<td>exhibitorcontact-exhibitorcontacttype</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacttypes","v2",":exhibitorcontacttypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"8de09136-e4ad-4162-9037-e49dda739d8b","description":{"content":"<p>Example: 0b040b1f-c0ae-4584-a161-79e9e8226113</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontacttype ID here>","key":"exhibitorcontacttypeId"}]}},"response":[{"id":"9e53579f-469c-45d4-a9fa-e9e7cfdf7d91","name":"Read an Exhibitorcontacttype","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitorcontacttypes/v2/:exhibitorcontacttypesId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorcontacttypes","v2",":exhibitorcontacttypesId"],"variable":[{"key":"exhibitorcontacttypesId","value":"0b040b1f-c0ae-4584-a161-79e9e8226113"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"375"},{"key":"ETag","value":"W/\"177-SlPdJEFgx4SLz+pn5B8Dd5O6qlY\""},{"key":"Date","value":"Wed, 18 Oct 2023 19:47:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0b040b1f-c0ae-4584-a161-79e9e8226113\",\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"producerRecordIdentifier\": \"14aa3bc7-5032-4631-9e8d-0bf55e1addde\",\n    \"name\": \"Sales Rep\",\n    \"createdAt\": \"2023-10-18T19:44:30.133Z\",\n    \"updatedAt\": \"2023-10-18T19:44:30.133Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/54991bae-9f32-44e0-9822-92b87c1a7be6\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"0f71c1c0-1c25-4196-ba21-d3e9a5600b4a","name":"Read an Exhibitorcontacttype with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2/:exhibitorcontacttypeId?include=events, exhibitorcontacts","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontacttypes","v2",":exhibitorcontacttypeId"],"query":[{"key":"include","value":"events, exhibitorcontacts","type":"text"}],"variable":[{"key":"exhibitorcontacttypeId","value":"eead761b-3bb9-445f-a614-f93fc4621976","description":"Example: 0b040b1f-c0ae-4584-a161-79e9e8226113"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2764"},{"key":"ETag","value":"W/\"acc-v7DlxTo+G9lk0DQmD66eqGJSpfI\""},{"key":"Date","value":"Mon, 17 Jun 2024 18:59:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"eead761b-3bb9-445f-a614-f93fc4621976\",\n    \"eventId\": \"83d14ed8-3c40-4456-a42c-1546bb11c023\",\n    \"producerRecordIdentifier\": \"ww90d\",\n    \"name\": \"2mX0W illo sit sed\",\n    \"createdAt\": \"2023-10-18T18:59:09.575Z\",\n    \"updatedAt\": \"2023-10-18T18:59:09.575Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"83d14ed8-3c40-4456-a42c-1546bb11c023\",\n                \"shortName\": \"Unbranded Books Technical Seminar 2026\",\n                \"fullName\": \"Ergonomic Rustic Granite Bike Beauty Technical Seminar 2026\",\n                \"systemName\": \"unbrandedbookstechnicalseminar2026-6beb\",\n                \"website\": null,\n                \"description\": \"Synergized holistic concept mesh e-business lifetime value\",\n                \"startsAt\": \"2023-10-18T18:59:09.560Z\",\n                \"endsAt\": \"2023-10-19T18:59:09.550Z\",\n                \"timezoneOffsetInMinutes\": -354,\n                \"freemanJobIdentifier\": \"0x51c2A54F\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-10-18T18:59:09.560Z\",\n                \"updatedAt\": \"2023-10-18T18:59:09.561Z\",\n                \"organizationId\": \"d6ea16d2-f6f5-400c-b3b4-daac0739d60d\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorcontacts\": {\n        \"collection\": [\n            {\n                \"id\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n                \"firstName\": \"Kaleb\",\n                \"lastName\": \"Nasi\",\n                \"email\": \"knasi0@xrea.com\",\n                \"isPrimary\": true,\n                \"emailTwo\": \"jtorfinc@illinois.edu\",\n                \"middleName\": null,\n                \"title\": \"Senior Quality Engineer\",\n                \"prefix\": \"Dr.\",\n                \"suffix\": \"III\",\n                \"faxNumber\": \"644-535-5800\",\n                \"mobileNumber\": \"737-432-0648\",\n                \"otherPhoneNumber\": \"327-599-7760\",\n                \"phoneNumber\": null,\n                \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n                \"customAttributes\": {\n                    \"location\": \"USA\"\n                },\n                \"createdAt\": \"2024-06-13T17:52:44.377Z\",\n                \"updatedAt\": \"2024-06-13T17:52:44.377Z\",\n                \"exhibitorcontact-exhibitorcontacttype\": [\n                    {\n                        \"id\": \"6940787e-aa11-43ab-ab70-d97780760b5a\",\n                        \"exhibitorcontactId\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n                        \"exhibitorcontacttypeId\": \"eead761b-3bb9-445f-a614-f93fc4621976\",\n                        \"createdAt\": \"2024-06-13T18:43:03.135Z\",\n                        \"updatedAt\": \"2024-06-13T18:43:03.135Z\"\n                    }\n                ]\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/83d14ed8-3c40-4456-a42c-1546bb11c023\"\n            }\n        },\n        \"children\": {\n            \"exhibitorcontact-exhibitorcontacttype\": {\n                \"href\": \"/exhibitorcontact-exhibitorcontacttype/v2?filter[exhibitorcontacttypeId][eq]=eead761b-3bb9-445f-a614-f93fc4621976\"\n            }\n        },\n        \"siblings\": {\n            \"exhibitorcontacts\": {\n                \"href\": \"/exhibitorcontacts/v2?filter[exhibitorcontacttypeId][eq]=eead761b-3bb9-445f-a614-f93fc4621976\"\n            }\n        }\n    }\n}"}],"_postman_id":"b6fbda7d-133f-4725-a8d3-700888ec20bb"},{"name":"Update an Exhibitorcontacttype","id":"0d549b89-96c8-4d7c-8dd5-86ff69cb957d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"deef406b-932a-4cab-9ad1-5d885fb8c55a\",\n    \"name\": \"Marketing Manager\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2/:exhibitorcontacttypeId","description":"<p>Modify one or more fields on the single Exhibitorcontacttype record of the supplied Exhibitorcontacttype ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacttypes","v2",":exhibitorcontacttypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"1e939e5b-a1eb-47e8-b95d-56fb9854ad47","description":{"content":"<p>Example: 0b040b1f-c0ae-4584-a161-79e9e8226113</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontacttype ID here>","key":"exhibitorcontacttypeId"}]}},"response":[{"id":"742a608f-f14e-4e83-b121-607664159c96","name":"Update an Exhibitorcontacttype","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"deef406b-932a-4cab-9ad1-5d885fb8c55a\",\n    \"name\": \"Marketing Manager\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/exhibitorcontacttypes/v2/:exhibitorcontacttypeseId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorcontacttypes","v2",":exhibitorcontacttypeseId"],"variable":[{"key":"exhibitorcontacttypeseId","value":"0b040b1f-c0ae-4584-a161-79e9e8226113"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"265"},{"key":"ETag","value":"W/\"109-RfOZI0vCm9mDcIodStPQTHZYMU4\""},{"key":"Date","value":"Wed, 18 Oct 2023 19:51:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0b040b1f-c0ae-4584-a161-79e9e8226113\",\n    \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n    \"producerRecordIdentifier\": \"deef406b-932a-4cab-9ad1-5d885fb8c55a\",\n    \"name\": \"Marketing Manager\",\n    \"createdAt\": \"2023-10-18T19:44:30.133Z\",\n    \"updatedAt\": \"2023-10-18T19:51:34.502Z\"\n}"}],"_postman_id":"0d549b89-96c8-4d7c-8dd5-86ff69cb957d"},{"name":"Destroy an Exhibitorcontacttype","id":"60a797fb-c1c7-49fc-92f7-212ba225a131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontacttypes/v2/:exhibitorcontacttypeId","description":"<p>Permanently delete the Exhibitorcontacttype record of the supplied Exhibitorcontacttype ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontacttypes","v2",":exhibitorcontacttypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"90cb8214-ed42-49a6-a7d9-c222b332247f","description":{"content":"<p>Example: 25e3bf2f-988e-4415-9713-6526b2f5bb27</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontacttype ID here>","key":"exhibitorcontacttypeId"}]}},"response":[{"id":"d70c98bb-3976-4dd1-83fa-9475a0029501","name":"Destroy an Exhibitorcontacttype","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/exhibitorcontacttypes/v2/:exhibitorcontacttypesId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorcontacttypes","v2",":exhibitorcontacttypesId"],"variable":[{"key":"exhibitorcontacttypesId","value":"25e3bf2f-988e-4415-9713-6526b2f5bb27"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"243"},{"key":"ETag","value":"W/\"f3-GqY5Z3bjab13tfpWrJA/qcuvm8Q\""},{"key":"Date","value":"Wed, 18 Oct 2023 19:55:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"25e3bf2f-988e-4415-9713-6526b2f5bb27\",\n    \"eventId\": \"d3633578-4b88-4725-a781-ffab4441f722\",\n    \"producerRecordIdentifier\": \"2ddee9b5-4f7b-4ce1-a675-db626c54187f\",\n    \"name\": \"Finance Rep\",\n    \"createdAt\": \"2023-10-18T18:59:09.764Z\",\n    \"updatedAt\": \"2023-10-18T18:59:09.764Z\"\n}"}],"_postman_id":"60a797fb-c1c7-49fc-92f7-212ba225a131"}],"id":"ea01c25a-cfd2-48ae-a891-83f147b08319","description":"<p>Exhibitorcontacttypes typically refer to the various roles or categories of exhibitor contacts. Contact types are event and producer defined, typically they can be defined as, exhibitor representatives, marketing, sales, accounting, primary, etc..</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The name of the exhibitor contact type.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 iso formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 iso formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ea01c25a-cfd2-48ae-a891-83f147b08319","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorcontact-Exhibitorcontacttype (v2)","item":[{"name":"List Exhibitorcontact-Exhibitorcontacttype relationships","id":"e49e467b-3dab-4de6-8c34-fd956d9952c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2","description":"<p>Retrieve a collection of Exhibitorcontact-Exhibitorcontacttype relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorcontacttypeId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-exhibitorcontacttype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"cdc29798-3bde-4b6d-aa19-2152139d5549","name":"List Exhibitorcontact-Exhibitorcontacttype relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5139"},{"key":"ETag","value":"W/\"1413-iC3izpFdUw9FGvIOp9KDdzhnzrg\""},{"key":"Date","value":"Fri, 03 Nov 2023 18:22:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"dc908463-89e8-4af4-840e-c3b46f87276c\",\n            \"exhibitorcontactId\": \"e169aa7b-a21e-4189-a29d-132ff2f2c54d\",\n            \"exhibitorcontacttypeId\": \"ee37e391-45b6-44a0-997d-a14996afc797\",\n            \"createdAt\": \"2023-11-03T17:48:27.713Z\",\n            \"updatedAt\": \"2023-11-03T17:48:27.713Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorcontact\": {\n                        \"href\": \"/exhibitorcontacts/v2/e169aa7b-a21e-4189-a29d-132ff2f2c54d\"\n                    },\n                    \"exhibitorcontacttype\": {\n                        \"href\": \"/exhibitorcontacttypes/v2/ee37e391-45b6-44a0-997d-a14996afc797\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"106b8ef5-9450-497d-9b44-9e0afed50214\",\n            \"exhibitorcontactId\": \"1f1b3bf7-f3da-4696-995a-b266f3b842c4\",\n            \"exhibitorcontacttypeId\": \"5c09f504-92b2-40ff-8732-785b0c1f3486\",\n            \"createdAt\": \"2023-11-03T17:48:27.775Z\",\n            \"updatedAt\": \"2023-11-03T17:48:27.775Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorcontact\": {\n                        \"href\": \"/exhibitorcontacts/v2/1f1b3bf7-f3da-4696-995a-b266f3b842c4\"\n                    },\n                    \"exhibitorcontacttype\": {\n                        \"href\": \"/exhibitorcontacttypes/v2/5c09f504-92b2-40ff-8732-785b0c1f3486\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorcontact-exhibitorcontacttype/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"e49e467b-3dab-4de6-8c34-fd956d9952c5"},{"name":"Create an Exhibitorcontact-Exhibitorcontacttype relationship","id":"3da8058d-d1a6-43d2-a0b5-d5c6d61d169d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"exhibitorcontacttypeId\": \"e9b1c38c-a25e-423f-be45-21c5794b90f3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2","description":"<p>Create a new Exhibitorcontact-Exhibitorcontacttype relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorcontactId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>exhibitorcontacttypeId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorcontacttype.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorcontactId</code> and <code>exhibitorcontacttypeId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-exhibitorcontacttype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"d7a85635-3ef1-4903-a269-6aa7bde1c683","name":"Create an Exhibitorcontact-Exhibitorcontacttype relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"exhibitorcontacttypeId\": \"e9b1c38c-a25e-423f-be45-21c5794b90f3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"247"},{"key":"ETag","value":"W/\"f7-j5dG9sm7r/q8vgt9Kmzorcr/Qr8\""},{"key":"Date","value":"Fri, 03 Nov 2023 18:32:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ddb2ae56-d5cc-4944-9cc0-1ea35687e1a7\",\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"exhibitorcontacttypeId\": \"e9b1c38c-a25e-423f-be45-21c5794b90f3\",\n    \"updatedAt\": \"2023-11-03T18:32:24.458Z\",\n    \"createdAt\": \"2023-11-03T18:32:24.458Z\"\n}"}],"_postman_id":"3da8058d-d1a6-43d2-a0b5-d5c6d61d169d"},{"name":"Read an Exhibitorcontact-Exhibitorcontacttype relationship","id":"6007a066-b523-4f7c-9d1b-d245636cc89b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2/:id","description":"<p>Retrieve the single Exhibitorcontact-Exhibitorcontacttype relationship record of the supplied Exhibitorcontact-Exhibitorcontacttype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorcontacts</td>\n<td>exhibitorcontacttypes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-exhibitorcontacttype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"b44e184f-25cb-4148-9187-b7f52658826c","description":{"content":"<p>Example: ddb2ae56-d5cc-4944-9cc0-1ea35687e1a7</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontact-Exhibitorcontacttype ID here>","key":"id"}]}},"response":[{"id":"f38783a0-a1b0-4c9d-8a6b-003b595fede4","name":"Read an Exhibitorcontact-Exhibitorcontacttype relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontact-exhibitorcontacttype","v2",":id"],"variable":[{"key":"id","value":"ddb2ae56-d5cc-4944-9cc0-1ea35687e1a7","description":"Example: ddb2ae56-d5cc-4944-9cc0-1ea35687e1a7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"484"},{"key":"ETag","value":"W/\"1e4-QQjOniUP2eiJTb2BugJpOYUENHI\""},{"key":"Date","value":"Fri, 03 Nov 2023 18:34:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ddb2ae56-d5cc-4944-9cc0-1ea35687e1a7\",\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"exhibitorcontacttypeId\": \"e9b1c38c-a25e-423f-be45-21c5794b90f3\",\n    \"createdAt\": \"2023-11-03T18:32:24.458Z\",\n    \"updatedAt\": \"2023-11-03T18:32:24.458Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorcontact\": {\n                \"href\": \"/exhibitorcontacts/v2/ba9fa44b-449b-4966-bede-a7f16dae61e3\"\n            },\n            \"exhibitorcontacttype\": {\n                \"href\": \"/exhibitorcontacttypes/v2/e9b1c38c-a25e-423f-be45-21c5794b90f3\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"6afb8b46-3284-4f10-b328-0c0f3dcfde26","name":"Read an Exhibitorcontact-Exhibitorcontacttype relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2/:id?include=exhibitorcontacts,exhibitorcontacttypes","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontact-exhibitorcontacttype","v2",":id"],"query":[{"key":"include","value":"exhibitorcontacts,exhibitorcontacttypes","type":"text"}],"variable":[{"key":"id","value":"6940787e-aa11-43ab-ab70-d97780760b5a","description":"Example: ddb2ae56-d5cc-4944-9cc0-1ea35687e1a7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1958"},{"key":"ETag","value":"W/\"7a6-7OponwIHO/hrrrIe/uZfKsC3CAA\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:01:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6940787e-aa11-43ab-ab70-d97780760b5a\",\n    \"exhibitorcontactId\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n    \"exhibitorcontacttypeId\": \"eead761b-3bb9-445f-a614-f93fc4621976\",\n    \"createdAt\": \"2024-06-13T18:43:03.135Z\",\n    \"updatedAt\": \"2024-06-13T18:43:03.135Z\",\n    \"exhibitorcontacts\": {\n        \"collection\": [\n            {\n                \"id\": \"01f97f77-8eaf-4ce3-abfb-11ea9e902485\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n                \"firstName\": \"Kaleb\",\n                \"lastName\": \"Nasi\",\n                \"email\": \"knasi0@xrea.com\",\n                \"isPrimary\": true,\n                \"emailTwo\": \"jtorfinc@illinois.edu\",\n                \"middleName\": null,\n                \"title\": \"Senior Quality Engineer\",\n                \"prefix\": \"Dr.\",\n                \"suffix\": \"III\",\n                \"faxNumber\": \"644-535-5800\",\n                \"mobileNumber\": \"737-432-0648\",\n                \"otherPhoneNumber\": \"327-599-7760\",\n                \"phoneNumber\": null,\n                \"website\": \"https://huffingtonpost.com/maecenas/ut/massa/quis/augue.json?posuere=tellus&cubilia=nulla&curae=ut&mauris=erat&viverra=id&diam=mauris&vitae=vulputate&quam=elementum&suspendisse=nullam\",\n                \"customAttributes\": {\n                    \"location\": \"USA\"\n                },\n                \"createdAt\": \"2024-06-13T17:52:44.377Z\",\n                \"updatedAt\": \"2024-06-13T17:52:44.377Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorcontacttypes\": {\n        \"collection\": [\n            {\n                \"id\": \"eead761b-3bb9-445f-a614-f93fc4621976\",\n                \"eventId\": \"83d14ed8-3c40-4456-a42c-1546bb11c023\",\n                \"producerRecordIdentifier\": \"ww90d\",\n                \"name\": \"2mX0W illo sit sed\",\n                \"createdAt\": \"2023-10-18T18:59:09.575Z\",\n                \"updatedAt\": \"2023-10-18T18:59:09.575Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorcontact\": {\n                \"href\": \"/exhibitorcontacts/v2/01f97f77-8eaf-4ce3-abfb-11ea9e902485\"\n            },\n            \"exhibitorcontacttype\": {\n                \"href\": \"/exhibitorcontacttypes/v2/eead761b-3bb9-445f-a614-f93fc4621976\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"6007a066-b523-4f7c-9d1b-d245636cc89b"},{"name":"Delete an Exhibitorcontact-Exhibitorcontacttype relationship","id":"242e1114-f228-4ddc-aa0f-054efe6f3748","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2/:id","description":"<p>Permanently delete the Exhibitorcontact-Exhibitorcontacttype relationship record of the supplied Exhibitorcontact-Exhibitorcontacttype ID. Destroying a relationship record will not destroy the supplied Exhibitorcontact or the supplied Exhibitorcontacttype, it will instead cause the supplied Exhibitorcontact and Exhibitorcontacttype to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-exhibitorcontacttype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"b602d808-cc20-4eaa-95c1-922331ff8a62","description":{"content":"<p>Example: 4ef112ed-3879-4af2-b274-b3db91596922</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontact-Exhibitorcontacttype ID here>","key":"id"}]}},"response":[{"id":"aa89c15f-7a39-429b-9b9e-62a8c3b56f62","name":"Delete an Exhibitorcontact-Exhibitorcontacttype relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-exhibitorcontacttype/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontact-exhibitorcontacttype","v2",":id"],"variable":[{"key":"id","value":"4ef112ed-3879-4af2-b274-b3db91596922","description":"Example: 4ef112ed-3879-4af2-b274-b3db91596922"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"247"},{"key":"ETag","value":"W/\"f7-FcJFGO5/jzBqnyjxcxOMQNhJOaw\""},{"key":"Date","value":"Fri, 03 Nov 2023 18:36:54 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4ef112ed-3879-4af2-b274-b3db91596922\",\n    \"exhibitorcontactId\": \"47181aea-2b45-48e6-aed3-8c57e9ee97a6\",\n    \"exhibitorcontacttypeId\": \"3103cac5-51fd-4e94-8586-737c35cdc6b7\",\n    \"createdAt\": \"2023-11-03T17:48:28.127Z\",\n    \"updatedAt\": \"2023-11-03T17:48:28.127Z\"\n}"}],"_postman_id":"242e1114-f228-4ddc-aa0f-054efe6f3748"}],"id":"7106b5a8-8de8-486e-93d2-5beeb8bbec35","description":"<p>The Exhibitorcontact-Exhibitorcontacttype entity provides a way to interact with the relationships between Exhibitorcontact and Exhibitorcontacttype. A single Exhibitorcontact can have many Exhibitorcontacttypes and a single Exhibitorcontacttype can belong to many Exhibitorcontacts.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>exhibitorcontacttypeId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorcontacttype.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7106b5a8-8de8-486e-93d2-5beeb8bbec35","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorcontact-Socialmediatype(v2)","item":[{"name":"List Exhibitorcontact-Socialmediatype relationships","id":"83179543-d976-4eb6-b69b-906373e0e351","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2","description":"<p>Retrieve a collection of Exhibitorcontact-Socialmediatype relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>handle</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-socialmediatype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"556909d8-0c32-4609-8f4b-1f2aa37384d2","name":"List Registration-Socialmediatype relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5313"},{"key":"ETag","value":"W/\"14c1-gpecz3CxwOuNvaelHijXLxyFlGI\""},{"key":"Date","value":"Wed, 01 Nov 2023 17:14:44 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"a8c375e5-d0f7-488d-9412-0ffbf87eee34\",\n            \"exhibitorcontactId\": \"10756375-3ed3-4307-908e-f0bc95ec4839\",\n            \"socialmediatypeId\": \"26524ca0-d189-4887-bf1e-250914ba8320\",\n            \"handle\": \"Stanton-James-Kilback\",\n            \"createdAt\": \"2023-11-01T17:00:56.144Z\",\n            \"updatedAt\": \"2023-11-01T17:00:56.144Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorcontact\": {\n                        \"href\": \"/exhibitorcontacts/v2/10756375-3ed3-4307-908e-f0bc95ec4839\"\n                    },\n                    \"socialmediatype\": {\n                        \"href\": \"/socialmediatypes/v2/26524ca0-d189-4887-bf1e-250914ba8320\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"553f97ea-575c-43df-b315-a60f38b65d39\",\n            \"exhibitorcontactId\": \"79e2b2ae-1327-4909-b634-a0cfc8d23e79\",\n            \"socialmediatypeId\": \"8f38a6b6-17cf-4e45-8f6c-0dc9d7790a4c\",\n            \"handle\": \"Abbie-Kennedy-Paucek\",\n            \"createdAt\": \"2023-11-01T17:00:56.187Z\",\n            \"updatedAt\": \"2023-11-01T17:00:56.187Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorcontact\": {\n                        \"href\": \"/exhibitorcontacts/v2/79e2b2ae-1327-4909-b634-a0cfc8d23e79\"\n                    },\n                    \"socialmediatype\": {\n                        \"href\": \"/socialmediatypes/v2/8f38a6b6-17cf-4e45-8f6c-0dc9d7790a4c\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorcontact-socialmediatype/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"83179543-d976-4eb6-b69b-906373e0e351"},{"name":"Create an Exhibitorcontact-Socialmediatype relationship","id":"b61ba1eb-b3b3-4b5e-a9ca-47078f1bef12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@joeelliottblick\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2","description":"<p>Create a new Exhibitorcontact-Socialmediatype relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorcontactId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Socialmediatype.</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorcontactId</code>, <code>socialmediatypeId</code> and <code>handle</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-socialmediatype","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"edc7b37c-00e5-41ea-ab1c-f78d05d41795","name":"Create a Exhibitorcontact-Socialmediatype relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@joeelliottblick\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"270"},{"key":"ETag","value":"W/\"10e-/SkyFoZFmIXpwl4kEVnJzDn5ikU\""},{"key":"Date","value":"Wed, 01 Nov 2023 17:21:45 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"15064d13-d98d-4214-abf8-94c22e8bc11c\",\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@joeelliottblick\",\n    \"updatedAt\": \"2023-11-01T17:21:45.254Z\",\n    \"createdAt\": \"2023-11-01T17:21:45.254Z\"\n}"}],"_postman_id":"b61ba1eb-b3b3-4b5e-a9ca-47078f1bef12"},{"name":"Read an Exhibitorcontact-Socialmediatype relationship","id":"9bbc7cb8-5398-45c1-bc9a-94b566b9309f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2/:id","description":"<p>Retrieve the single Exhibitorcontact-Socialmediatype relationship record of the supplied Exhibitorcontact-Socialmediatype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorcontacts</td>\n<td>socialmediatypes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-socialmediatype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"24818e98-5553-4505-bcba-129030e2c835","description":{"content":"<p>Example: 1fdba411-e7be-4e33-8a58-b6ddb9d61eb4</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontact-Socialmediatype ID here>","key":"id"}]}},"response":[{"id":"e025586a-8abd-4f14-ab6b-adb0495d44a7","name":"Read a Exhibitorcontact-Socialmediatype relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontact-socialmediatype","v2",":id"],"variable":[{"key":"id","value":"1fdba411-e7be-4e33-8a58-b6ddb9d61eb4","description":"Example: 1fdba411-e7be-4e33-8a58-b6ddb9d61eb4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"494"},{"key":"ETag","value":"W/\"1ee-n+gjstZya8nUjwm53C9H5WWkgKc\""},{"key":"Date","value":"Wed, 01 Nov 2023 17:24:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1fdba411-e7be-4e33-8a58-b6ddb9d61eb4\",\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@tommiecassin\",\n    \"createdAt\": \"2023-11-01T17:20:29.191Z\",\n    \"updatedAt\": \"2023-11-01T17:20:29.191Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorcontact\": {\n                \"href\": \"/exhibitorcontacts/v2/ba9fa44b-449b-4966-bede-a7f16dae61e3\"\n            },\n            \"socialmediatype\": {\n                \"href\": \"/socialmediatypes/v2/fafdbe9e-f6eb-446b-a4ed-145f33e21b42\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"9ac3ad09-8b3c-4c15-92cd-910c17138776","name":"Read an Exhibitorcontact-Socialmediatype relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2/:id?include=exhibitorcontacts,socialmediatypes","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontact-socialmediatype","v2",":id"],"query":[{"key":"include","value":"exhibitorcontacts,socialmediatypes","type":"text"}],"variable":[{"key":"id","value":"553f97ea-575c-43df-b315-a60f38b65d39","description":"Example: 1fdba411-e7be-4e33-8a58-b6ddb9d61eb4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1770"},{"key":"ETag","value":"W/\"6ea-F31yWIwnHxAoOXOaM5fykybDDTM\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:03:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"553f97ea-575c-43df-b315-a60f38b65d39\",\n    \"exhibitorcontactId\": \"79e2b2ae-1327-4909-b634-a0cfc8d23e79\",\n    \"socialmediatypeId\": \"8f38a6b6-17cf-4e45-8f6c-0dc9d7790a4c\",\n    \"handle\": \"Abbie-Kennedy-Paucek\",\n    \"createdAt\": \"2023-11-01T17:00:56.187Z\",\n    \"updatedAt\": \"2023-11-01T17:00:56.187Z\",\n    \"exhibitorcontacts\": {\n        \"collection\": [\n            {\n                \"id\": \"79e2b2ae-1327-4909-b634-a0cfc8d23e79\",\n                \"eventId\": \"ecdbcf49-61d2-46e8-a31c-c45b69b3aabc\",\n                \"exhibitorId\": null,\n                \"producerRecordIdentifier\": \"sSytE\",\n                \"firstName\": \"Abbie\",\n                \"lastName\": \"Paucek\",\n                \"email\": \"Salma.Roberts@hotmail.com\",\n                \"isPrimary\": false,\n                \"emailTwo\": \"Elyssa_Toy87@hotmail.com\",\n                \"middleName\": \"Kennedy\",\n                \"title\": \"Engineer\",\n                \"prefix\": \"Mr.\",\n                \"suffix\": \"V\",\n                \"faxNumber\": \"(823) 421-4016 x346\",\n                \"mobileNumber\": \"346.344.7010 x0194\",\n                \"otherPhoneNumber\": \"(652) 437-6543 x97711\",\n                \"phoneNumber\": \"1-280-702-6519 x85626\",\n                \"website\": \"https://discrete-vernacular.net/\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Romania\\\"}\",\n                \"createdAt\": \"2023-11-01T17:00:56.168Z\",\n                \"updatedAt\": \"2023-11-01T17:00:56.168Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"socialmediatypes\": {\n        \"collection\": [\n            {\n                \"id\": \"8f38a6b6-17cf-4e45-8f6c-0dc9d7790a4c\",\n                \"name\": \"Twitter aeaoesodhtklnmokpqsubdmjecex\",\n                \"domain\": \"arctic-fund.net\",\n                \"createdAt\": \"2023-11-01T17:00:56.178Z\",\n                \"updatedAt\": \"2023-11-01T17:00:56.178Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorcontact\": {\n                \"href\": \"/exhibitorcontacts/v2/79e2b2ae-1327-4909-b634-a0cfc8d23e79\"\n            },\n            \"socialmediatype\": {\n                \"href\": \"/socialmediatypes/v2/8f38a6b6-17cf-4e45-8f6c-0dc9d7790a4c\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"9bbc7cb8-5398-45c1-bc9a-94b566b9309f"},{"name":"Delete an Exhibitorcontact-Socialmediatype relationship","id":"bcf2b3f8-638e-4ec3-abc2-1f86230b4e5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2/:id","description":"<p>Permanently delete the Exhibitorcontact-Socialmediatype relationship record of the supplied Exhibitorcontact-Socialmediatype ID. Destroying a relationship record will not destroy the supplied Exhibitorcontact or the supplied Socialmediatype, it will instead cause the supplied Exhibitorcontact and Socialmediatype to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcontact-socialmediatype","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"1b65e455-9b30-4f48-bd26-d44d048f2aa4","description":{"content":"<p>Example: 2b735c4a-d5a4-47c2-b9c9-ff51896a7a2e</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcontact-Socialmediatype ID here>","key":"id"}]}},"response":[{"id":"cbdaf98b-6ff1-49f0-8be1-252d9951805b","name":"Delete a Exhibitorcontact-Socialmediatype relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcontact-socialmediatype/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcontact-socialmediatype","v2",":id"],"variable":[{"key":"id","value":"15064d13-d98d-4214-abf8-94c22e8bc11c","description":"Example: 2b735c4a-d5a4-47c2-b9c9-ff51896a7a2e"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"270"},{"key":"ETag","value":"W/\"10e-GGG3lLWmMLgdLx/TUW1E48G9eIs\""},{"key":"Date","value":"Wed, 01 Nov 2023 17:27:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"15064d13-d98d-4214-abf8-94c22e8bc11c\",\n    \"exhibitorcontactId\": \"ba9fa44b-449b-4966-bede-a7f16dae61e3\",\n    \"socialmediatypeId\": \"fafdbe9e-f6eb-446b-a4ed-145f33e21b42\",\n    \"handle\": \"@joeelliottblick\",\n    \"createdAt\": \"2023-11-01T17:21:45.254Z\",\n    \"updatedAt\": \"2023-11-01T17:21:45.254Z\"\n}"}],"_postman_id":"bcf2b3f8-638e-4ec3-abc2-1f86230b4e5d"}],"id":"0ebf9698-e1a7-4ca7-99f8-2f3686edb3a5","description":"<p>The Exhibitorcontact-Socialmediatype entity provides a way to interact with the relationships between Exhibitorcontact and Socialmediatype. A single Exhibitorcontact can have many Socialmediatypes and a single Socialmediatype can belong to many Exhibitorcontacts.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorcontactId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorcontact.</td>\n</tr>\n<tr>\n<td>socialmediatypeId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Socialmediatype.</td>\n</tr>\n<tr>\n<td>handle</td>\n<td>String</td>\n<td>The social media handle for the social media platform for the exhibitor.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0ebf9698-e1a7-4ca7-99f8-2f3686edb3a5","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Booths (v2)","item":[{"name":"List Booths","id":"50afe6cb-22d7-4d39-a315-d40fe4c514f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/booths/v2","description":"<p>Retrieve a collection of Booth records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>boothtypeId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>number</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>assignedHall</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>assignedPavillion</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>unitOfMeasurement</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>width</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>depth</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>area</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>revenue</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>targetMoveInAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>targetMoveOutAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>number</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>assignedHall</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>assignedPavillion</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>unitOfMeasurement</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>width</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>depth</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>area</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>revenue</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>targetMoveInAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>targetMoveOutAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booths","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"90b2bc5f-0352-445c-a7f3-2a70fa6cb659","name":"List Booths","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5050/booths/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"7694"},{"key":"ETag","value":"W/\"1e0e-3Kjvlxq+iBra1E11MuAcmdltoDo\""},{"key":"Date","value":"Thu, 12 Oct 2023 14:39:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"3d4c40ac-df75-46a7-b3b8-fb38922d8b49\",\n            \"eventId\": \"5221e36d-be3f-4b6f-9315-0e35de514e9d\",\n            \"boothtypeId\": \"2e98fd8e-360a-442f-97a4-1fa49a5351a1\",\n            \"producerRecordIdentifier\": \"38f9bbff-2cbb-47c5-8bed-c5a2c0148238\",\n            \"name\": \"Jamia\",\n            \"number\": \"509\",\n            \"description\": \"Implemented optimizing knowledge user matrix revolutionary action-items\",\n            \"assignedHall\": \"Hall B\",\n            \"assignedPavillion\": \"Up and Coming\",\n            \"displayName\": \"Jamia and Co.\",\n            \"unitOfMeasurement\": \"Feet\",\n            \"width\": 10.00,\n            \"depth\": 10.00,\n            \"area\": 100.00,\n            \"revenue\": 192,\n            \"currencyCode\": \"MUR\",\n            \"customAttributes\": {\n                \"name\": \"Aleix Melon\",\n                \"id\": \"E00245\"\n            },\n            \"targetMoveInAt\": \"2023-10-06T17:56:02.413Z\",\n            \"targetMoveOutAt\": \"2023-10-09T17:56:02.190Z\",\n            \"createdAt\": \"2023-10-06T17:56:02.413Z\",\n            \"updatedAt\": \"2023-10-06T17:56:02.413Z\",\n            \"_links\": {\n                \"parents\": {\n                     \"event\": {\n                        \"href\": \"/events/v2/5221e36d-be3f-4b6f-9315-0e35de514e9d\"\n                    },\n                    \"boothtype\": {\n                        \"href\": \"/boothtypes/v2/2e98fd8e-360a-442f-97a4-1fa49a5351a1\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"02eba438-748b-47d3-8e11-7c13cb6dd842\",\n            \"eventId\": \"73999bb1-9801-4d5a-887f-94cff3f2b61e\",\n            \"boothtypeId\": \"2e98fd8e-360a-442f-97a4-1fa49a5351a1\",\n            \"producerRecordIdentifier\": \"5aef7aa7-20c4-4ad2-8a0f-f79829ea0a8d\",\n            \"name\": \"Fadeo\",\n            \"number\": \"1664\",\n            \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains\",\n            \"assignedHall\": \"Hall C\",\n            \"assignedPavillion\": \"Technical\",\n            \"displayName\": \"Fadeo 2.0\",\n            \"unitOfMeasurement\": \"Feet\",\n            \"width\": 10.00,\n            \"depth\": 10.00,\n            \"area\": 100.00,\n            \"revenue\": 125,\n            \"currencyCode\": \"SLL\",\n            \"customAttributes\": null,\n            \"targetMoveInAt\": \"2023-10-06T17:56:02.436Z\",\n            \"targetMoveOutAt\": \"2023-10-09T17:56:02.413Z\",\n            \"createdAt\": \"2023-10-06T17:56:02.436Z\",\n            \"updatedAt\": \"2023-10-06T17:56:02.436Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/73999bb1-9801-4d5a-887f-94cff3f2b61e\"\n                    },\n                    \"boothtype\": {\n                        \"href\": \"/boothtypes/v2/2e98fd8e-360a-442f-97a4-1fa49a5351a1\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/booths/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"50afe6cb-22d7-4d39-a315-d40fe4c514f7"},{"name":"Create a Booth","id":"bd7bda5b-d50e-4606-9d57-d2482046b5de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"817e55b1-a617-4560-a5ce-f5f9cc3b9af5\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"ce4da7d7-3ea7-4504-8c26-a2d3f714cb39\",\n    \"name\": \"Twiyo.\",\n    \"number\": \"167\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall C\",\n    \"assignedPavillion\": \"Up and Coming\",\n    \"displayName\": \"Twiyo\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10.00,\n    \"depth\": 10.00,\n    \"area\": 100.00,\n    \"revenue\": 597.00,\n    \"currencyCode\": \"CRC\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-17T12:19:57.062Z\",\n    \"targetMoveOutAt\": \"2023-10-17T12:19:57.062Z\"  \n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/booths/v2","description":"<p>Create a new Booth record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>boothtypeId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of the existing Boothtype.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>assignedHall</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>assignedPavillion</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>unitOfMeasurement</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: Meter, Feet.</td>\n</tr>\n<tr>\n<td>width</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>depth</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>area</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>revenue</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes\">ISO 4217 currency codes.</a></td>\n</tr>\n<tr>\n<td>targetMoveInAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>targetMoveOutAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li><p>The combination of <code>eventId</code> and <code>name</code> must be unique.</p>\n</li>\n<li><p>If <code>revenue</code> is being provided, <code>currencyCode</code> must be provided.</p>\n</li>\n<li><p>If <code>currencyCode</code> is being provided, <code>revenue</code> must be provided.</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booths","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"24dc75c5-3533-4a49-b623-d4b1d9aad88a","name":"Create a Booth","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"817e55b1-a617-4560-a5ce-f5f9cc3b9af5\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"ce4da7d7-3ea7-4504-8c26-a2d3f714cb39\",\n    \"name\": \"Twiyo.\",\n    \"number\": \"167\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall C\",\n    \"assignedPavillion\": \"Up and Coming\",\n    \"displayName\": \"Twiyo\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10.00,\n    \"depth\": 10.00,\n    \"area\": 100.00,\n    \"revenue\": 597.00,\n    \"currencyCode\": \"CRC\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-17T12:19:57.062Z\",\n    \"targetMoveOutAt\": \"2023-10-17T12:19:57.062Z\"  \n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/booths/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"610"},{"key":"ETag","value":"W/\"262-i06D5Tnxtfhyrt3cp/SBJCZ7u2A\""},{"key":"Date","value":"Tue, 17 Oct 2023 18:33:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e4408ffd-79c4-443e-a8b1-9e07af38af94\",\n    \"eventId\": \"817e55b1-a617-4560-a5ce-f5f9cc3b9af5\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"ce4da7d7-3ea7-4504-8c26-a2d3f714cb39\",\n    \"name\": \"Twiyo.\",\n    \"number\": \"167\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall C\",\n    \"assignedPavillion\": \"Up and Coming\",\n    \"displayName\": \"Twiyo\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10,\n    \"depth\": 10,\n    \"area\": 100,\n    \"revenue\": 597,\n    \"currencyCode\": \"CRC\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-17T12:19:57.062Z\",\n    \"targetMoveOutAt\": \"2023-10-17T12:19:57.062Z\",\n    \"updatedAt\": \"2023-10-17T18:33:46.649Z\",\n    \"createdAt\": \"2023-10-17T18:33:46.649Z\"\n}"}],"_postman_id":"bd7bda5b-d50e-4606-9d57-d2482046b5de"},{"name":"Read a Booth","id":"0033733f-6615-414c-ab6c-2fe31127720b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/booths/v2/:boothId","description":"<p>Retrieve the single Booth record of the supplied Booth ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>boothtypes</td>\n<td>booth-exhibitor</td>\n</tr>\n<tr>\n<td>exhibitors</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booths","v2",":boothId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"cc584c52-8bf9-413e-9395-57916fdae9e5","description":{"content":"<p>Example: 97909df7-39d4-4d59-8f7f-8d3e2eb3cae8</p>\n","type":"text/plain"},"type":"any","value":"<Enter Booth ID here>","key":"boothId"}]}},"response":[{"id":"576aec12-7aa0-4ee8-abf0-b1f5d3a203d7","name":"Read a Booth","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/booths/v2/:boothId","protocol":"http","host":["localhost"],"port":"5050","path":["booths","v2",":boothId"],"variable":[{"key":"boothId","value":"97909df7-39d4-4d59-8f7f-8d3e2eb3cae8"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"632"},{"key":"ETag","value":"W/\"278-VbrJ221VIY7xsQ6jT/tnabP2JL8\""},{"key":"Date","value":"Thu, 12 Oct 2023 15:26:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"97909df7-39d4-4d59-8f7f-8d3e2eb3cae8\",\n    \"eventId\": \"817e55b1-a617-4560-a5ce-f5f9cc3b9af5\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"ce4da7d7-3ea7-4504-8c26-a2d3f714cb39\",\n    \"name\": \"Twiyo.\",\n    \"number\": \"167\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall C\",\n    \"assignedPavillion\": \"Up and Coming\",\n    \"displayName\": \"Twiyo\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10.00,\n    \"depth\": 10.00,\n    \"area\": 100.00,\n    \"revenue\": 597.00,\n    \"currencyCode\": \"CRC\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-12T15:20:36.977Z\",\n    \"targetMoveOutAt\": \"2023-10-12T15:20:36.977Z\",\n    \"createdAt\": \"2023-10-12T15:20:37.889Z\",\n    \"updatedAt\": \"2023-10-12T15:20:37.889Z\",\n    \"_links\": {\n        \"parents\": {},\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"b9869d5a-6783-491d-a5e5-c887aeb4aa12","name":"Read a Booth with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/booths/v2/:boothId?include=events, boothtypes","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["booths","v2",":boothId"],"query":[{"key":"include","value":"events, boothtypes","type":"text"}],"variable":[{"key":"boothId","value":"ed91f973-41c0-4647-b0b0-be62d61a3dd7","description":"Example: 97909df7-39d4-4d59-8f7f-8d3e2eb3cae8"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2277"},{"key":"ETag","value":"W/\"8e5-VoU0qeSOxMBFaIdLxxkCG/8UhlE\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:04:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"width\": 0.73,\n    \"depth\": 0.22,\n    \"area\": 0.71,\n    \"revenue\": 164,\n    \"id\": \"ed91f973-41c0-4647-b0b0-be62d61a3dd7\",\n    \"eventId\": \"e7d0a77a-3ef2-4cf2-9e9a-c59650e92644\",\n    \"boothtypeId\": \"6877aeb4-5401-4c33-93bd-d31d2f01e4ce\",\n    \"producerRecordIdentifier\": \"9MMBO\",\n    \"name\": \"Voluptate qui recusandae dolorem cupiditate qui sint.\",\n    \"number\": \"5343597463339008\",\n    \"description\": null,\n    \"assignedHall\": \"Southeast\",\n    \"assignedPavillion\": \"Northeast\",\n    \"displayName\": \"consequuntur\",\n    \"unitOfMeasurement\": \"Meter\",\n    \"currencyCode\": \"CZK\",\n    \"customAttributes\": \"{\\\"booth_setting\\\":\\\"Complete\\\",\\\"booth_status\\\":\\\"Approved\\\"}\",\n    \"targetMoveInAt\": \"2023-11-14T20:23:29.389Z\",\n    \"targetMoveOutAt\": \"2023-11-18T20:23:29.372Z\",\n    \"createdAt\": \"2023-11-14T20:23:29.389Z\",\n    \"updatedAt\": \"2023-11-14T20:23:29.389Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"e7d0a77a-3ef2-4cf2-9e9a-c59650e92644\",\n                \"shortName\": \"Small Computers Seminar 2023\",\n                \"fullName\": \"Electronic Tasty Steel Keyboard Clothing Seminar 2023\",\n                \"systemName\": \"smallcomputersseminar2023-8eab\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-11-14T20:23:29.377Z\",\n                \"endsAt\": \"2023-11-15T20:23:29.372Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"0xEd7E48ab\",\n                \"isSandbox\": true,\n                \"createdAt\": \"2023-11-14T20:23:29.377Z\",\n                \"updatedAt\": \"2023-11-14T20:23:29.377Z\",\n                \"organizationId\": \"a3a96f0c-db4e-40da-b7a8-a57b1c590631\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"boothtypes\": {\n        \"collection\": [\n            {\n                \"id\": \"6877aeb4-5401-4c33-93bd-d31d2f01e4ce\",\n                \"eventId\": \"d55bdc9d-4ec0-4b5e-a03e-fc6437ece983\",\n                \"producerRecordIdentifier\": \"syGr2\",\n                \"name\": \"9z6zM sunt fugit blanditiis\",\n                \"createdAt\": \"2023-11-14T20:23:29.386Z\",\n                \"updatedAt\": \"2023-11-14T20:23:29.387Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/e7d0a77a-3ef2-4cf2-9e9a-c59650e92644\"\n            },\n            \"boothtype\": {\n                \"href\": \"/boothtypes/v2/6877aeb4-5401-4c33-93bd-d31d2f01e4ce\"\n            }\n        },\n        \"children\": {\n            \"booth-exhibitor\": {\n                \"href\": \"/booth-exhibitor/v2?filter[boothId][eq]=ed91f973-41c0-4647-b0b0-be62d61a3dd7\"\n            }\n        },\n        \"siblings\": {\n            \"exhibitors\": {\n                \"href\": \"/exhibitors/v2?filter[boothId][eq]=ed91f973-41c0-4647-b0b0-be62d61a3dd7\"\n            }\n        }\n    }\n}"}],"_postman_id":"0033733f-6615-414c-ab6c-2fe31127720b"},{"name":"Update a Booth","id":"91e6392f-5346-41f1-8d3d-de79aea344ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"817e55b1-a617-4560-a5ce-f5f9cc3b9af5\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"c15df225-b2ce-468f-89a6-f23a23c08e6a\",\n    \"name\": \"Kwilith\",\n    \"number\": \"167\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall C\",\n    \"assignedPavillion\": \"Up and Coming\",\n    \"displayName\": \"Kwilith\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10.00,\n    \"depth\": 10.00,\n    \"area\": 100.00,\n    \"revenue\": 597.00,\n    \"currencyCode\": \"CRC\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-12T15:20:36.977Z\",\n    \"targetMoveOutAt\": \"2023-10-12T15:20:36.977Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/booths/v2/:boothId","description":"<p>Modify one or more fields on the single Booth record of the supplied Booth ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>boothtypeId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of the existing Boothtype.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>assignedHall</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>assignedPavillion</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>unitOfMeasurement</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: Meter, Feet.</td>\n</tr>\n<tr>\n<td>width</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>depth</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>area</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>revenue</td>\n<td>Decimal</td>\n<td></td>\n<td>• Must be a value with two decimal places.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>String</td>\n<td></td>\n<td>• Valid values: <a href=\"https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes\">ISO 4217 currency codes.</a></td>\n</tr>\n<tr>\n<td>targetMoveInAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>targetMoveOutAt</td>\n<td>ISO-8601 formatted string</td>\n<td></td>\n<td>• Must be a valid date.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li><p>The combination of <code>eventId</code> and <code>name</code> must be unique.</p>\n</li>\n<li><p>If <code>revenue</code> is being updated, <code>currencyCode</code> must be provided.</p>\n</li>\n<li><p>If <code>currencyCode</code> is being updated, <code>revenue</code> must be provided.</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booths","v2",":boothId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"83bba6cf-8838-4177-b2d0-d35b9d1c45f4","description":{"content":"<p>Example: d36aab0a-9f42-4fb7-9005-9980aa775ccc</p>\n","type":"text/plain"},"type":"any","value":"<Enter Booth ID here>","key":"boothId"}]}},"response":[{"id":"7f268285-b194-419f-bac9-cd43269c49a4","name":"Update a Booth","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"817e55b1-a617-4560-a5ce-f5f9cc3b9af5\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"c15df225-b2ce-468f-89a6-f23a23c08e6a\",\n    \"name\": \"Kwilith\",\n    \"number\": \"167\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall C\",\n    \"assignedPavillion\": \"Up and Coming\",\n    \"displayName\": \"Kwilith\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10.00,\n    \"depth\": 10.00,\n    \"area\": 100.00,\n    \"revenue\": 597.00,\n    \"currencyCode\": \"CRC\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-12T15:20:36.977Z\",\n    \"targetMoveOutAt\": \"2023-10-12T15:20:36.977Z\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/booths/v2/:boothId","protocol":"http","host":["localhost"],"port":"5050","path":["booths","v2",":boothId"],"variable":[{"key":"boothId","value":"d36aab0a-9f42-4fb7-9005-9980aa775ccc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"613"},{"key":"ETag","value":"W/\"265-nFaVOS5b6okMDTF9w5oHGxiy0P8\""},{"key":"Date","value":"Tue, 17 Oct 2023 18:43:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d36aab0a-9f42-4fb7-9005-9980aa775ccc\",\n    \"eventId\": \"817e55b1-a617-4560-a5ce-f5f9cc3b9af5\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"c15df225-b2ce-468f-89a6-f23a23c08e6a\",\n    \"name\": \"Kwilith\",\n    \"number\": \"167\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall C\",\n    \"assignedPavillion\": \"Up and Coming\",\n    \"displayName\": \"Kwilith\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10,\n    \"depth\": 10,\n    \"area\": 100,\n    \"revenue\": 597,\n    \"currencyCode\": \"CRC\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-12T15:20:36.977Z\",\n    \"targetMoveOutAt\": \"2023-10-12T15:20:36.977Z\",\n    \"createdAt\": \"2023-10-13T20:01:09.682Z\",\n    \"updatedAt\": \"2023-10-17T18:43:28.048Z\"\n}"}],"_postman_id":"91e6392f-5346-41f1-8d3d-de79aea344ac"},{"name":"Destroy a Booth","id":"56a90f28-2214-4303-b83f-ae014f825cbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/booths/v2/:boothId","description":"<p>Permanently delete the Booth record of the supplied Booth ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booths","v2",":boothId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"da3d59f0-0fde-4857-a4da-aec2076060cc","description":{"content":"<p>Example: ab00c0cb-5383-4323-b7f3-244948d4965a</p>\n","type":"text/plain"},"type":"any","value":"<Enter Booth ID here>","key":"boothId"}]}},"response":[{"id":"84b84e6d-6f77-413a-b9fa-59a78736eb52","name":"Destroy a Booth","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/booths/v2/:boothId","protocol":"http","host":["localhost"],"port":"5050","path":["booths","v2",":boothId"],"variable":[{"key":"boothId","value":"ab00c0cb-5383-4323-b7f3-244948d4965a"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"749"},{"key":"ETag","value":"W/\"2ed-49tAN4CNvseECP1RZbkIZm2VBwo\""},{"key":"Date","value":"Thu, 12 Oct 2023 16:46:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ab00c0cb-5383-4323-b7f3-244948d4965a\",\n    \"eventId\": \"5221e36d-be3f-4b6f-9315-0e35de514e9d\",\n    \"boothtypeId\": \"fa127fae-4568-4651-80ef-f2ac84e174bc\",\n    \"producerRecordIdentifier\": \"0cdccd53-6b6f-4408-9b17-20b709654911\",\n    \"name\": \"Tanoodle\",\n    \"number\": \"157\",\n    \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n    \"assignedHall\": \"Hall B\",\n    \"assignedPavillion\": \"Student\",\n    \"displayName\": \"Tanoodle\",\n    \"unitOfMeasurement\": \"Feet\",\n    \"width\": 10.00,\n    \"depth\": 10.00,\n    \"area\": 100.00,\n    \"revenue\": 755,\n    \"currencyCode\": \"BGN\",\n    \"customAttributes\": null,\n    \"targetMoveInAt\": \"2023-10-12T15:15:52.728Z\",\n    \"targetMoveOutAt\": \"2023-10-12T15:15:52.728Z\",\n    \"createdAt\": \"2023-10-12T15:15:53.524Z\",\n    \"updatedAt\": \"2023-10-12T15:15:53.524Z\"\n}"}],"_postman_id":"56a90f28-2214-4303-b83f-ae014f825cbd"}],"id":"d17f7673-71d0-4ad2-ab0e-4ce93d44c6a1","description":"<p>Exhibitor booths are designated spaces within a trade show, exhibition, or event where businesses, organizations, or individuals showcase their products, services, or information to attendees. These booths serve as the physical presentation areas for exhibitors to engage with potential customers, partners, or the public.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>boothtypeId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Boothtype.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name of the booth, typically refers to the name or label associated to the booth.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>String</td>\n<td>The unique identifier assigned to a specific booth or exhibition space.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A brief and informative statement or summary that describes what a particular booth or exhibitor offers.</td>\n</tr>\n<tr>\n<td>assignedHall</td>\n<td>String</td>\n<td>The hall where the booth is assigned. Hall typically refers to a large designated area within the venue.</td>\n</tr>\n<tr>\n<td>assignedPavillion</td>\n<td>String</td>\n<td>The pavilion where the booth is assigned. Pavilion typically refers to a distinct, themed, or specialized area within the venue, that is set aside for specific exhibitors, industries, or proposes.</td>\n</tr>\n<tr>\n<td>unitOfMeasurement</td>\n<td>String</td>\n<td>The unit of measurement that is used to measure the booth width, depth, and area.</td>\n</tr>\n<tr>\n<td>width</td>\n<td>Decimal(2)</td>\n<td>The booth measurement or dimension from side to side or horizontally.</td>\n</tr>\n<tr>\n<td>depth</td>\n<td>Decimal(2)</td>\n<td>The booth measurement or dimension from back to front or in the third dimension.</td>\n</tr>\n<tr>\n<td>area</td>\n<td>Decimal(2)</td>\n<td>The booth measurement of the width x depth.</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td>The name of the booth to be displayed on signage.</td>\n</tr>\n<tr>\n<td>revenue</td>\n<td>Decimal(2)</td>\n<td>Cost the exhibitor paid to rent the booth (revenue to the organizer, cost to the exhibitor)</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>ISO-4217 formatted string</td>\n<td>The currency in which the booth revenue is in.</td>\n</tr>\n<tr>\n<td>targetMoveInAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The targeted move in date for the booth.</td>\n</tr>\n<tr>\n<td>targetMoveOutAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The targeted move out date for the booth.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSONB</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d17f7673-71d0-4ad2-ab0e-4ce93d44c6a1","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Booth-Exhibitor (v2)","item":[{"name":"List Booth-Exhibitor relationships","id":"519f1052-6fed-4f37-80fa-8fadc6479acb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2","description":"<p>Retrieve a collection of Booth-Exhibitor relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>boothId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>status</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>relationship</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>relationship</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booth-exhibitor","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"69d828c0-a736-4dab-a44a-1a76756ca464","name":"List Booth-Exhibitor relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1195"},{"key":"ETag","value":"W/\"4ab-6FqoNqZiVWh0Q2kU3gqukF/gPYc\""},{"key":"Date","value":"Tue, 31 Oct 2023 16:43:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"5931f465-0ad1-4c25-a303-28f4547befa6\",\n            \"boothId\": \"2c803d3f-ee80-4a7d-bdea-27a53de54a80\",\n            \"exhibitorId\": \"931f7c72-c2d5-47a5-ac3c-1e203e0f7e48\",\n            \"status\": \"Pending\",\n            \"relationship\": \"Primary\",\n            \"createdAt\": \"2023-10-31T16:41:11.442Z\",\n            \"updatedAt\": \"2023-10-31T16:41:11.442Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"booth\": {\n                        \"href\": \"/booths/v2/2c803d3f-ee80-4a7d-bdea-27a53de54a80\"\n                    },\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/931f7c72-c2d5-47a5-ac3c-1e203e0f7e48\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"b286795d-1db6-4e86-8149-d1b02c3fb7a8\",\n            \"boothId\": \"0855f607-11f6-49e8-be14-59d6453c9597\",\n            \"exhibitorId\": \"1eb99f15-963a-450e-826f-e4108a18f67a\",\n            \"status\": \"Confirmed\",\n            \"relationship\": \"Secondary\",\n            \"createdAt\": \"2023-10-31T16:43:22.016Z\",\n            \"updatedAt\": \"2023-10-31T16:43:22.016Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"booth\": {\n                        \"href\": \"/booths/v2/0855f607-11f6-49e8-be14-59d6453c9597\"\n                    },\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/1eb99f15-963a-450e-826f-e4108a18f67a\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/booth-exhibitor/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"519f1052-6fed-4f37-80fa-8fadc6479acb"},{"name":"Create a Booth-Exhibitor relationship","id":"9734ec87-1f59-4090-9fdb-9e51497869b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"boothId\": \"2c803d3f-ee80-4a7d-bdea-27a53de54a80\",\n    \"exhibitorId\": \"931f7c72-c2d5-47a5-ac3c-1e203e0f7e48\",\n    \"status\":\"Pending\",\n    \"relationship\":\"Primary\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2","description":"<p>Create a new Booth-Exhibitor relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>boothId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Booth.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Valid values:  <br />Confirmed, Balance Due, Cancelled, Pending.</td>\n</tr>\n<tr>\n<td>relationship</td>\n<td>String</td>\n<td></td>\n<td>• Valid values:  <br />Primary, Secondary, Private, Shared.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>boothId</code>, <code>exhibitorId</code> and <code>status</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booth-exhibitor","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"7f28abf2-e6b8-4e7f-9eda-c39f9b9c98cc","name":"Create a Booth-Exhibitor relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"boothId\": \"2c803d3f-ee80-4a7d-bdea-27a53de54a80\",\n    \"exhibitorId\": \"931f7c72-c2d5-47a5-ac3c-1e203e0f7e48\",\n    \"status\":\"Pending\",\n    \"relationship\":\"Primary\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"269"},{"key":"ETag","value":"W/\"10d-z5m8NOXz4Lb8KpEfhN/ZahtMgLw\""},{"key":"Date","value":"Tue, 31 Oct 2023 16:41:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5931f465-0ad1-4c25-a303-28f4547befa6\",\n    \"boothId\": \"2c803d3f-ee80-4a7d-bdea-27a53de54a80\",\n    \"exhibitorId\": \"931f7c72-c2d5-47a5-ac3c-1e203e0f7e48\",\n    \"status\": \"Pending\",\n    \"relationship\": \"Primary\",\n    \"updatedAt\": \"2023-10-31T16:41:11.442Z\",\n    \"createdAt\": \"2023-10-31T16:41:11.442Z\"\n}"}],"_postman_id":"9734ec87-1f59-4090-9fdb-9e51497869b1"},{"name":"Read a Booth-Exhibitor relationship","id":"823d6c5e-1bd6-45c4-86c8-c45f6f66cad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2/:id","description":"<p>Retrieve the single Booth-Exhibitor relationship record of the supplied Booth-Exhibitor ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>booths</td>\n<td>exhibitors</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booth-exhibitor","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"7c212c0f-7101-401b-abad-349e264a63b4","description":{"content":"<p>Example: 5931f465-0ad1-4c25-a303-28f4547befa6</p>\n","type":"text/plain"},"type":"any","value":"<Enter Booth-Exhibitor ID here>","key":"id"}]}},"response":[{"id":"9e8020f2-8279-4cdb-a5a7-6cb561e3e5cc","name":"Read a Booth-Exhibitor relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["booth-exhibitor","v2",":id"],"variable":[{"key":"id","value":"5931f465-0ad1-4c25-a303-28f4547befa6","description":"Example: 5931f465-0ad1-4c25-a303-28f4547befa6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"462"},{"key":"ETag","value":"W/\"1ce-7WHVzIt8zclOxUzPxV6LsL3C1KQ\""},{"key":"Date","value":"Tue, 31 Oct 2023 16:55:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5931f465-0ad1-4c25-a303-28f4547befa6\",\n    \"boothId\": \"2c803d3f-ee80-4a7d-bdea-27a53de54a80\",\n    \"exhibitorId\": \"931f7c72-c2d5-47a5-ac3c-1e203e0f7e48\",\n    \"status\": \"Pending\",\n    \"relationship\": \"Primary\",\n    \"createdAt\": \"2023-10-31T16:41:11.442Z\",\n    \"updatedAt\": \"2023-10-31T16:41:11.442Z\",\n    \"_links\": {\n        \"parents\": {\n            \"booth\": {\n                \"href\": \"/booths/v2/2c803d3f-ee80-4a7d-bdea-27a53de54a80\"\n            },\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/931f7c72-c2d5-47a5-ac3c-1e203e0f7e48\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"99d373b8-b01c-4356-9426-f9c93c2aa297","name":"Read a Booth-Exhibitor relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2/:id?include=booths,exhibitors","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["booth-exhibitor","v2",":id"],"query":[{"key":"include","value":"booths,exhibitors","type":"text"}],"variable":[{"key":"id","value":"849c6954-eb09-4007-9235-b02951261c7f","description":"Example: 5931f465-0ad1-4c25-a303-28f4547befa6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2517"},{"key":"ETag","value":"W/\"9d5-3dhhV2vBsMtz0if3ZvcxATcwfts\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:06:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"849c6954-eb09-4007-9235-b02951261c7f\",\n    \"boothId\": \"1f069758-0f47-4649-8488-8280dba0babf\",\n    \"exhibitorId\": \"5f73de8c-5004-4727-b778-b7ebc1feb0c4\",\n    \"status\": \"Cancelled\",\n    \"relationship\": \"Shared\",\n    \"createdAt\": \"2023-11-14T20:23:29.438Z\",\n    \"updatedAt\": \"2023-11-14T20:23:29.438Z\",\n    \"booths\": {\n        \"collection\": [\n            {\n                \"width\": 0.94,\n                \"depth\": 0.72,\n                \"area\": 0.94,\n                \"revenue\": 196,\n                \"id\": \"1f069758-0f47-4649-8488-8280dba0babf\",\n                \"eventId\": \"71dc1afc-bb3b-4a38-9e44-74c10a9b45bc\",\n                \"boothtypeId\": \"1ef472f7-fa79-4bf9-ac95-f3c7be728bec\",\n                \"producerRecordIdentifier\": \"TBCY4\",\n                \"name\": \"Ipsam voluptates natus repudiandae hic fugit ratione rerum.\",\n                \"number\": \"4802195488768000\",\n                \"description\": \"Diverse impactful open system scale distributed eyeballs\",\n                \"assignedHall\": \"Southeast\",\n                \"assignedPavillion\": \"Northwest\",\n                \"displayName\": \"illo\",\n                \"unitOfMeasurement\": \"Meter\",\n                \"currencyCode\": \"SYP\",\n                \"customAttributes\": \"{\\\"booth_setting\\\":\\\"Complete\\\",\\\"booth_status\\\":\\\"Approved\\\"}\",\n                \"targetMoveInAt\": \"2023-11-14T20:23:29.421Z\",\n                \"targetMoveOutAt\": \"2023-11-15T20:23:29.403Z\",\n                \"createdAt\": \"2023-11-14T20:23:29.421Z\",\n                \"updatedAt\": \"2023-11-14T20:23:29.421Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"5f73de8c-5004-4727-b778-b7ebc1feb0c4\",\n                \"eventId\": \"127a8292-6fe6-4163-8778-1aa74f7333bd\",\n                \"producerRecordIdentifier\": \"LXf5Z\",\n                \"singleSignOnIdentifier\": \"45YpUZ7\",\n                \"name\": \"Gerhold - Bruen\",\n                \"isPreviousExhibitor\": false,\n                \"isFirstTime\": false,\n                \"isMember\": false,\n                \"badgeAllocationCount\": 1,\n                \"ticketAllocationCount\": 5,\n                \"staffAllocationCount\": 1,\n                \"phoneNumber\": \"1-988-381-8205 x491\",\n                \"email\": \"Verner_Upton@hotmail.com\",\n                \"producerSystem\": \"OUMHvOm\",\n                \"status\": \"Balance Due\",\n                \"website\": \"https://inborn-trade.org/\",\n                \"logoUrl\": \"https://loremflickr.com/640/480?lock=4550606177959936\",\n                \"sponsorshipLevel\": \"XbQTk4B\",\n                \"description\": \"The Nagasaki Lander is the trademarked name of several series of Nagasaki sport bikes, that started with the 1984 ABC800J\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Croatia\\\"}\",\n                \"bookedAt\": \"2023-11-14T20:23:29.435Z\",\n                \"createdAt\": \"2023-11-14T20:23:29.435Z\",\n                \"updatedAt\": \"2023-11-14T20:23:29.435Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"booth\": {\n                \"href\": \"/booths/v2/1f069758-0f47-4649-8488-8280dba0babf\"\n            },\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/5f73de8c-5004-4727-b778-b7ebc1feb0c4\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"823d6c5e-1bd6-45c4-86c8-c45f6f66cad3"},{"name":"Delete a Booth-Exhibitor relationship","id":"cbbae7d9-b48c-4f0b-8b5b-5c2f9f577dc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2/:id","description":"<p>Permanently delete the Booth-Exhibitor relationship record of the supplied Booth-Exhibitor ID. Destroying a relationship record will not destroy the supplied Booth or the supplied Exhibitor, it will instead cause the supplied Booth and Exhibitor to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["booth-exhibitor","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"5c7c5b23-6cd0-4cd7-bad9-74c989623c27","description":{"content":"<p>Example: b286795d-1db6-4e86-8149-d1b02c3fb7a8</p>\n","type":"text/plain"},"type":"any","value":"<Enter Booth-Exhibitor ID here>","key":"id"}]}},"response":[{"id":"636c90e4-f367-4f0d-b3e5-e9cf70d15469","name":"Delete a Booth-Exhibitor relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/booth-exhibitor/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["booth-exhibitor","v2",":id"],"variable":[{"key":"id","value":"b286795d-1db6-4e86-8149-d1b02c3fb7a8","description":"Example: b286795d-1db6-4e86-8149-d1b02c3fb7a8"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"273"},{"key":"ETag","value":"W/\"111-X+WxAY7L7aroeMMv91yR8EXugqk\""},{"key":"Date","value":"Tue, 31 Oct 2023 16:57:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b286795d-1db6-4e86-8149-d1b02c3fb7a8\",\n    \"boothId\": \"0855f607-11f6-49e8-be14-59d6453c9597\",\n    \"exhibitorId\": \"1eb99f15-963a-450e-826f-e4108a18f67a\",\n    \"status\": \"Confirmed\",\n    \"relationship\": \"Secondary\",\n    \"createdAt\": \"2023-10-31T16:43:22.016Z\",\n    \"updatedAt\": \"2023-10-31T16:43:22.016Z\"\n}"}],"_postman_id":"cbbae7d9-b48c-4f0b-8b5b-5c2f9f577dc7"}],"id":"0e317bcc-6d10-47c7-aa27-de19a44cfc31","description":"<p>The Booth-Exhibitor entity provides a way to interact with the relationships between Booths and Exhibitors. A single Exhibitor can have many Booths and a single Booth can belong to many Exhibitors.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>boothId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Booth.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitor.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>The status of the Booth and the Exhibitor record. Examples: Confirmed, Balance Due, Cancelled, Pending.</td>\n</tr>\n<tr>\n<td>relationship</td>\n<td>String</td>\n<td>The relationship between the Booth and the Exhibitor. Booths and Exhibitors have a many to many relationship this allows one to determine the type of relationship.  <br />Examples: Primary, Secondary, Private, Shared.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0e317bcc-6d10-47c7-aa27-de19a44cfc31","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Boothtypes (v2)","item":[{"name":"List Boothtypes","id":"af1e564d-8bbf-4fa8-8420-001ceab692eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/boothtypes/v2","description":"<p>Retrieve a collection of Boothtype records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["boothtypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"80735956-df2c-4c9f-bce5-74914f560650","name":"List Boothtypes","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/boothtypes/v2","protocol":"http","host":["localhost"],"port":"5050","path":["boothtypes","v2"],"query":[{"key":"filter[eventId][eq]","value":"2e98fd8e-360a-442f-97a4-1fa49a5351a1","type":"text","disabled":true},{"key":"filter[producerRecordIdentifier][substring]","value":"jgyyn","type":"text","disabled":true},{"key":"page","value":"1","type":"text","disabled":true},{"key":"filter[name][startsWith]","value":"xqafs","type":"text","disabled":true},{"key":"sort[desc]","value":"name","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5325"},{"key":"ETag","value":"W/\"14cd-roHGKZwz7Ee5agudyxSYz59IzGw\""},{"key":"Date","value":"Wed, 04 Oct 2023 14:28:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"f5d4e320-ff1f-4abf-b90b-d45f0a67ad4c\",\n            \"eventId\": \"f493bae0-c5f2-469f-8ff4-e87bbe4c6e59\",\n            \"producerRecordIdentifier\": \"290688f4-57f7-40f7-a759-1a440742838f\",\n            \"name\": \"Inline\",\n            \"createdAt\": \"2023-10-02T16:57:59.084Z\",\n            \"updatedAt\": \"2023-10-02T16:57:59.084Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/f493bae0-c5f2-469f-8ff4-e87bbe4c6e59\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"60e688b4-19ab-4a13-9d7d-cb74e7708ba2\",\n            \"eventId\": \"4e893000-cc82-480a-a275-956b50653857\",\n            \"producerRecordIdentifier\": \"c52cfbe5-d725-45f0-b576-a3400865498f\",\n            \"name\": \"Island\",\n            \"createdAt\": \"2023-10-02T16:57:59.105Z\",\n            \"updatedAt\": \"2023-10-02T16:57:59.105Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/4e893000-cc82-480a-a275-956b50653857\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/boothtypes/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"af1e564d-8bbf-4fa8-8420-001ceab692eb"},{"name":"Create a Boothtype","id":"7abda76f-8fa6-4a49-9d09-c10a48a44883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"81dbc05d-aec4-49a9-81d7-afb28bd5de45\",\n    \"producerRecordIdentifier\": \"290688f4-57f7-40f7-a759-1a440742838f\",\n    \"name\": \"Inline\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/boothtypes/v2","description":"<p>Create a new Boothtype record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["boothtypes","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"90e591eb-67a0-4250-8b34-bd66a40b12c1","name":"Create a Boothtype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"81dbc05d-aec4-49a9-81d7-afb28bd5de45\",\n    \"producerRecordIdentifier\": \"290688f4-57f7-40f7-a759-1a440742838f\",\n    \"name\": \"Inline\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/boothtypes/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"254"},{"key":"ETag","value":"W/\"fe-YSUdzed+N1WTg3mxaO6IFeBHVYM\""},{"key":"Date","value":"Tue, 17 Oct 2023 18:53:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"62d1143a-9ea0-432c-a197-5c7fbdab347f\",\n    \"eventId\": \"81dbc05d-aec4-49a9-81d7-afb28bd5de45\",\n    \"producerRecordIdentifier\": \"290688f4-57f7-40f7-a759-1a440742838f\",\n    \"name\": \"Inline\",\n    \"updatedAt\": \"2023-10-17T18:53:03.766Z\",\n    \"createdAt\": \"2023-10-17T18:53:03.766Z\"\n}"}],"_postman_id":"7abda76f-8fa6-4a49-9d09-c10a48a44883"},{"name":"Read a Boothtype","id":"97bd16d3-a9d2-408c-a7b4-a623735b68c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/boothtypes/v2/:boothtypeId","description":"<p>Retrieve the single Boothtype record of the supplied Boothtype ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>booths</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["boothtypes","v2",":boothtypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"a875de03-04f9-44fc-af7d-4dc40a46e617","description":{"content":"<p>Example: 7462917c-d5f8-4e7d-8357-e728da1cd6b7</p>\n","type":"text/plain"},"type":"any","value":"<Enter Boothtype ID here>","key":"boothtypeId"}]}},"response":[{"id":"ce010a35-588d-40aa-a689-b9f28e9f8044","name":"Read a Boothtype","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/boothtypes/v2/:boothtypeId","protocol":"http","host":["localhost"],"port":"5050","path":["boothtypes","v2",":boothtypeId"],"variable":[{"key":"boothtypeId","value":"7462917c-d5f8-4e7d-8357-e728da1cd6b7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"363"},{"key":"ETag","value":"W/\"16b-7fW3TModh/nA0wUap7x+3cD62gA\""},{"key":"Date","value":"Wed, 04 Oct 2023 14:46:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7462917c-d5f8-4e7d-8357-e728da1cd6b7\",\n    \"eventId\": \"4e10a481-2cfd-41df-9921-17a8a34f8685\",\n    \"producerRecordIdentifier\": \"abd17f34-225f-497a-8663-c61778b71586\",\n    \"name\": \"Peninsula\",\n    \"createdAt\": \"2023-10-04T13:38:16.194Z\",\n    \"updatedAt\": \"2023-10-04T13:38:16.194Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/4e10a481-2cfd-41df-9921-17a8a34f8685\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"50f62af3-2680-4568-a85a-cfefe30abaf4","name":"Read a Boothtype with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/boothtypes/v2/:boothtypeId?include=events,booths","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["boothtypes","v2",":boothtypeId"],"query":[{"key":"include","value":"events,booths","type":"text"}],"variable":[{"key":"boothtypeId","value":"bb92afec-6106-4212-be95-188322a76ed1","description":"Example: 7462917c-d5f8-4e7d-8357-e728da1cd6b7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2766"},{"key":"ETag","value":"W/\"ace-IDJsXMxni6FpeOIQCDPdKYco6Hw\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:07:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"bb92afec-6106-4212-be95-188322a76ed1\",\n    \"eventId\": \"218834ad-6367-45a9-9c5f-07cb216cae27\",\n    \"producerRecordIdentifier\": \"ZLuus\",\n    \"name\": \"7nPge omnis veritatis laboriosam\",\n    \"createdAt\": \"2023-10-02T16:57:59.028Z\",\n    \"updatedAt\": \"2023-10-02T16:57:59.028Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"218834ad-6367-45a9-9c5f-07cb216cae27\",\n                \"shortName\": \"Luxurious Baby Technical Seminar 2024\",\n                \"fullName\": \"Unbranded Sleek Rubber Bacon Outdoors Technical Seminar 2024\",\n                \"systemName\": \"luxuriousbabytechnicalseminar2024-0462\",\n                \"website\": null,\n                \"description\": null,\n                \"startsAt\": \"2023-10-02T16:57:59.017Z\",\n                \"endsAt\": \"2023-10-03T16:57:59.010Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": \"4681d5a\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-10-02T16:57:59.017Z\",\n                \"updatedAt\": \"2023-10-02T16:57:59.017Z\",\n                \"organizationId\": \"2d2d61b2-5a55-4077-9502-b0530c6cc133\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"booths\": {\n        \"collection\": [\n            {\n                \"width\": 0.34,\n                \"depth\": 0.7,\n                \"area\": 0,\n                \"revenue\": 195,\n                \"id\": \"6edffb0c-737b-463c-9aeb-2ba738b9d213\",\n                \"eventId\": \"bfe29cec-9265-4f19-8d06-63286b1af68f\",\n                \"boothtypeId\": \"bb92afec-6106-4212-be95-188322a76ed1\",\n                \"producerRecordIdentifier\": \"uMIy5\",\n                \"name\": \"Magnam dignissimos minima id est.\",\n                \"number\": \"6863771840544768\",\n                \"description\": null,\n                \"assignedHall\": \"South\",\n                \"assignedPavillion\": \"East\",\n                \"displayName\": \"harum\",\n                \"unitOfMeasurement\": \"Feet\",\n                \"currencyCode\": \"NGN\",\n                \"customAttributes\": {\n                    \"booth_status\": \"Approved\",\n                    \"booth_setting\": \"Complete\"\n                },\n                \"targetMoveInAt\": \"2023-10-13T20:01:09.739Z\",\n                \"targetMoveOutAt\": \"2023-10-14T20:01:09.726Z\",\n                \"createdAt\": \"2023-10-13T20:01:09.739Z\",\n                \"updatedAt\": \"2023-10-13T20:01:09.739Z\"\n            },\n            {\n                \"width\": 10,\n                \"depth\": 10,\n                \"area\": 100,\n                \"revenue\": 597,\n                \"id\": \"61e1dfd6-cf93-40f8-b75b-d878231ee979\",\n                \"eventId\": \"54991bae-9f32-44e0-9822-92b87c1a7be6\",\n                \"boothtypeId\": \"bb92afec-6106-4212-be95-188322a76ed1\",\n                \"producerRecordIdentifier\": \"ce4da7d7-3ea7-4504-8c26-a2d3f714cb39\",\n                \"name\": \"Twiyo.\",\n                \"number\": \"167\",\n                \"description\": \"Optimized encompassing archive incentivize revolutionary supply-chains.\",\n                \"assignedHall\": \"Hall C\",\n                \"assignedPavillion\": \"Up and Coming\",\n                \"displayName\": \"Twiyo\",\n                \"unitOfMeasurement\": \"Feet\",\n                \"currencyCode\": \"CRC\",\n                \"customAttributes\": null,\n                \"targetMoveInAt\": \"2023-10-17T12:19:57.062Z\",\n                \"targetMoveOutAt\": \"2023-10-17T12:19:57.062Z\",\n                \"createdAt\": \"2023-11-07T19:21:43.412Z\",\n                \"updatedAt\": \"2023-11-07T19:21:43.412Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 2,\n            \"numberOfRecordsOnCurrentPage\": 2,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/218834ad-6367-45a9-9c5f-07cb216cae27\"\n            }\n        },\n        \"children\": {\n            \"booths\": {\n                \"href\": \"/booths/v2?filter[boothtypeId][eq]=bb92afec-6106-4212-be95-188322a76ed1\"\n            }\n        },\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"97bd16d3-a9d2-408c-a7b4-a623735b68c9"},{"name":"Update a Boothtype","id":"1224968c-fa00-4a9f-a6bc-dff7bf635a3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"27b3a398-91b4-4c50-8c17-7a0e329b26f8\",\n    \"name\": \"Corner\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/boothtypes/v2/:boothtypeId","description":"<p>Modify one or more fields on the single Boothtype record of the supplied Boothtype ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["boothtypes","v2",":boothtypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"83019cfc-b70f-4fed-b92d-90581d802eda","description":{"content":"<p>Example: 56a83c42-6e97-44b0-8db1-0f571e39f97e</p>\n","type":"text/plain"},"type":"any","value":"<Enter Boothtype ID here>","key":"boothtypeId"}]}},"response":[{"id":"041c52cc-0461-4b2e-8510-e24fa01b392f","name":"Update a Boothtype","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"27b3a398-91b4-4c50-8c17-7a0e329b26f8\",\n    \"name\": \"Corner\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/boothtypes/v2/:boothtypeId","protocol":"http","host":["localhost"],"port":"5050","path":["boothtypes","v2",":boothtypeId"],"variable":[{"key":"boothtypeId","value":"56a83c42-6e97-44b0-8db1-0f571e39f97e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"254"},{"key":"ETag","value":"W/\"fe-AcKJCMDV6WLw+2y88VMwP9bCdss\""},{"key":"Date","value":"Tue, 17 Oct 2023 18:58:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"56a83c42-6e97-44b0-8db1-0f571e39f97e\",\n    \"eventId\": \"4e10a481-2cfd-41df-9921-17a8a34f8685\",\n    \"producerRecordIdentifier\": \"27b3a398-91b4-4c50-8c17-7a0e329b26f8\",\n    \"name\": \"Corner\",\n    \"createdAt\": \"2023-10-02T17:43:01.659Z\",\n    \"updatedAt\": \"2023-10-17T18:58:41.416Z\"\n}"}],"_postman_id":"1224968c-fa00-4a9f-a6bc-dff7bf635a3d"},{"name":"Destroy a Boothtype","id":"2b19e246-ed4c-4dfd-b701-1c64210cdf4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/boothtypes/v2/:boothtypeId","description":"<p>Permanently delete the Boothtype record of the supplied Boothtype ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["boothtypes","v2",":boothtypeId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"80ec1bd2-4f7e-440f-b5c9-11985bfaa5aa","description":{"content":"<p>Example: 7462917c-d5f8-4e7d-8357-e728da1cd6b7</p>\n","type":"text/plain"},"type":"any","value":"<Enter Boothtype ID here>","key":"boothtypeId"}]}},"response":[{"id":"9c5d0263-bccb-4866-abb4-ea0d65787569","name":"Destroy a Boothtype","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/boothtypes/v2/:boothtypeId","protocol":"http","host":["localhost"],"port":"5050","path":["boothtypes","v2",":boothtypeId"],"variable":[{"key":"boothtypeId","value":"7462917c-d5f8-4e7d-8357-e728da1cd6b7"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"245"},{"key":"ETag","value":"W/\"f5-0y8YgHsFb4srqVS3VdKSikAjRfU\""},{"key":"Date","value":"Wed, 04 Oct 2023 14:55:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7462917c-d5f8-4e7d-8357-e728da1cd6b7\",\n    \"eventId\": \"4e10a481-2cfd-41df-9921-17a8a34f8685\",\n    \"producerRecordIdentifier\": \"196\",\n    \"name\": \"New test explicabo qui dolorem\",\n    \"createdAt\": \"2023-10-04T13:38:16.194Z\",\n    \"updatedAt\": \"2023-10-04T13:38:16.194Z\"\n}"}],"_postman_id":"2b19e246-ed4c-4dfd-b701-1c64210cdf4f"}],"id":"f9a26e84-65f5-4f5b-a0a9-aafef056bbca","description":"<p>Boothtypes describe the booth layout or booth space that the exhibitor has purchased. Boothtypes typically are Island, Corner, Inline, Peninsula, End-Cap and more. Boothtypes can be custom defined by event or by producer system.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>string</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The name of the Boothtype.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 iso formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 iso formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f9a26e84-65f5-4f5b-a0a9-aafef056bbca","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorproducts (v2)","item":[{"name":"List Exhibitorproducts","id":"dc1433cf-088f-4530-917c-392abb988522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2","description":"<p>Retrieve a collection of Exhibitorproduct records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>model</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>specifications</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>url</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>imageUrl</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>model</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>url</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>imageUrl</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproducts","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"573bb820-dd8a-4a96-91c8-e86c80d10f74","name":"List Exhibitorproducts","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"8956"},{"key":"ETag","value":"W/\"22fc-i5XoBm/ba4ILHrBnbl1sGLhYaB0\""},{"key":"Date","value":"Thu, 26 Oct 2023 17:34:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"a3f52a6a-626c-4249-83e7-1bc21273484d\",\n            \"eventId\": \"c742feaf-4f19-444e-a26d-8dc3581857f8\",\n            \"exhibitorId\": \"04896cde-bab8-4adc-b8ad-df6efaadabea\",\n            \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n            \"name\": \"2STYL\",\n            \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n            \"model\": \"BO2002\",\n            \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n            \"url\": \"https://avaflor.com/2styl/\",\n            \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\",\n            \"customAttributes\": {\n                \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n                \"WEAR_LAYER\": \"8 MIL\"\n            },\n            \"createdAt\": \"2023-10-26T12:25:23.616Z\",\n            \"updatedAt\": \"2023-10-26T12:25:23.616Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/c742feaf-4f19-444e-a26d-8dc3581857f8\"\n                    },\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/04896cde-bab8-4adc-b8ad-df6efaadabea\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"8f7cf383-9c9b-476e-b5bd-c0ac0e836d87\",\n            \"eventId\": \"fb09c7c4-46ed-476f-9dce-aa173d691538\",\n            \"exhibitorId\": \"8765f2fa-760c-4140-8b85-788bad4df1f0\",\n            \"producerRecordIdentifier\": \"1dd8436f-3e9e-4d38-aab1-cbc47c15479f\",\n            \"name\": \"STRM\",\n            \"description\": \"Blending the performance and durability of hard surface with the soft and warm visuals of carpet tile, AVA® STRM™ brings unique design options for any commercial setting, including Hospitality, Retail and Public Spaces.\",\n            \"model\": \"STR011\",\n            \"specifications\": \"9.84' x 39.37'\",\n            \"url\": \"https://avaflor.com/strm/\",\n            \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8765.jpg\",\n            \"customAttributes\": {\n                \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n                \"WEAR_LAYER\": \"8 MIL\"\n            },\n            \"createdAt\": \"2023-10-26T12:25:23.657Z\",\n            \"updatedAt\": \"2023-10-26T12:25:23.657Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/fb09c7c4-46ed-476f-9dce-aa173d691538\"\n                    },\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/8765f2fa-760c-4140-8b85-788bad4df1f0\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorproducts/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"dc1433cf-088f-4530-917c-392abb988522"},{"name":"Create an Exhibitorproduct","id":"a0085cef-123c-417b-9316-8c833a53e58d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"name\": \"2STYL\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\",\n    \"customAttributes\": {\n        \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n        \"WEAR_LAYER\": \"8 MIL\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2","description":"<p>Create a new Exhibitorproduct record.</p>\n<h4 id=\"request-body\">Request body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary idenfifier of an existing Event.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary idenfifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>model</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>specifications</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid URI</td>\n</tr>\n<tr>\n<td>imageUrl</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.  <br />• Must utilize the https protocol.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproducts","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"3cf79db4-36a7-4223-8725-a8fce6baeea4","name":"Create an Exhibitorproduct","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"name\": \"2STYL\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\",\n    \"customAttributes\": {\n        \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n        \"WEAR_LAYER\": \"8 MIL\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"902"},{"key":"ETag","value":"W/\"386-nFZRNzwrxMXIpu9zuxKZVDkzVA4\""},{"key":"Date","value":"Thu, 26 Oct 2023 12:44:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"aad20f78-9cd6-43dd-ab55-3eee0f896fdf\",\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"name\": \"2STYL\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\",\n    \"customAttributes\": {\n        \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n        \"WEAR_LAYER\": \"8 MIL\"\n    },\n    \"updatedAt\": \"2023-10-26T12:44:53.232Z\",\n    \"createdAt\": \"2023-10-26T12:44:53.232Z\"\n}"}],"_postman_id":"a0085cef-123c-417b-9316-8c833a53e58d"},{"name":"Read an Exhibitorproduct","id":"d3cf9ac7-832e-4750-a0d5-f5bbbbd6532b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2/:exhibitorproductId","description":"<p>Retrieve the single Exhibitorproduct record of the supplied Exhibitorproduct ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>exhibitors</td>\n<td>exhibitorcategories</td>\n</tr>\n<tr>\n<td>exhibitorsubcategories</td>\n<td>exhibitorcategory-exhibitorproduct</td>\n<td>exhibitorproduct-exhibitorsubcategory</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproducts","v2",":exhibitorproductId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"d1c32124-1a1b-4b14-a961-69a6970d4010","description":{"content":"<p>Example: aad20f78-9cd6-43dd-ab55-3eee0f896fdf</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorproduct ID here>","key":"exhibitorproductId"}]}},"response":[{"id":"81f2b6f2-2f86-4a16-8f9d-7e8fea64ccc7","name":"Read an Exhibitorproduct","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitorproducts/v2/:exhibitorproductId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorproducts","v2",":exhibitorproductId"],"variable":[{"key":"exhibitorproductId","value":"aad20f78-9cd6-43dd-ab55-3eee0f896fdf","description":"Example: aad20f78-9cd6-43dd-ab55-3eee0f896fdf"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1095"},{"key":"ETag","value":"W/\"447-NiSMsjDNQQu8fb+VriKDk/zgorc\""},{"key":"Date","value":"Thu, 26 Oct 2023 12:48:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"aad20f78-9cd6-43dd-ab55-3eee0f896fdf\",\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"name\": \"2STYL\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\",\n    \"customAttributes\": {\n        \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n        \"WEAR_LAYER\": \"8 MIL\"\n    },\n    \"createdAt\": \"2023-10-26T12:44:53.232Z\",\n    \"updatedAt\": \"2023-10-26T12:44:53.232Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/5638e9ca-ea8c-47f4-9f89-caf9cad36514\"\n            },\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/1d9a5252-6b3e-484d-90e6-8e66af29f7d9\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"6ec3e24f-1c36-47b5-92d0-75e779fa7d09","name":"Read an Exhibitorproduct with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2/:exhibitorproductId?include=events,exhibitors","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorproducts","v2",":exhibitorproductId"],"query":[{"key":"include","value":"events,exhibitors","type":"text"}],"variable":[{"key":"exhibitorproductId","value":"5c329402-24f9-4823-bed3-7be39b58add6","description":"Example: aad20f78-9cd6-43dd-ab55-3eee0f896fdf"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3274"},{"key":"ETag","value":"W/\"cca-/EiTPOUbek1UEq3IPtMfZw8OSfU\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:09:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5c329402-24f9-4823-bed3-7be39b58add6\",\n    \"eventId\": \"ac4b9971-5113-4c1e-8ec0-1ec1a7c301fe\",\n    \"exhibitorId\": \"3995fef7-a82f-4d14-9916-b601129b49bf\",\n    \"producerRecordIdentifier\": \"9i4d5\",\n    \"name\": \"Hilll LLC\",\n    \"description\": \"The automobile layout consists of a front-engine design, with transaxle-type transmissions mounted at the rear of the engine and four wheel drive\",\n    \"model\": \"pbfCu\",\n    \"specifications\": \"0xaDcAcfcDcb\",\n    \"url\": \"https://extra-small-fame.net/\",\n    \"imageUrl\": \"https://picsum.photos/seed/Cx1XAVV2/640/480\",\n    \"customAttributes\": {\n        \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n        \"WEAR_LAYER\": \"8 MIL\"\n    },\n    \"createdAt\": \"2023-11-27T14:47:16.559Z\",\n    \"updatedAt\": \"2023-11-27T14:47:16.559Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"ac4b9971-5113-4c1e-8ec0-1ec1a7c301fe\",\n                \"shortName\": \"Rustic Games Summit 2023\",\n                \"fullName\": \"Refined Sleek Plastic Ball Health Summit 2023\",\n                \"systemName\": \"rusticgamessummit2023-1520\",\n                \"website\": \"https://kindly-inn.info/\",\n                \"description\": null,\n                \"startsAt\": \"2023-11-27T14:47:16.530Z\",\n                \"endsAt\": \"2023-12-01T14:47:16.525Z\",\n                \"timezoneOffsetInMinutes\": -581,\n                \"freemanJobIdentifier\": \"0xbeFeEBb2e\",\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-11-27T14:47:16.530Z\",\n                \"updatedAt\": \"2023-11-27T14:47:16.531Z\",\n                \"organizationId\": \"c0cbd479-9734-4033-b800-b9a3627f6008\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"3995fef7-a82f-4d14-9916-b601129b49bf\",\n                \"eventId\": \"f3e6ac12-54c4-46f4-929d-167587189412\",\n                \"producerRecordIdentifier\": \"vnSdl\",\n                \"singleSignOnIdentifier\": \"OwS4fAi\",\n                \"name\": \"Hammes, Walter and Swift\",\n                \"isPreviousExhibitor\": false,\n                \"isFirstTime\": true,\n                \"isMember\": true,\n                \"badgeAllocationCount\": 2,\n                \"ticketAllocationCount\": 2,\n                \"staffAllocationCount\": 3,\n                \"phoneNumber\": \"421.572.4424 x98236\",\n                \"email\": \"Annie11@hotmail.com\",\n                \"producerSystem\": \"Y4aiSds\",\n                \"status\": \"Pending\",\n                \"website\": \"https://untimely-banker.org/\",\n                \"logoUrl\": \"https://picsum.photos/seed/V0mDlwM9y9/640/480\",\n                \"sponsorshipLevel\": \"Sz3l8dH\",\n                \"description\": \"New range of formal shirts are designed keeping you in mind. With fits and styling that will make you stand apart\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Martinique\\\"}\",\n                \"bookedAt\": \"2023-11-27T14:47:16.550Z\",\n                \"createdAt\": \"2023-11-27T14:47:16.550Z\",\n                \"updatedAt\": \"2023-11-27T14:47:16.551Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/ac4b9971-5113-4c1e-8ec0-1ec1a7c301fe\"\n            },\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/3995fef7-a82f-4d14-9916-b601129b49bf\"\n            }\n        },\n        \"children\": {\n            \"exhibitorcategory-exhibitorproduct\": {\n                \"href\": \"/exhibitorcategory-exhibitorproduct/v2?filter[exhibitorproductId][eq]=5c329402-24f9-4823-bed3-7be39b58add6\"\n            },\n            \"exhibitorproduct-exhibitorsubcategory\": {\n                \"href\": \"/exhibitorproduct-exhibitorsubcategory/v2?filter[exhibitorproductId][eq]=5c329402-24f9-4823-bed3-7be39b58add6\"\n            }\n        },\n        \"siblings\": {\n            \"exhibitorcategories\": {\n                \"href\": \"/exhibitorcategories/v2?filter[exhibitorproductId][eq]=5c329402-24f9-4823-bed3-7be39b58add6\"\n            },\n            \"exhibitorsubcategories\": {\n                \"href\": \"/exhibitorsubcategories/v2?filter[exhibitorproductId][eq]=5c329402-24f9-4823-bed3-7be39b58add6\"\n            }\n        }\n    }\n}"}],"_postman_id":"d3cf9ac7-832e-4750-a0d5-f5bbbbd6532b"},{"name":"Update an Exhibitorproduct","id":"394ddd87-ffed-4fb0-bfe5-626db1e942fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"STRM\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2/:exhibitorproductId","description":"<p>Modify one or more fields on the single Exhibitorproduct record of the supplied Exhibitorproduct ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary idenfifier of an existing Event.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary idenfifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>model</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>specifications</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td></td>\n<td>• Must be a valid URI</td>\n</tr>\n<tr>\n<td>imageUrl</td>\n<td>String</td>\n<td></td>\n<td>• Must have a fully qualified domain name.  <br />• Must utilize the https protocol.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td></td>\n<td>• Must be a valid JSON object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproducts","v2",":exhibitorproductId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"eefefdf0-4198-452d-8a95-7c7fe576c71e","description":{"content":"<p>Example: aad20f78-9cd6-43dd-ab55-3eee0f896fdf</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorproduct ID here>","key":"exhibitorproductId"}]}},"response":[{"id":"4c22a9ed-2055-4973-abe2-2d35a45cc795","name":"Update an Exhibitorproduct","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"STRM\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2/:exhibitorproductId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorproducts","v2",":exhibitorproductId"],"variable":[{"key":"exhibitorproductId","value":"aad20f78-9cd6-43dd-ab55-3eee0f896fdf","description":"Example: aad20f78-9cd6-43dd-ab55-3eee0f896fdf"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"901"},{"key":"ETag","value":"W/\"385-uI22zUmIhvU2mHGOsqGdj+ZDqDg\""},{"key":"Date","value":"Thu, 26 Oct 2023 12:51:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"aad20f78-9cd6-43dd-ab55-3eee0f896fdf\",\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"name\": \"STRM\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\",\n    \"customAttributes\": {\n        \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n        \"WEAR_LAYER\": \"8 MIL\"\n    },\n    \"createdAt\": \"2023-10-26T12:44:53.232Z\",\n    \"updatedAt\": \"2023-10-26T12:51:38.828Z\"\n}"}],"_postman_id":"394ddd87-ffed-4fb0-bfe5-626db1e942fb"},{"name":"Destroy an Exhibitorproduct","id":"c26d086b-631c-4931-af77-e71f7265b550","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproducts/v2/:exhibitorproductId","description":"<p>Permanently delete the Exhibitorproduct record of the supplied Exhibitorproduct ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproducts","v2",":exhibitorproductId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"ea36362a-70de-47ad-a7d8-423ab0f0d057","description":{"content":"<p>Example: aad20f78-9cd6-43dd-ab55-3eee0f896fdf</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorproduct ID here>","key":"exhibitorproductId"}]}},"response":[{"id":"ef703704-f28c-4a68-a7b2-e6007525b6a1","name":"Destroy an Exhibitor","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/exhibitorproducts/v2/:exhibitorproductId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorproducts","v2",":exhibitorproductId"],"variable":[{"key":"exhibitorproductId","value":"aad20f78-9cd6-43dd-ab55-3eee0f896fdf","description":"Example: aad20f78-9cd6-43dd-ab55-3eee0f896fdf"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"901"},{"key":"ETag","value":"W/\"385-uI22zUmIhvU2mHGOsqGdj+ZDqDg\""},{"key":"Date","value":"Thu, 26 Oct 2023 12:53:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"aad20f78-9cd6-43dd-ab55-3eee0f896fdf\",\n    \"eventId\": \"5638e9ca-ea8c-47f4-9f89-caf9cad36514\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"producerRecordIdentifier\": \"109f8947-873a-460f-9712-7082232f36db\",\n    \"name\": \"STRM\",\n    \"description\": \"2STYL® brings the popular 6” x 48” plank size to complement the original STYL™ collection of 6” x 36” 2.0mm/8 mil planks. 2STYL® also introduces new patterns and colors in two different constructions: standard glue down and HDC in 4.2mm/8 mil.\",\n    \"model\": \"BO2002\",\n    \"specifications\": \"6″ x 48″ Glue Down | 5.75″ x 47.75″ HDC\",\n    \"url\": \"https://avaflor.com/2styl/\",\n    \"imageUrl\": \"https://avaflor.com/wp-content/uploads/2019/05/WD8769.jpg\",\n    \"customAttributes\": {\n        \"WARRANTY\": \"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\",\n        \"WEAR_LAYER\": \"8 MIL\"\n    },\n    \"createdAt\": \"2023-10-26T12:44:53.232Z\",\n    \"updatedAt\": \"2023-10-26T12:51:38.828Z\"\n}"}],"_postman_id":"c26d086b-631c-4931-af77-e71f7265b550"}],"id":"17c7f077-8ab2-4c89-b09a-fc21d0193c8f","description":"<p>Exhibitorproducts typically refer to the products or goods that companies or individuals showcase or display at events.</p>\n<p>Exhibitorproducts can vary widely depending on the nature of the event and the industry it caters to. They may include: Consumer goods, industrial equipment, technology, healthcare, automotive, construction, agriculture, and more.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitor.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A description or summary of the product.</td>\n</tr>\n<tr>\n<td>model</td>\n<td>String</td>\n<td>The model name or number associated with the product.</td>\n</tr>\n<tr>\n<td>specifications</td>\n<td>String</td>\n<td>A description or summary that outlines the characteristics, features, and functionality of a product.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>URL of the product listing.</td>\n</tr>\n<tr>\n<td>imageUrl</td>\n<td>String</td>\n<td>URL of the product image.</td>\n</tr>\n<tr>\n<td>customAttributes</td>\n<td>JSON</td>\n<td>Custom attributes to store custom data in key value pairs.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"17c7f077-8ab2-4c89-b09a-fc21d0193c8f","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorproduct-Exhibitorsubcategory (v2)","item":[{"name":"List Exhibitorproduct-Exhibitorsubcategory relationships","id":"0c027cda-62b6-4305-b296-bd128b5b84f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2","description":"<p>Retrieve a collection of Exhibitorproduct-Exhibitorsubcategory relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorproductId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproduct-exhibitorsubcategory","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"bd35c420-cf79-4162-92ff-9cfe8330eea8","name":"List Exhibitorproduct-Exhibitorsubcategory relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5149"},{"key":"ETag","value":"W/\"141d-kCc5A8QajKXhaOzFOJf9o3lrsg4\""},{"key":"Date","value":"Mon, 06 Nov 2023 19:25:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"ae738f9f-6d1c-4c71-a230-96e67bba03b9\",\n            \"exhibitorproductId\": \"b718f15b-e456-4ba2-bcf2-7010a16bcd7f\",\n            \"exhibitorsubcategoryId\": \"902216d4-4bd2-4313-8eec-1f4d10a6406c\",\n            \"createdAt\": \"2023-11-06T19:18:03.530Z\",\n            \"updatedAt\": \"2023-11-06T19:18:03.530Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorproduct\": {\n                        \"href\": \"/exhibitorproducts/v2/b718f15b-e456-4ba2-bcf2-7010a16bcd7f\"\n                    },\n                    \"exhibitorsubcategory\": {\n                        \"href\": \"/exhibitorsubcategories/v2/902216d4-4bd2-4313-8eec-1f4d10a6406c\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"beeb7243-8a39-4546-9df5-192edb0c141d\",\n            \"exhibitorproductId\": \"76b73aba-3db6-4555-9bcf-d41038116d7f\",\n            \"exhibitorsubcategoryId\": \"82e91406-afdf-4510-b5ff-e63fb8374167\",\n            \"createdAt\": \"2023-11-06T19:18:03.612Z\",\n            \"updatedAt\": \"2023-11-06T19:18:03.612Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorproduct\": {\n                        \"href\": \"/exhibitorproducts/v2/76b73aba-3db6-4555-9bcf-d41038116d7f\"\n                    },\n                    \"exhibitorsubcategory\": {\n                        \"href\": \"/exhibitorsubcategories/v2/82e91406-afdf-4510-b5ff-e63fb8374167\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorproduct-exhibitorsubcategory/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"0c027cda-62b6-4305-b296-bd128b5b84f8"},{"name":"Create an Exhibitorproduct-Exhibitorsubcategory  relationship","id":"0dcd24c1-27d9-43ab-ba58-7e328b71ebf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{   \n    \"exhibitorproductId\": \"a3f52a6a-626c-4249-83e7-1bc21273484d\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2","description":"<p>Create a new Exhibitorproduct-Exhibitorsubcategory relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorproductId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorproduct.</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorsubcategory.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorproductId</code> and <code>exhibitorsubcategoryId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproduct-exhibitorsubcategory","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"f33e0800-9896-43bd-b8f8-9f6db8f57f34","name":"Create an Exhibitorproduct-Exhibitorsubcategory  relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{   \n    \"exhibitorproductId\": \"a3f52a6a-626c-4249-83e7-1bc21273484d\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"247"},{"key":"ETag","value":"W/\"f7-eiKkE5t6ruNOQfjsW36sJuINjzU\""},{"key":"Date","value":"Mon, 06 Nov 2023 19:31:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"076525ed-751a-49d7-81b0-43e8da8e2af9\",\n    \"exhibitorproductId\": \"a3f52a6a-626c-4249-83e7-1bc21273484d\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\",\n    \"updatedAt\": \"2023-11-06T19:31:19.714Z\",\n    \"createdAt\": \"2023-11-06T19:31:19.714Z\"\n}"}],"_postman_id":"0dcd24c1-27d9-43ab-ba58-7e328b71ebf0"},{"name":"Read an Exhibitorproduct-Exhibitorsubcategory  relationship","id":"c8384497-8f12-4e71-b06c-498d361ed5d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2/:id","description":"<p>Retrieve the single Exhibitorproduct-Exhibitorsubcategory relationship record of the supplied Exhibitorproduct-Exhibitorsubcategory ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorproducts</td>\n<td>exhibitorsubcategories</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproduct-exhibitorsubcategory","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"908d0549-9375-4b86-bf6d-6d0274a16dc9","description":{"content":"<p>Example: 076525ed-751a-49d7-81b0-43e8da8e2af9</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorproduct-Exhibitorsubcategory ID here>","key":"id"}]}},"response":[{"id":"c9682d8a-063a-493c-b60f-ecc5630d8d1d","name":"Read an Exhibitorproduct-Exhibitorsubcategory  relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorproduct-exhibitorsubcategory","v2",":id"],"variable":[{"key":"id","value":"076525ed-751a-49d7-81b0-43e8da8e2af9","description":"Example: 076525ed-751a-49d7-81b0-43e8da8e2af9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"485"},{"key":"ETag","value":"W/\"1e5-ZpMiLKwl2OLNRw47VojVTN10Fbw\""},{"key":"Date","value":"Mon, 06 Nov 2023 19:33:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"076525ed-751a-49d7-81b0-43e8da8e2af9\",\n    \"exhibitorproductId\": \"a3f52a6a-626c-4249-83e7-1bc21273484d\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\",\n    \"createdAt\": \"2023-11-06T19:31:19.714Z\",\n    \"updatedAt\": \"2023-11-06T19:31:19.714Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorproduct\": {\n                \"href\": \"/exhibitorproducts/v2/a3f52a6a-626c-4249-83e7-1bc21273484d\"\n            },\n            \"exhibitorsubcategory\": {\n                \"href\": \"/exhibitorsubcategories/v2/aa1038db-bc75-4010-a903-92a0855008fd\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"adc8312c-ff18-40c1-879c-02c68cf1ff7b","name":"Read an Exhibitorproduct-Exhibitorsubcategory  relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2/:id?include=exhibitorproducts,exhibitorsubcategories","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorproduct-exhibitorsubcategory","v2",":id"],"query":[{"key":"include","value":"exhibitorproducts,exhibitorsubcategories","type":"text"}],"variable":[{"key":"id","value":"8fe90bc9-0e46-401b-a3cb-32e6065857d3","description":"Example: 076525ed-751a-49d7-81b0-43e8da8e2af9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1975"},{"key":"ETag","value":"W/\"7b7-NLCWuu3ol0H3yWM6dCF/yBfQ4hA\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:13:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8fe90bc9-0e46-401b-a3cb-32e6065857d3\",\n    \"exhibitorproductId\": \"3142ae48-9aa3-47e1-90c6-5119370904ad\",\n    \"exhibitorsubcategoryId\": \"cbd7d725-7b2b-4267-972d-de67ef75ba72\",\n    \"createdAt\": \"2023-11-27T14:47:21.615Z\",\n    \"updatedAt\": \"2023-11-27T14:47:21.615Z\",\n    \"exhibitorproducts\": {\n        \"collection\": [\n            {\n                \"id\": \"3142ae48-9aa3-47e1-90c6-5119370904ad\",\n                \"eventId\": \"128cc604-29ef-47a6-b629-64ccd82e43ad\",\n                \"exhibitorId\": \"8da4e11f-5420-4777-91be-70902db3954a\",\n                \"producerRecordIdentifier\": \"50XHL\",\n                \"name\": \"O'Kon - Mills\",\n                \"description\": \"The slim & simple Maple Gaming Keyboard from Dev Byte comes with a sleek body and 7- Color RGB LED Back-lighting for smart functionality\",\n                \"model\": \"oKf8Z\",\n                \"specifications\": \"0x3BFAE07efc\",\n                \"url\": \"https://plastic-fanlight.net/\",\n                \"imageUrl\": \"https://picsum.photos/seed/349uwKMo1h/640/480\",\n                \"customAttributes\": \"{\\\"WEAR_LAYER\\\":\\\"8 MIL\\\",\\\"WARRANTY\\\":\\\"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\\\"}\",\n                \"createdAt\": \"2023-11-27T14:47:21.562Z\",\n                \"updatedAt\": \"2023-11-27T14:47:21.562Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorsubcategories\": {\n        \"collection\": [\n            {\n                \"id\": \"cbd7d725-7b2b-4267-972d-de67ef75ba72\",\n                \"eventId\": \"52d375ad-c372-4181-9cbd-003f5e62234c\",\n                \"exhibitorcategoryId\": \"9810e95b-50bb-4a08-bd56-2f039a55f873\",\n                \"producerRecordIdentifier\": \"E5hEc\",\n                \"name\": \"Soap\",\n                \"description\": \"The Football Is Good For Training And Recreational Purposes\",\n                \"createdAt\": \"2023-11-27T14:47:21.609Z\",\n                \"updatedAt\": \"2023-11-27T14:47:21.609Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorproduct\": {\n                \"href\": \"/exhibitorproducts/v2/3142ae48-9aa3-47e1-90c6-5119370904ad\"\n            },\n            \"exhibitorsubcategory\": {\n                \"href\": \"/exhibitorsubcategories/v2/cbd7d725-7b2b-4267-972d-de67ef75ba72\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"c8384497-8f12-4e71-b06c-498d361ed5d6"},{"name":"Delete an Exhibitorproduct-Exhibitorsubcategory relationship","id":"47dd9ed2-bb42-4655-911c-aadaf1fe33b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2/:id","description":"<p>Permanently delete the Exhibitorproduct-Exhibitorsubcategory relationship record of the supplied Exhibitorproduct-Exhibitorsubcategory ID. Destroying a relationship record will not destroy the supplied Exhibitorproduct or the supplied Exhibitorsubcategory, it will instead cause the supplied Exhibitorproduct and Exhibitorsubcategory to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorproduct-exhibitorsubcategory","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"2fc0554b-7095-4d2b-b790-bb08e112f58c","description":{"content":"<p>Example: ae738f9f-6d1c-4c71-a230-96e67bba03b9</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorproduct-Exhibitorsubcategory ID here>","key":"id"}]}},"response":[{"id":"17cf51ee-f702-4bd7-b7fc-15bd1fb47ebb","name":"Delete an Exhibitorproduct-Exhibitorsubcategory relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorproduct-exhibitorsubcategory/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorproduct-exhibitorsubcategory","v2",":id"],"variable":[{"key":"id","value":"ae738f9f-6d1c-4c71-a230-96e67bba03b9","description":"Example: ae738f9f-6d1c-4c71-a230-96e67bba03b9"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"247"},{"key":"ETag","value":"W/\"f7-FmqnO5dzKuISyu+pSSOVDVypnQA\""},{"key":"Date","value":"Mon, 06 Nov 2023 19:35:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ae738f9f-6d1c-4c71-a230-96e67bba03b9\",\n    \"exhibitorproductId\": \"b718f15b-e456-4ba2-bcf2-7010a16bcd7f\",\n    \"exhibitorsubcategoryId\": \"902216d4-4bd2-4313-8eec-1f4d10a6406c\",\n    \"createdAt\": \"2023-11-06T19:18:03.530Z\",\n    \"updatedAt\": \"2023-11-06T19:18:03.530Z\"\n}"}],"_postman_id":"47dd9ed2-bb42-4655-911c-aadaf1fe33b8"}],"id":"572e0218-b6f2-40e1-9e11-8743f789147a","description":"<p>The Exhibitorproduct-Exhibitorsubcategory entity provides a way to interact with the relationships between Exhibitorproduct and Exhibitorsubcategory. A single Exhibitorproduct can have many Exhibitorsubcategories and a single Exhibitorsubcategory can belong to many Exhibitorproducts.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorproductId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorproduct.</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorsubcategory.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"572e0218-b6f2-40e1-9e11-8743f789147a","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorcategories (v2)","item":[{"name":"List Exhibitorcategories","id":"ee2a58a0-153a-4c88-a9e8-653a90196cef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategories/v2","description":"<p>Retrieve a collection of Exhibitorcategory records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitorproductId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategories","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"fba258ec-26d4-48a5-848d-f17148de34c5","name":"List Exhibitorcategories","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitorcategories/v2","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorcategories","v2"],"query":[{"key":"filter[id][in][]","value":"e6e8926f-6db8-4af4-8ac3-8eee0463f73c","description":"filter exhibitorcategories where id matches one of the values provided.  Pass more filter queries like that to pass more items to the array. See example.","disabled":true},{"key":"filter[eventId][eq]","value":"05930e27-c388-4269-9baa-0d5a06e2909e","type":"text","description":"get exhibitorcategories with eventId \"05930e27-c388-4269-9baa-0d5a06e2909e\".","disabled":true},{"key":"filter[producerRecordIdentifier][eq]","value":"null","type":"text","description":"filter exhibitorcategories where producerRecordIdentifier equals to null.","disabled":true},{"key":"filter[name][endsWith]","value":"September","type":"text","description":"filter exhibitorcategories where name ends with \"September\".","disabled":true},{"key":"filter[description][substring]","value":"ame","type":"text","description":"filter exhibitorcategories where description has a substring \"ame\".","disabled":true},{"key":"filter[createdAt][gte]","value":"2022-04-01","type":"text","description":"filter exhibitorcategories that have been created on or after 2022-04-01 using greater than or equal operator.","disabled":true},{"key":"filter[updatedAt][lt]","value":"2022-04-12","type":"text","description":"filter exhibitorcategories that have been updated before 2022-04-12 using less than operator","disabled":true},{"key":"sort[asc]","value":"createdAt","type":"text","description":"sort exhibitorcategories by created on time in ascending order.","disabled":true},{"key":"page","value":"1","type":"text","description":"get the first page of exhibitorcategories records using page query param","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1848"},{"key":"ETag","value":"W/\"738-MeQfzpjmuBJ3Bjd0pUxrFWdIqNI\""},{"key":"Date","value":"Thu, 12 Oct 2023 14:26:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"e6e8926f-6db8-4af4-8ac3-8eee0463f73c\",\n            \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n            \"producerRecordIdentifier\": \"363fd5a8-6c11-48c8-96cc-428df6c9288d\",\n            \"name\":\"Building Materials\",\n            \"description\":\"Building materials are the raw materials or products used in construction and building projects. They are the essential components that go into the construction of structures, from homes to large-scale commercial buildings. Building materials can be broadly categorized into various types, each with specific characteristics and uses.\",\n            \"updatedAt\": \"2023-10-04T16:19:33.531Z\",\n            \"createdAt\": \"2023-10-04T16:19:33.531Z\",  \n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/05930e27-c388-4269-9baa-0d5a06e2909e\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"11df8351-71fd-4e64-b13e-b20762bf28c6\",\n            \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n            \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\",\n            \"name\": \"Construction Equipment\",\n            \"description\": \"Construction equipment consists of heavy machinery and tools used for various construction tasks. They are critical for excavation, earthmoving, material handling, and building processes on construction sites.\",\n            \"createdAt\": \"2023-10-03T20:14:23.968Z\",\n            \"updatedAt\": \"2023-10-04T16:20:38.988Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/05930e27-c388-4269-9baa-0d5a06e2909e\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorcategories/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"ee2a58a0-153a-4c88-a9e8-653a90196cef"},{"name":"Create an Exhibitorcategory","id":"0e66916e-6932-4c2b-b476-6d4507b55047","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"producerRecordIdentifier\": \"363fd5a8-6c11-48c8-96cc-428df6c9288d\",\n    \"name\":\"Building Materials\",\n    \"description\":\"Building materials are the raw materials or products used in construction and building projects. They are the essential components that go into the construction of structures, from homes to large-scale commercial buildings. Building materials can be broadly categorized into various types, each with specific characteristics and uses.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategories/v2","description":"<p>Create a new Exhibitorcategory record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategories","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"dd7e724f-8113-4442-82c0-149043505856","name":"Create an Exhibitorcategory","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"producerRecordIdentifier\": \"363fd5a8-6c11-48c8-96cc-428df6c9288d\",\n    \"name\":\"Building Materials\",\n    \"description\":\"Building materials are the raw materials or products used in construction and building projects. They are the essential components that go into the construction of structures, from homes to large-scale commercial buildings. Building materials can be broadly categorized into various types, each with specific characteristics and uses.\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5050/exhibitorcategories/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"273"},{"key":"ETag","value":"W/\"111-oG9VYuS9LnEyha8YyRzdrCJEimM\""},{"key":"Date","value":"Wed, 04 Oct 2023 16:19:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e6e8926f-6db8-4af4-8ac3-8eee0463f73c\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"producerRecordIdentifier\": \"363fd5a8-6c11-48c8-96cc-428df6c9288d\",\n    \"name\":\"Building Materials\",\n    \"description\":\"Building materials are the raw materials or products used in construction and building projects. They are the essential components that go into the construction of structures, from homes to large-scale commercial buildings. Building materials can be broadly categorized into various types, each with specific characteristics and uses.\",\n    \"updatedAt\": \"2023-10-04T16:19:33.531Z\",\n    \"createdAt\": \"2023-10-04T16:19:33.531Z\"\n}"}],"_postman_id":"0e66916e-6932-4c2b-b476-6d4507b55047"},{"name":"Read an Exhibitorcategory","id":"c4c934f3-39b8-437d-b5d3-aec2ed9c8255","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategories/v2/:exhibitorcategoryId","description":"<p>Retrieve the single Exhibitorcategory record of the supplied Exhibitorcategory ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>exhibitors</td>\n<td>exhibitorproducts</td>\n</tr>\n<tr>\n<td>exhibitorsubcategories</td>\n<td>exhibitor-exhibitorcategory</td>\n<td>exhibitorcategory-exhibitorproduct</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategories","v2",":exhibitorcategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"3b1c19a9-ff92-478c-898b-4152ce4c0992","description":{"content":"<p>Example: 11df8351-71fd-4e64-b13e-b20762bf28c</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcategory ID here>","key":"exhibitorcategoryId"}]}},"response":[{"id":"232d6c32-37b4-46e8-87d3-b2da726ee288","name":"Read an Exhibitorcategory","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5050/exhibitorcategories/v2/:exhibitorcategoryId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorcategories","v2",":exhibitorcategoryId"],"variable":[{"key":"exhibitorcategoryId","value":"11df8351-71fd-4e64-b13e-b20762bf28c6","description":"Example: 11df8351-71fd-4e64-b13e-b20762bf28c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"390"},{"key":"ETag","value":"W/\"186-9/Wx6vfis+iIWToXL6dBKxOG2Mo\""},{"key":"Date","value":"Wed, 04 Oct 2023 14:30:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11df8351-71fd-4e64-b13e-b20762bf28c6\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"producerRecordIdentifier\": \"363fd5a8-6c11-48c8-96cc-428df6c9288d\",\n    \"name\":\"Building Materials\",\n    \"description\":\"Building materials are the raw materials or products used in construction and building projects. They are the essential components that go into the construction of structures, from homes to large-scale commercial buildings. Building materials can be broadly categorized into various types, each with specific characteristics and uses.\",\n    \"createdAt\": \"2023-10-03T20:14:23.968Z\",\n    \"updatedAt\": \"2023-10-03T20:14:23.968Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/05930e27-c388-4269-9baa-0d5a06e2909e\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"72e6f466-809b-4375-b7a3-ea5a788d75a3","name":"Read an Exhibitorcategory with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcategories/v2/:exhibitorcategoryId?include=events","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcategories","v2",":exhibitorcategoryId"],"query":[{"key":"include","value":"events","type":"text"}],"variable":[{"key":"exhibitorcategoryId","value":"52ff730d-1042-4680-95a7-cbfb934cd3ec","description":"Example: 11df8351-71fd-4e64-b13e-b20762bf28c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1881"},{"key":"ETag","value":"W/\"759-1vNUbnNv/Ab6/pn8OPWuwGSASh4\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:16:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"52ff730d-1042-4680-95a7-cbfb934cd3ec\",\n    \"eventId\": \"469e5da7-e0be-4c30-a005-4e4c3c7e59c9\",\n    \"producerRecordIdentifier\": \"6EcIl\",\n    \"name\": \"Computer\",\n    \"description\": \"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016\",\n    \"createdAt\": \"2023-11-14T20:23:27.617Z\",\n    \"updatedAt\": \"2023-11-14T20:23:27.617Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"469e5da7-e0be-4c30-a005-4e4c3c7e59c9\",\n                \"shortName\": \"Rustic Kids Annual Meeting 2023\",\n                \"fullName\": \"Generic Fantastic Cotton Keyboard Beauty Annual Meeting 2023\",\n                \"systemName\": \"rustickidsannualmeeting2023-f3a8\",\n                \"website\": \"https://strident-checkout.net\",\n                \"description\": null,\n                \"startsAt\": \"2023-11-14T20:23:27.614Z\",\n                \"endsAt\": \"2023-11-18T20:23:27.612Z\",\n                \"timezoneOffsetInMinutes\": 0,\n                \"freemanJobIdentifier\": null,\n                \"isSandbox\": false,\n                \"createdAt\": \"2023-11-14T20:23:27.614Z\",\n                \"updatedAt\": \"2023-11-14T20:23:27.614Z\",\n                \"organizationId\": \"16c51606-f65f-438a-9ecf-8c31b6a859f5\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/469e5da7-e0be-4c30-a005-4e4c3c7e59c9\"\n            }\n        },\n        \"children\": {\n            \"exhibitorsubcategories\": {\n                \"href\": \"/exhibitorsubcategories/v2?filter[exhibitorcategoryId][eq]=52ff730d-1042-4680-95a7-cbfb934cd3ec\"\n            },\n            \"exhibitor-exhibitorcategory\": {\n                \"href\": \"/exhibitor-exhibitorcategory/v2?filter[exhibitorcategoryId][eq]=52ff730d-1042-4680-95a7-cbfb934cd3ec\"\n            },\n            \"exhibitorcategory-exhibitorproduct\": {\n                \"href\": \"/exhibitorcategory-exhibitorproduct/v2?filter[exhibitorcategoryId][eq]=52ff730d-1042-4680-95a7-cbfb934cd3ec\"\n            }\n        },\n        \"siblings\": {\n            \"exhibitors\": {\n                \"href\": \"/exhibitors/v2?filter[exhibitorcategoryId][eq]=52ff730d-1042-4680-95a7-cbfb934cd3ec\"\n            },\n            \"exhibitorproducts\": {\n                \"href\": \"/exhibitorproducts/v2?filter[exhibitorcategoryId][eq]=52ff730d-1042-4680-95a7-cbfb934cd3ec\"\n            }\n        }\n    }\n}"}],"_postman_id":"c4c934f3-39b8-437d-b5d3-aec2ed9c8255"},{"name":"Update an Exhibitorcategory","id":"6c77adf3-11ca-4d34-82b8-d69a29dd2222","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategories/v2/:exhibitorcategoryId","description":"<p>Modify one or more fields on the single Exhibitorcategory record of the supplied Exhibitorcategory ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategories","v2",":exhibitorcategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"05578a7f-e6ce-4b0f-8424-731e6bfc8470","description":{"content":"<p>Example: 11df8351-71fd-4e64-b13e-b20762bf28c6</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcategory ID here> ","key":"exhibitorcategoryId"}]}},"response":[{"id":"cb44ba74-ae5d-4f12-8749-a7f6e2f073a8","name":"Update an Exhibitorcategory","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5050/exhibitorcategories/v2/:exhibitorcategoryId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorcategories","v2",":exhibitorcategoryId"],"variable":[{"key":"exhibitorcategoryId","value":"11df8351-71fd-4e64-b13e-b20762bf28c6","description":"Example: 11df8351-71fd-4e64-b13e-b20762bf28c6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"271"},{"key":"ETag","value":"W/\"10f-DSxSt9uOtQEVQUURqXnJyor5EX4\""},{"key":"Date","value":"Wed, 04 Oct 2023 16:20:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11df8351-71fd-4e64-b13e-b20762bf28c6\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\",\n    \"name\": \"Construction Equipment\",\n    \"description\": \"Construction equipment consists of heavy machinery and tools used for various construction tasks. They are critical for excavation, earthmoving, material handling, and building processes on construction sites.\",\n    \"createdAt\": \"2023-10-03T20:14:23.968Z\",\n    \"updatedAt\": \"2023-10-04T16:20:38.988Z\"\n}"}],"_postman_id":"6c77adf3-11ca-4d34-82b8-d69a29dd2222"},{"name":"Destroy an Exhibitorcategory","id":"866d0023-4abc-418c-aaa7-523910711b2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategories/v2/:exhibitorcategoryId","description":"<p>Permanently delete the Exhibitorcategory record of the supplied Exhibitorcategory ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategories","v2",":exhibitorcategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"376bc64e-4ecf-4da5-bd03-55e4dc2300eb","description":{"content":"<p>Example: 11df8351-71fd-4e64-b13e-b20762bf28c6</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcategory ID here> ","key":"exhibitorcategoryId"}]}},"response":[{"id":"d62daed6-d336-4806-ad48-60a34b40f64c","name":"Destroy an Exhibitorcategory","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5050/exhibitorcategories/v2/:exhibitorcategoryId","protocol":"http","host":["localhost"],"port":"5050","path":["exhibitorcategories","v2",":exhibitorcategoryId"],"variable":[{"key":"exhibitorcategoryId","value":"11df8351-71fd-4e64-b13e-b20762bf28c6","description":"11df8351-71fd-4e64-b13e-b20762bf28c6"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"271"},{"key":"ETag","value":"W/\"10f-DSxSt9uOtQEVQUURqXnJyor5EX4\""},{"key":"Date","value":"Wed, 04 Oct 2023 16:21:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11df8351-71fd-4e64-b13e-b20762bf28c6\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"producerRecordIdentifier\": \"9fd35abf-73d4-4f26-987d-2ff72277dc36\",\n    \"name\": \"Construction Equipment\",\n    \"description\": \"Construction equipment consists of heavy machinery and tools used for various construction tasks. They are critical for excavation, earthmoving, material handling, and building processes on construction sites.\",\n    \"createdAt\": \"2023-10-03T20:14:23.968Z\",\n    \"updatedAt\": \"2023-10-04T16:20:38.988Z\"\n}"}],"_postman_id":"866d0023-4abc-418c-aaa7-523910711b2a"}],"id":"cea8154e-676f-449c-b5b6-7a4c6e98af84","description":"<p>Exhibitorcategories, also known as exhibitor classifications or exhibitor types, are classifications or groupings used to categorize and organize the companies or organizations participating in their events.</p>\n<p>These categories help attendees and exhibitors navigate the event and find relevant products, services, or companies more easily. The specific exhibitor categories can vary depending on the type and focus of the event, but some common examples include: Industry (Healthcare, Technology, Fashion etc.), Products (Software, hardware, telecommunications etc.).</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name of the Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A description of the Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"cea8154e-676f-449c-b5b6-7a4c6e98af84","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitor-Exhibitorcategory (v2)","item":[{"name":"List Exhibitor-Exhibitorcategory relationships","id":"fc77abef-9343-48bc-86a6-7914d5719b88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2","description":"<p>Retrieve a collection of Exhibitor-Exhibitorcategory relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorcategory","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"5e6c18c9-5f67-4bf8-a4df-065321ba510c","name":"List Exhibitor-Exhibitorcategory relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1189"},{"key":"ETag","value":"W/\"4a5-I3U0aAFTrRkBQqvRg1A4YcA+O1o\""},{"key":"Date","value":"Fri, 27 Oct 2023 19:18:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"e16c2f43-e145-47da-b718-99fdccc31a08\",\n            \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n            \"exhibitorcategoryId\": \"580dc2f1-2f77-4734-90d7-b3f7d9afb834\",\n            \"createdAt\": \"2023-10-27T19:17:24.109Z\",\n            \"updatedAt\": \"2023-10-27T19:17:24.109Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/1961151b-598a-46d8-83c1-fbb5e68988f4\"\n                    },\n                    \"exhibitorcategory\": {\n                        \"href\": \"/exhibitorcategories/v2/580dc2f1-2f77-4734-90d7-b3f7d9afb834\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"3ee94e60-76df-429b-a029-d3e89426aa23\",\n            \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n            \"exhibitorcategoryId\": \"4dde9385-e4be-40e2-aae3-547c7a3a17b2\",\n            \"createdAt\": \"2023-10-27T19:17:48.623Z\",\n            \"updatedAt\": \"2023-10-27T19:17:48.623Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/1961151b-598a-46d8-83c1-fbb5e68988f4\"\n                    },\n                    \"exhibitorcategory\": {\n                        \"href\": \"/exhibitorcategories/v2/4dde9385-e4be-40e2-aae3-547c7a3a17b2\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitor-exhibitorcategory/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"fc77abef-9343-48bc-86a6-7914d5719b88"},{"name":"Create an Exhibitor-Exhibitorcategory relationship","id":"5d7417d3-22a5-4da0-8273-521c52149ce4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"exhibitorcategoryId\": \"580dc2f1-2f77-4734-90d7-b3f7d9afb834\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2","description":"<p>Create a new Exhibitor-Exhibitorcategory relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorcategory.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorId</code> and <code>exhibitorcategoryId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorcategory","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"a38b9f53-76c1-4c10-bc0e-04a69f748c2f","name":"Create an Exhibitor-Exhibitorcategory relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"exhibitorcategoryId\": \"580dc2f1-2f77-4734-90d7-b3f7d9afb834\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"237"},{"key":"ETag","value":"W/\"ed-bSt6VJ0fqWzK30g0McGv9gbXNt0\""},{"key":"Date","value":"Fri, 27 Oct 2023 19:17:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e16c2f43-e145-47da-b718-99fdccc31a08\",\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"exhibitorcategoryId\": \"580dc2f1-2f77-4734-90d7-b3f7d9afb834\",\n    \"updatedAt\": \"2023-10-27T19:17:24.109Z\",\n    \"createdAt\": \"2023-10-27T19:17:24.109Z\"\n}"}],"_postman_id":"5d7417d3-22a5-4da0-8273-521c52149ce4"},{"name":"Read an Exhibitor-Exhibitorcategory relationship","id":"a4d9574b-d75c-427c-b757-aff9158bfb45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2/:id","description":"<p>Retrieve the single Exhibitor-Exhibitorcategory relationship record of the supplied Exhibitor-Exhibitorcategory ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitors</td>\n<td>exhibitorcategories</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorcategory","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"5b9137a7-7a7a-480d-877e-42796197920a","description":{"content":"<p>Example: e16c2f43-e145-47da-b718-99fdccc31a08</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Exhibitorcategory ID here>","key":"id"}]}},"response":[{"id":"e620832c-d715-41ce-9c5c-27affba6ac03","name":"Read an Exhibitor-Exhibitorcategory relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitorcategory","v2",":id"],"variable":[{"key":"id","value":"e16c2f43-e145-47da-b718-99fdccc31a08","description":"Example: e16c2f43-e145-47da-b718-99fdccc31a08"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"455"},{"key":"ETag","value":"W/\"1c7-rg2QOa6RilgB3rTHiPNEV4/yaV8\""},{"key":"Date","value":"Fri, 27 Oct 2023 19:18:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e16c2f43-e145-47da-b718-99fdccc31a08\",\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"exhibitorcategoryId\": \"580dc2f1-2f77-4734-90d7-b3f7d9afb834\",\n    \"createdAt\": \"2023-10-27T19:17:24.109Z\",\n    \"updatedAt\": \"2023-10-27T19:17:24.109Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/1961151b-598a-46d8-83c1-fbb5e68988f4\"\n            },\n            \"exhibitorcategory\": {\n                \"href\": \"/exhibitorcategories/v2/580dc2f1-2f77-4734-90d7-b3f7d9afb834\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"eb8c55ce-979c-495f-bc5e-2878b1d01cb7","name":"Read an Exhibitor-Exhibitorcategory relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2/:id?include=exhibitors,exhibitorcategories","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitorcategory","v2",":id"],"query":[{"key":"include","value":"exhibitors,exhibitorcategories","type":"text"}],"variable":[{"key":"id","value":"dd1912aa-24a3-4b7a-8514-e8e467753d5e","description":"Example: e16c2f43-e145-47da-b718-99fdccc31a08"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2092"},{"key":"ETag","value":"W/\"82c-rv4sjXkf+niLssjCZwyzvSvn3wU\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:18:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"dd1912aa-24a3-4b7a-8514-e8e467753d5e\",\n    \"exhibitorId\": \"9ef19b83-e60e-4a16-9e89-8fc18652114b\",\n    \"exhibitorcategoryId\": \"1ae74509-1b16-4910-ba0b-b2f735543313\",\n    \"createdAt\": \"2023-11-14T20:23:28.620Z\",\n    \"updatedAt\": \"2023-11-14T20:23:28.620Z\",\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"9ef19b83-e60e-4a16-9e89-8fc18652114b\",\n                \"eventId\": \"e77a4928-b956-46d9-8a99-cb133696694d\",\n                \"producerRecordIdentifier\": \"JnUGR\",\n                \"singleSignOnIdentifier\": \"l0FeKlw\",\n                \"name\": \"Champlin Group\",\n                \"isPreviousExhibitor\": true,\n                \"isFirstTime\": false,\n                \"isMember\": true,\n                \"badgeAllocationCount\": 3,\n                \"ticketAllocationCount\": 5,\n                \"staffAllocationCount\": 1,\n                \"phoneNumber\": \"313.840.6771 x32895\",\n                \"email\": \"Delaney_Smith98@yahoo.com\",\n                \"producerSystem\": \"0AMooux\",\n                \"status\": \"Confirmed\",\n                \"website\": \"https://free-counsel.info/\",\n                \"logoUrl\": \"https://picsum.photos/seed/ruypA/640/480\",\n                \"sponsorshipLevel\": \"Lh6sw5q\",\n                \"description\": \"New range of formal shirts are designed keeping you in mind. With fits and styling that will make you stand apart\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Reunion\\\"}\",\n                \"bookedAt\": \"2023-11-14T20:23:28.605Z\",\n                \"createdAt\": \"2023-11-14T20:23:28.605Z\",\n                \"updatedAt\": \"2023-11-14T20:23:28.606Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorcategories\": {\n        \"collection\": [\n            {\n                \"id\": \"1ae74509-1b16-4910-ba0b-b2f735543313\",\n                \"eventId\": \"12df1a45-ece4-4e2a-aa2a-3a1bea3aa438\",\n                \"producerRecordIdentifier\": \"nKHcZ\",\n                \"name\": \"Computer\",\n                \"description\": \"The slim & simple Maple Gaming Keyboard from Dev Byte comes with a sleek body and 7- Color RGB LED Back-lighting for smart functionality\",\n                \"createdAt\": \"2023-11-14T20:23:28.617Z\",\n                \"updatedAt\": \"2023-11-14T20:23:28.617Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/9ef19b83-e60e-4a16-9e89-8fc18652114b\"\n            },\n            \"exhibitorcategory\": {\n                \"href\": \"/exhibitorcategories/v2/1ae74509-1b16-4910-ba0b-b2f735543313\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"a4d9574b-d75c-427c-b757-aff9158bfb45"},{"name":"Delete an Exhibitor-Exhibitorcategory relationship","id":"c990c580-cccf-45be-a7c7-a8269656fa6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2/:id","description":"<p>Permanently delete the Exhibitor-Exhibitorcategory relationship record of the supplied Exhibitor-Exhibitorcategory ID. Destroying a relationship record will not destroy the supplied Exhibitor or the supplied Exhibitorcategory, it will instead cause the supplied Exhibitor and Exhibitorcategory to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorcategory","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"baa57bb8-f36c-44e3-86b6-78c413c562b4","description":{"content":"<p>Example: 3ee94e60-76df-429b-a029-d3e89426aa23</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Exhibitorcategory ID here>","key":"id"}]}},"response":[{"id":"0c0aeb81-d77d-46ce-b63e-fa7076bd5b92","name":"Delete an Exhibitor-Exhibitorcategory relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorcategory/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitorcategory","v2",":id"],"variable":[{"key":"id","value":"3ee94e60-76df-429b-a029-d3e89426aa23","description":"Example: 3ee94e60-76df-429b-a029-d3e89426aa23"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"237"},{"key":"ETag","value":"W/\"ed-dMLLZkCytfgsdQgDwYXAylLig3s\""},{"key":"Date","value":"Fri, 27 Oct 2023 19:19:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3ee94e60-76df-429b-a029-d3e89426aa23\",\n    \"exhibitorId\": \"1961151b-598a-46d8-83c1-fbb5e68988f4\",\n    \"exhibitorcategoryId\": \"4dde9385-e4be-40e2-aae3-547c7a3a17b2\",\n    \"createdAt\": \"2023-10-27T19:17:48.623Z\",\n    \"updatedAt\": \"2023-10-27T19:17:48.623Z\"\n}"}],"_postman_id":"c990c580-cccf-45be-a7c7-a8269656fa6b"}],"id":"527542cf-2da1-4df3-81ec-74f540c2b2c1","description":"<p>The Exhibitor-Exhibitorcategory entity provides a way to interact with the relationships between Exhibitors and Exhibitorcategories . A single Exhibitorcategory can have many Exhibitors and a single Exhibitor can belong to many Exhibitorcategories.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitor.</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"527542cf-2da1-4df3-81ec-74f540c2b2c1","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorcategory-Exhibitorproduct (v2)","item":[{"name":"List Exhibitorcategory-Exhibitorproduct relationships","id":"9de47f50-f746-481a-8311-1633884167d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2","description":"<p>Retrieve a collection of Exhibitorcategory-Exhibitorproduct relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorproductId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategory-exhibitorproduct","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"af521c62-93ac-4a45-9775-db1ad928d903","name":"List Exhibitorcategory-Exhibitorproduct relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1238"},{"key":"ETag","value":"W/\"4d6-oiq+v9Zt1WKYDRY3/nm2wrxq0YQ\""},{"key":"Date","value":"Fri, 03 Nov 2023 17:06:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"603d5017-8679-4006-9acf-32410835824d\",\n            \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n            \"exhibitorproductId\": \"28984229-d19a-4556-bea0-31e03bc1f929\",\n            \"createdAt\": \"2023-11-03T17:02:14.761Z\",\n            \"updatedAt\": \"2023-11-03T17:02:14.761Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorcategory\": {\n                        \"href\": \"/exhibitorcategories/v2/0a6ee549-8add-4258-be17-c57084346fe4\"\n                    },\n                    \"exhibitorproduct\": {\n                        \"href\": \"/exhibitorproducts/v2/28984229-d19a-4556-bea0-31e03bc1f929\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"90ee4f4c-a217-428d-8f95-aa9baab0926b\",\n            \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n            \"exhibitorproductId\": \"58673114-47c3-4a7b-9c1c-4521fffbed4f\",\n            \"createdAt\": \"2023-11-03T17:02:59.695Z\",\n            \"updatedAt\": \"2023-11-03T17:02:59.695Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitorcategory\": {\n                        \"href\": \"/exhibitorcategories/v2/0a6ee549-8add-4258-be17-c57084346fe4\"\n                    },\n                    \"exhibitorproduct\": {\n                        \"href\": \"/exhibitorproducts/v2/58673114-47c3-4a7b-9c1c-4521fffbed4f\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorcategory-exhibitorproduct/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"9de47f50-f746-481a-8311-1633884167d7"},{"name":"Create an Exhibitorcategory-Exhibitorproduct  relationship","id":"e5bf3de8-2bf8-4f1a-baac-d6377f4d9850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"exhibitorproductId\": \"28984229-d19a-4556-bea0-31e03bc1f929\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2","description":"<p>Create a new Exhibitorcategory-Exhibitorproduct relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>exhibitorproductId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorproduct.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorcategoryId</code> and <code>exhibitorproductId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategory-exhibitorproduct","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"1e1288a5-e666-4159-ae64-d48e618f7bb1","name":"Create an Exhibitorcategory-Exhibitorproduct  relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"exhibitorproductId\": \"28984229-d19a-4556-bea0-31e03bc1f929\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"244"},{"key":"ETag","value":"W/\"f4-JUcBzjMY1M99hfQ/6Jpt9NGZZGg\""},{"key":"Date","value":"Fri, 03 Nov 2023 17:02:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"603d5017-8679-4006-9acf-32410835824d\",\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"exhibitorproductId\": \"28984229-d19a-4556-bea0-31e03bc1f929\",\n    \"updatedAt\": \"2023-11-03T17:02:14.761Z\",\n    \"createdAt\": \"2023-11-03T17:02:14.761Z\"\n}"}],"_postman_id":"e5bf3de8-2bf8-4f1a-baac-d6377f4d9850"},{"name":"Read an Exhibitorcategory-Exhibitorproduct  relationship","id":"189b90c4-a877-4c07-8de4-679460a17b63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2/:id","description":"<p>Retrieve the single Exhibitorcategory-Exhibitorproduct relationship record of the supplied Exhibitorcategory-Exhibitorproduct ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorcategories</td>\n<td>exhibitorproduct</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategory-exhibitorproduct","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"4d7ce727-ac51-4fb1-b386-f7a3c8819316","description":{"content":"<p>Example: 603d5017-8679-4006-9acf-32410835824d</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcategory-Exhibitorproduct ID here>","key":"id"}]}},"response":[{"id":"d31bb8b0-073e-427a-bfe3-ae75f8d2ebee","name":"Read an Exhibitorcategory-Exhibitorproduct  relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcategory-exhibitorproduct","v2",":id"],"variable":[{"key":"id","value":"603d5017-8679-4006-9acf-32410835824d","description":"Example: 603d5017-8679-4006-9acf-32410835824d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"476"},{"key":"ETag","value":"W/\"1dc-FD7aKd+tIzIFf0OyQ0pW87zwA38\""},{"key":"Date","value":"Fri, 03 Nov 2023 17:06:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"603d5017-8679-4006-9acf-32410835824d\",\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"exhibitorproductId\": \"28984229-d19a-4556-bea0-31e03bc1f929\",\n    \"createdAt\": \"2023-11-03T17:02:14.761Z\",\n    \"updatedAt\": \"2023-11-03T17:02:14.761Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorcategory\": {\n                \"href\": \"/exhibitorcategories/v2/0a6ee549-8add-4258-be17-c57084346fe4\"\n            },\n            \"exhibitorproduct\": {\n                \"href\": \"/exhibitorproducts/v2/28984229-d19a-4556-bea0-31e03bc1f929\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"9061db9d-2472-44b6-b2e4-39d05f2ce440","name":"Read an Exhibitorcategory-Exhibitorproduct  relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2/:id?include=exhibitorcategories,exhibitorproducts","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcategory-exhibitorproduct","v2",":id"],"query":[{"key":"include","value":"exhibitorcategories,exhibitorproducts","type":"text"}],"variable":[{"key":"id","value":"471cd672-f191-4870-b158-709265098b7b","description":"Example: 603d5017-8679-4006-9acf-32410835824d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1908"},{"key":"ETag","value":"W/\"774-8i3incWysK7K/lZXb7ArmbQQe8w\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:21:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"471cd672-f191-4870-b158-709265098b7b\",\n    \"exhibitorcategoryId\": \"8f4bc3ff-6310-4d50-a349-9acac50fd199\",\n    \"exhibitorproductId\": \"71762362-b7a9-428d-b63a-77302020e531\",\n    \"createdAt\": \"2023-11-27T14:47:20.211Z\",\n    \"updatedAt\": \"2023-11-27T14:47:20.211Z\",\n    \"exhibitorcategories\": {\n        \"collection\": [\n            {\n                \"id\": \"8f4bc3ff-6310-4d50-a349-9acac50fd199\",\n                \"eventId\": \"3be9de09-b894-4d80-acf4-a894dc6db8aa\",\n                \"producerRecordIdentifier\": \"Rg2Av\",\n                \"name\": \"Salad\",\n                \"description\": \"The Nagasaki Lander is the trademarked name of several series of Nagasaki sport bikes, that started with the 1984 ABC800J\",\n                \"createdAt\": \"2023-11-27T14:47:20.164Z\",\n                \"updatedAt\": \"2023-11-27T14:47:20.164Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorproducts\": {\n        \"collection\": [\n            {\n                \"id\": \"71762362-b7a9-428d-b63a-77302020e531\",\n                \"eventId\": \"26182fa3-951f-477a-93d9-4304acb53a4c\",\n                \"exhibitorId\": \"9c3a9e00-c673-4645-8be4-cf3d74e3f068\",\n                \"producerRecordIdentifier\": \"PCm2N\",\n                \"name\": \"Auer and Sons\",\n                \"description\": \"Carbonite web goalkeeper gloves are ergonomically designed to give easy fit\",\n                \"model\": \"JgfBX\",\n                \"specifications\": \"0xE7bDE668d1\",\n                \"url\": \"https://negligible-afterlife.name/\",\n                \"imageUrl\": \"https://picsum.photos/seed/j0YYL0jC0/640/480\",\n                \"customAttributes\": \"{\\\"WEAR_LAYER\\\":\\\"8 MIL\\\",\\\"WARRANTY\\\":\\\"12 YEAR RESIDENTIAL WARRANTY HDC CLIC | 15 YEAR RESIDENTIAL WARRANTY GLUE DOWN\\\"}\",\n                \"createdAt\": \"2023-11-27T14:47:20.202Z\",\n                \"updatedAt\": \"2023-11-27T14:47:20.202Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitorcategory\": {\n                \"href\": \"/exhibitorcategories/v2/8f4bc3ff-6310-4d50-a349-9acac50fd199\"\n            },\n            \"exhibitorproduct\": {\n                \"href\": \"/exhibitorproducts/v2/71762362-b7a9-428d-b63a-77302020e531\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"189b90c4-a877-4c07-8de4-679460a17b63"},{"name":"Delete an Exhibitorcategory-Exhibitorproduct relationship","id":"c27a7848-c6a8-47de-bbc6-6ab0523d1168","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2/:id","description":"<p>Permanently delete the Exhibitorcategory-Exhibitorproduct relationship record of the supplied Exhibitorcategory-Exhibitorproduct ID. Destroying a relationship record will not destroy the supplied Exhibitorcategory or the supplied Exhibitorproduct, it will instead cause the supplied Exhibitorcategory and Exhibitorproduct to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorcategory-exhibitorproduct","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"6fbb2d6c-89a8-4fcb-ae6a-7d1f380a6632","description":{"content":"<p>Example: 90ee4f4c-a217-428d-8f95-aa9baab0926b</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorcategory-Exhibitorproduct ID here>","key":"id"}]}},"response":[{"id":"830c155c-6fc2-4b29-a417-4cd4553a53ef","name":"Delete an Exhibitorcategory-Exhibitorproduct relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorcategory-exhibitorproduct/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorcategory-exhibitorproduct","v2",":id"],"variable":[{"key":"id","value":"90ee4f4c-a217-428d-8f95-aa9baab0926b","description":"Example: 90ee4f4c-a217-428d-8f95-aa9baab0926b"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"244"},{"key":"ETag","value":"W/\"f4-sykFJpeU+fbD9qUKCaL1bPLKb1Q\""},{"key":"Date","value":"Fri, 03 Nov 2023 17:09:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"90ee4f4c-a217-428d-8f95-aa9baab0926b\",\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"exhibitorproductId\": \"58673114-47c3-4a7b-9c1c-4521fffbed4f\",\n    \"createdAt\": \"2023-11-03T17:02:59.695Z\",\n    \"updatedAt\": \"2023-11-03T17:02:59.695Z\"\n}"}],"_postman_id":"c27a7848-c6a8-47de-bbc6-6ab0523d1168"}],"id":"1cb3874f-df58-4b03-a0a7-ca31196e042b","description":"<p>The Exhibitorcategory-Exhibitorproduct entity provides a way to interact with the relationships between Exhibitorcategory and Exhibitorproduct. A single Exhibitorcategory can have many Exhibitorproducts and a single Exhibitorproduct can belong to many Exhibitorcategories.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>exhibitorproductId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorproduct.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1cb3874f-df58-4b03-a0a7-ca31196e042b","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitorsubcategories (v2)","item":[{"name":"List Exhibitorsubcategories","id":"ac2f1ea1-23bf-42cc-bca7-db2c662f268d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2","description":"<p>Retrieve a collection of Exhibitorsubcategory records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>exhibitorproductId</td>\n<td>eq, in</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>name</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>description</td>\n<td>endsWith, eq, like, ne, startsWith, substring</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorsubcategories","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"0a9d14d5-984d-4b00-8e42-5e086e714d06","name":"List Exhibitorsubcategories","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2131"},{"key":"ETag","value":"W/\"853-+aU8hUHPW+ibLSpjUmFs6Bwklwg\""},{"key":"Date","value":"Thu, 26 Oct 2023 17:54:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"5884e8a4-b524-4dbf-9303-e72c58eecc77\",\n            \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n            \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n            \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n            \"name\": \"Concrete and Cement Products\",\n            \"description\": \"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\",\n            \"createdAt\": \"2023-10-26T17:53:15.186Z\",\n            \"updatedAt\": \"2023-10-26T17:53:15.186Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/05930e27-c388-4269-9baa-0d5a06e2909e\"\n                    },\n                    \"exhibitorcategory\": {\n                        \"href\": \"/exhibitorcategories/v2/0a6ee549-8add-4258-be17-c57084346fe4\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"e8ef0fcd-5b2a-41b3-be81-2a569a977170\",\n            \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n            \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n            \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n            \"name\": \"Lumber and Wood Products\",\n            \"description\": \"Wood is a versatile building material used for framing, structural support, and finishing. Dimensional lumber, such as 2x4s and 2x6s, is commonly used in framing. Plywood and oriented strand board (OSB) are engineered wood products often used for sheathing and subflooring. Engineered wood products like laminated veneer lumber (LVL) and glulam provide strong and versatile structural elements.\",\n            \"createdAt\": \"2023-10-26T17:54:06.203Z\",\n            \"updatedAt\": \"2023-10-26T17:54:06.203Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"event\": {\n                        \"href\": \"/events/v2/05930e27-c388-4269-9baa-0d5a06e2909e\"\n                    },\n                    \"exhibitorcategory\": {\n                        \"href\": \"/exhibitorcategories/v2/0a6ee549-8add-4258-be17-c57084346fe4\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitorsubcategories/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"ac2f1ea1-23bf-42cc-bca7-db2c662f268d"},{"name":"Create an Exhibitorsubcategory","id":"bc8d5a9f-e08c-440b-b89b-6a499ecb5627","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"exhibitorcategoryId\":\"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n    \"name\":\"Concrete and Cement Products\",\n    \"description\":\"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2","description":"<p>Create a new Exhibitorsubcategory record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorsubcategories","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"ed5db11a-446a-4355-a7f7-1882ff9e33ea","name":"Create an Exhibitorsubcategory","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"exhibitorcategoryId\":\"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n    \"name\":\"Concrete and Cement Products\",\n    \"description\":\"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"693"},{"key":"ETag","value":"W/\"2b5-tAfNZ+0oWy0PoC+shoBQu0TYWHY\""},{"key":"Date","value":"Thu, 26 Oct 2023 17:53:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5884e8a4-b524-4dbf-9303-e72c58eecc77\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n    \"name\": \"Concrete and Cement Products\",\n    \"description\": \"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\",\n    \"updatedAt\": \"2023-10-26T17:53:15.186Z\",\n    \"createdAt\": \"2023-10-26T17:53:15.186Z\"\n}"}],"_postman_id":"bc8d5a9f-e08c-440b-b89b-6a499ecb5627"},{"name":"Read an Exhibitorsubcategory","id":"d8d4b94b-81e8-47ab-b6d9-258ec09bfd5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2/:exhibitorsubcategoryId","description":"<p>Retrieve the single Exhibitorsubcategory record of the supplied Exhibitorsubcategory ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>events</td>\n<td>exhibitorcategories</td>\n<td>exhibitors</td>\n</tr>\n<tr>\n<td>exhibitorproducts</td>\n<td>exhibitor-exhibitorsubcategory</td>\n<td>exhibitorproduct-exhibitorsubcategory</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorsubcategories","v2",":exhibitorsubcategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"78d01a6e-9574-4dc8-b7c5-b175ffafbdd2","description":{"content":"<p>Example: 5884e8a4-b524-4dbf-9303-e72c58eecc77</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorsubcategory ID here>","key":"exhibitorsubcategoryId"}]}},"response":[{"id":"00e624f0-6615-41ad-a77e-4b59d28f158e","name":"Read an Exhibitorsubcategory","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2/:exhibitorsubcategoryId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorsubcategories","v2",":exhibitorsubcategoryId"],"variable":[{"key":"exhibitorsubcategoryId","value":"5884e8a4-b524-4dbf-9303-e72c58eecc77","description":"Example: 5884e8a4-b524-4dbf-9303-e72c58eecc77"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"903"},{"key":"ETag","value":"W/\"387-libivy0Cd4iuUMPvSJInyB7aLrE\""},{"key":"Date","value":"Thu, 26 Oct 2023 17:54:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5884e8a4-b524-4dbf-9303-e72c58eecc77\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n    \"name\": \"Concrete and Cement Products\",\n    \"description\": \"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\",\n    \"createdAt\": \"2023-10-26T17:53:15.186Z\",\n    \"updatedAt\": \"2023-10-26T17:53:15.186Z\",\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/05930e27-c388-4269-9baa-0d5a06e2909e\"\n            },\n            \"exhibitorcategory\": {\n                \"href\": \"/exhibitorcategories/v2/0a6ee549-8add-4258-be17-c57084346fe4\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"6bedc618-6776-48d3-a743-9817e54d5fb0","name":"Read an Exhibitorsubcategory with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2/:exhibitorsubcategoryId?include=events,exhibitorcategories","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorsubcategories","v2",":exhibitorsubcategoryId"],"query":[{"key":"include","value":"events,exhibitorcategories","type":"text"}],"variable":[{"key":"exhibitorsubcategoryId","value":"a30b35c9-b552-4f7f-b18a-b38df96264bc","description":"Example: 5884e8a4-b524-4dbf-9303-e72c58eecc77"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2989"},{"key":"ETag","value":"W/\"bad-JHwCSF0+WjO29Qw9iS7NpEA1YA0\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:24:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a30b35c9-b552-4f7f-b18a-b38df96264bc\",\n    \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n    \"exhibitorcategoryId\": \"2d35723d-e4ee-4157-a079-68ebba804412\",\n    \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n    \"name\": \"Concrete and Cement Products\",\n    \"description\": \"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\",\n    \"createdAt\": \"2024-06-13T18:22:06.504Z\",\n    \"updatedAt\": \"2024-06-13T18:22:06.504Z\",\n    \"events\": {\n        \"collection\": [\n            {\n                \"id\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"shortName\": \"Rustic Beauty Show 2026\",\n                \"fullName\": \"Rustic Recycled Frozen Car Grocery Show 2026\",\n                \"systemName\": \"rusticbeautyshow2026-8b9d\",\n                \"website\": \"https://faraway-geometry.com\",\n                \"description\": null,\n                \"startsAt\": \"2023-09-13T16:50:16.236Z\",\n                \"endsAt\": \"2023-09-16T16:50:16.233Z\",\n                \"timezoneOffsetInMinutes\": -303,\n                \"freemanJobIdentifier\": null,\n                \"isSandbox\": true,\n                \"createdAt\": \"2023-09-13T16:50:16.236Z\",\n                \"updatedAt\": \"2023-09-13T16:50:16.236Z\",\n                \"organizationId\": \"73d23231-1b73-42c3-84db-8a271e7b6e05\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorcategories\": {\n        \"collection\": [\n            {\n                \"id\": \"2d35723d-e4ee-4157-a079-68ebba804412\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"363fd5a8-6c11-48c8-96cc-428df6c9288d\",\n                \"name\": \"Building Materials\",\n                \"description\": \"Building materials are the raw materials or products used in construction and building projects. They are the essential components that go into the construction of structures, from homes to large-scale commercial buildings. Building materials can be broadly categorized into various types, each with specific characteristics and uses.\",\n                \"createdAt\": \"2024-06-13T18:09:49.525Z\",\n                \"updatedAt\": \"2024-06-13T18:09:49.525Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"event\": {\n                \"href\": \"/events/v2/1e4b7523-ba8b-47bc-99d0-23e5b858a27c\"\n            },\n            \"exhibitorcategory\": {\n                \"href\": \"/exhibitorcategories/v2/2d35723d-e4ee-4157-a079-68ebba804412\"\n            }\n        },\n        \"children\": {\n            \"exhibitor-exhibitorsubcategory\": {\n                \"href\": \"/exhibitor-exhibitorsubcategory/v2?filter[exhibitorsubcategoryId][eq]=a30b35c9-b552-4f7f-b18a-b38df96264bc\"\n            },\n            \"exhibitorproduct-exhibitorsubcategory\": {\n                \"href\": \"/exhibitorproduct-exhibitorsubcategory/v2?filter[exhibitorsubcategoryId][eq]=a30b35c9-b552-4f7f-b18a-b38df96264bc\"\n            }\n        },\n        \"siblings\": {\n            \"exhibitors\": {\n                \"href\": \"/exhibitors/v2?filter[exhibitorsubcategoryId][eq]=a30b35c9-b552-4f7f-b18a-b38df96264bc\"\n            },\n            \"exhibitorproducts\": {\n                \"href\": \"/exhibitorproducts/v2?filter[exhibitorsubcategoryId][eq]=a30b35c9-b552-4f7f-b18a-b38df96264bc\"\n            }\n        }\n    }\n}"}],"_postman_id":"d8d4b94b-81e8-47ab-b6d9-258ec09bfd5b"},{"name":"Update an Exhibitorsubcategory","id":"5f54cad0-68a8-416b-8001-735f0ccc900d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"bb11df8f-8a28-49cc-a095-ba072235de01\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2/:exhibitorsubcategoryId","description":"<p>Modify one or more fields on the single Exhibitorsubcategory record of the supplied Exhibitorsubcategory ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Event.</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>UUID string</td>\n<td></td>\n<td>• Must be the primary identifier of an existing Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td></td>\n<td>• Must have a minimum of 1 character.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>eventId</code> and <code>name</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorsubcategories","v2",":exhibitorsubcategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"48302a1f-3f40-46fd-8578-6f0f93234a53","description":{"content":"<p>Example: e8ef0fcd-5b2a-41b3-be81-2a569a977170</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorsubcategory ID here>","key":"exhibitorsubcategoryId"}]}},"response":[{"id":"34280cbf-dc2d-44c8-acf2-d3f0f96dbc05","name":"Update an Exhibitorsubcategory","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"producerRecordIdentifier\": \"bb11df8f-8a28-49cc-a095-ba072235de01\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2/:exhibitorsubcategoryId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorsubcategories","v2",":exhibitorsubcategoryId"],"variable":[{"key":"exhibitorsubcategoryId","value":"e8ef0fcd-5b2a-41b3-be81-2a569a977170","description":"Example: e8ef0fcd-5b2a-41b3-be81-2a569a977170"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"744"},{"key":"ETag","value":"W/\"2e8-2/GOUFxAr7TWY1QkGXGez+0JD/4\""},{"key":"Date","value":"Thu, 26 Oct 2023 17:56:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e8ef0fcd-5b2a-41b3-be81-2a569a977170\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"producerRecordIdentifier\": \"bb11df8f-8a28-49cc-a095-ba072235de01\",\n    \"name\": \"Lumber and Wood Products\",\n    \"description\": \"Wood is a versatile building material used for framing, structural support, and finishing. Dimensional lumber, such as 2x4s and 2x6s, is commonly used in framing. Plywood and oriented strand board (OSB) are engineered wood products often used for sheathing and subflooring. Engineered wood products like laminated veneer lumber (LVL) and glulam provide strong and versatile structural elements.\",\n    \"createdAt\": \"2023-10-26T17:54:06.203Z\",\n    \"updatedAt\": \"2023-10-26T17:56:37.408Z\"\n}"}],"_postman_id":"5f54cad0-68a8-416b-8001-735f0ccc900d"},{"name":"Destroy an Exhibitorsubcategory","id":"e38ffb50-56b4-4cce-aed5-e972034d0599","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2/:exhibitorsubcategoryId","description":"<p>Permanently delete the Exhibitorsubcategory record of the supplied Exhibitorsubcategory ID.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitorsubcategories","v2",":exhibitorsubcategoryId"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"15eacc07-ca18-4ef2-9a77-90598d0c261b","description":{"content":"<p>Example: 5884e8a4-b524-4dbf-9303-e72c58eecc77</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitorsubcategory ID here>","key":"exhibitorsubcategoryId"}]}},"response":[{"id":"972d857a-ef07-4dea-984e-ea308df64b75","name":"Destroy an Exhibitorsubcategory","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitorsubcategories/v2/:exhibitorsubcategoryId","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitorsubcategories","v2",":exhibitorsubcategoryId"],"variable":[{"key":"exhibitorsubcategoryId","value":"5884e8a4-b524-4dbf-9303-e72c58eecc77","description":"Example: 5884e8a4-b524-4dbf-9303-e72c58eecc77"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"693"},{"key":"ETag","value":"W/\"2b5-Ld5E9drPp5ixtEgnp4zflJ+7VZA\""},{"key":"Date","value":"Thu, 26 Oct 2023 17:55:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5884e8a4-b524-4dbf-9303-e72c58eecc77\",\n    \"eventId\": \"05930e27-c388-4269-9baa-0d5a06e2909e\",\n    \"exhibitorcategoryId\": \"0a6ee549-8add-4258-be17-c57084346fe4\",\n    \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n    \"name\": \"Concrete and Cement Products\",\n    \"description\": \"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\",\n    \"createdAt\": \"2023-10-26T17:53:15.186Z\",\n    \"updatedAt\": \"2023-10-26T17:53:15.186Z\"\n}"}],"_postman_id":"e38ffb50-56b4-4cce-aed5-e972034d0599"}],"id":"1ec4415e-9cfb-42c4-8af0-0fddcf801fb4","description":"<p>Exhibitorsubcategories, are specific classifications or groupings used to categorize and organize the companies or organizations participating in larger events.</p>\n<p>These subcategories help organizers and attendees navigate the event by grouping Exhibitors with similar products, services, or industries together. The specific Exhibitorsubcategories can vary depending on the type and focus of the event, but some common examples include: Industry (Healthcare, Technology, Fashion etc.), Products (Software, hardware, telecommunications etc.).</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>eventId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Event.</td>\n</tr>\n<tr>\n<td>exhibitorcategoryId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorcategory.</td>\n</tr>\n<tr>\n<td>producerRecordIdentifier</td>\n<td>String</td>\n<td>The producer-provided identifier that can be used to cross-reference a record in the producing system.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The name of the Exhibitorsubcategory.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>A description of the Exhibitorsubcategory.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1ec4415e-9cfb-42c4-8af0-0fddcf801fb4","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}},{"name":"Exhibitor-Exhibitorsubcategory (v2)","item":[{"name":"List Exhibitor-Exhibitorsubcategory relationships","id":"6469d883-3ee4-4fef-b592-5a5e7c1cce15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2","description":"<p>Retrieve a collection of Exhibitor-Exhibitorsubcategory relationship records.</p>\n<h4 id=\"request-query-string-parameters\">Request Query String Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>?countOnly</td>\n<td>Boolean</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?filter[«field»][«operator»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?page</td>\n<td>Integer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>?sort[«direction»]</td>\n<td>String</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"filterable-fields\">Filterable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Operator</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>in</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>eq</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>eq, lt, lte, gt, gte, ne</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sortable-fields\">Sortable Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Direction</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdAt</td>\n<td>asc, desc</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorsubcategory","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"857876b4-343c-475d-a9bc-38277a2a3871","name":"List Exhibitor-Exhibitorsubcategory relationships","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4932"},{"key":"ETag","value":"W/\"1344-FcPWjIHcCi02yT7MvI3nfJHqgz8\""},{"key":"Date","value":"Tue, 31 Oct 2023 17:09:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": [\n        {\n            \"id\": \"401ef4e4-2a5b-48c7-be11-894aad29c311\",\n            \"exhibitorId\": \"07eb91f6-8066-4b60-8c10-02a8b397fff1\",\n            \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\",\n            \"createdAt\": \"2023-10-31T17:01:09.455Z\",\n            \"updatedAt\": \"2023-10-31T17:01:09.455Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/07eb91f6-8066-4b60-8c10-02a8b397fff1\"\n                    },\n                    \"exhibitorsubcategory\": {\n                        \"href\": \"/exhibitorsubcategories/v2/aa1038db-bc75-4010-a903-92a0855008fd\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        },\n        {\n            \"id\": \"2bb5b039-9b64-46e8-bec1-6dddf5bdcd53\",\n            \"exhibitorId\": \"9b87f904-e319-4bdb-a2d3-e03be7d2f4eb\",\n            \"exhibitorsubcategoryId\": \"266aae7c-86fd-4006-a7a4-51d12343dbc5\",\n            \"createdAt\": \"2023-10-31T17:01:09.491Z\",\n            \"updatedAt\": \"2023-10-31T17:01:09.491Z\",\n            \"_links\": {\n                \"parents\": {\n                    \"exhibitor\": {\n                        \"href\": \"/exhibitors/v2/9b87f904-e319-4bdb-a2d3-e03be7d2f4eb\"\n                    },\n                    \"exhibitorsubcategory\": {\n                        \"href\": \"/exhibitorsubcategories/v2/266aae7c-86fd-4006-a7a4-51d12343dbc5\"\n                    }\n                },\n                \"children\": {},\n                \"siblings\": {}\n            }\n        }\n    ],\n    \"_meta\": {\n        \"currentPageNumber\": 1,\n        \"numberOfRecordsOnCurrentPage\": 2,\n        \"totalNumberOfPages\": 1,\n        \"numberOfRecordsPerPage\": 100,\n        \"totalNumberOfRecords\": 2,\n        \"_links\": {\n            \"first\": {\n                \"href\": \"/exhibitor-exhibitorsubcategory/v2\"\n            },\n            \"prev\": {\n                \"href\": \"\"\n            },\n            \"next\": {\n                \"href\": \"\"\n            },\n            \"last\": {\n                \"href\": \"\"\n            }\n        }\n    }\n}"}],"_postman_id":"6469d883-3ee4-4fef-b592-5a5e7c1cce15"},{"name":"Create an Exhibitor-Exhibitorsubcategory relationship","id":"2592e9ba-b711-401b-abaf-c0c7b44b4b6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2","description":"<p>Create a new Exhibitor-Exhibitorsubcategory relationship record.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Validations</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitor.</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>UUID string</td>\n<td>Yes</td>\n<td>• Must be the primary identifier of an existing Exhibitorsubcategory.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-validations\">Additional Validations:</h4>\n<ul>\n<li>The combination of <code>exhibitorId</code> and <code>exhibitorsubcategoryId</code> must be unique.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorsubcategory","v2"],"host":["{{domain}}{{port}}"],"query":[],"variable":[]}},"response":[{"id":"8f08ad16-a78d-46b8-bf15-fee1642590ac","name":"Create an Exhibitor-Exhibitorsubcategory relationship","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"240"},{"key":"ETag","value":"W/\"f0-m2Bn/QcT9ubw1e1+txAq5+fCIQM\""},{"key":"Date","value":"Tue, 31 Oct 2023 17:16:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c3170035-c9a0-4cf0-b4c4-6c1a94e33bff\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\",\n    \"updatedAt\": \"2023-10-31T17:16:01.469Z\",\n    \"createdAt\": \"2023-10-31T17:16:01.469Z\"\n}"}],"_postman_id":"2592e9ba-b711-401b-abaf-c0c7b44b4b6a"},{"name":"Read an Exhibitor-Exhibitorsubcategory relationship","id":"e56f1f69-0b01-44a0-b989-583f48febe32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2/:id","description":"<p>Retrieve the single Exhibitor-Exhibitorsubcategory relationship record of the supplied Exhibitor-Exhibitorsubcategory ID.</p>\n<h4 id=\"includable-entities\">Includable Entities</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entities</strong></th>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exhibitors</td>\n<td>exhibitorsubcategories</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorsubcategory","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"fe77d967-124d-455b-85bf-d473bda99c1a","description":{"content":"<p>Example: c3170035-c9a0-4cf0-b4c4-6c1a94e33bff</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Exhibitorsubcategory ID here>","key":"id"}]}},"response":[{"id":"e4907ce3-9640-4ca1-844b-0e72b603eeea","name":"Read an Exhibitor-Exhibitorsubcategory relationship","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitorsubcategory","v2",":id"],"variable":[{"key":"id","value":"c3170035-c9a0-4cf0-b4c4-6c1a94e33bff","description":"Example: c3170035-c9a0-4cf0-b4c4-6c1a94e33bff"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"464"},{"key":"ETag","value":"W/\"1d0-yE3qKyYeI7ByP5SvBC6eQ6HNuT4\""},{"key":"Date","value":"Tue, 31 Oct 2023 17:18:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c3170035-c9a0-4cf0-b4c4-6c1a94e33bff\",\n    \"exhibitorId\": \"1d9a5252-6b3e-484d-90e6-8e66af29f7d9\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\",\n    \"createdAt\": \"2023-10-31T17:16:01.469Z\",\n    \"updatedAt\": \"2023-10-31T17:16:01.469Z\",\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/1d9a5252-6b3e-484d-90e6-8e66af29f7d9\"\n            },\n            \"exhibitorsubcategory\": {\n                \"href\": \"/exhibitorsubcategories/v2/aa1038db-bc75-4010-a903-92a0855008fd\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"},{"id":"0586a201-eecf-490d-94f5-5f78d8aac9b1","name":"Read an Exhibitor-Exhibitorsubcategory relationship with includes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2/:id?include=exhibitors,exhibitorsubcategories","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitorsubcategory","v2",":id"],"query":[{"key":"include","value":"exhibitors,exhibitorsubcategories","type":"text"}],"variable":[{"key":"id","value":"306cd55a-3900-4c34-92e7-f9e3a37b07ee","description":"Example: c3170035-c9a0-4cf0-b4c4-6c1a94e33bff"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2437"},{"key":"ETag","value":"W/\"985-+5dKoxJVHGZ5P0F1l74AnEfNDN0\""},{"key":"Date","value":"Mon, 17 Jun 2024 19:25:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"306cd55a-3900-4c34-92e7-f9e3a37b07ee\",\n    \"exhibitorId\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n    \"exhibitorsubcategoryId\": \"a30b35c9-b552-4f7f-b18a-b38df96264bc\",\n    \"createdAt\": \"2024-06-13T18:24:17.306Z\",\n    \"updatedAt\": \"2024-06-13T18:24:17.306Z\",\n    \"exhibitors\": {\n        \"collection\": [\n            {\n                \"id\": \"6f696bf0-18a2-463a-b57b-48e172739bf2\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"producerRecordIdentifier\": \"hnM5c\",\n                \"singleSignOnIdentifier\": \"G3huEKi\",\n                \"name\": \"Hayes, Hansen and Hills\",\n                \"isPreviousExhibitor\": false,\n                \"isFirstTime\": false,\n                \"isMember\": false,\n                \"badgeAllocationCount\": 4,\n                \"ticketAllocationCount\": 2,\n                \"staffAllocationCount\": 2,\n                \"phoneNumber\": \"876.671.5495 x29287\",\n                \"email\": \"Tiara93@hotmail.com\",\n                \"producerSystem\": \"z8IDhAr\",\n                \"status\": \"Pending\",\n                \"website\": \"https://last-cherry.biz/\",\n                \"logoUrl\": \"https://loremflickr.com/640/480?lock=6436109605142528\",\n                \"sponsorshipLevel\": \"cW8ZGeL\",\n                \"description\": \"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016\",\n                \"customAttributes\": \"{\\\"location\\\":\\\"Curacao\\\"}\",\n                \"bookedAt\": \"2023-10-26T12:25:23.727Z\",\n                \"createdAt\": \"2023-10-26T12:25:23.727Z\",\n                \"updatedAt\": \"2023-10-26T12:25:23.727Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"exhibitorsubcategories\": {\n        \"collection\": [\n            {\n                \"id\": \"a30b35c9-b552-4f7f-b18a-b38df96264bc\",\n                \"eventId\": \"1e4b7523-ba8b-47bc-99d0-23e5b858a27c\",\n                \"exhibitorcategoryId\": \"2d35723d-e4ee-4157-a079-68ebba804412\",\n                \"producerRecordIdentifier\": \"f3973036-7cf0-4b8c-8286-2e69b00dec33\",\n                \"name\": \"Concrete and Cement Products\",\n                \"description\": \"These materials are fundamental to construction. Concrete is a composite material made from cement, water, and aggregates (sand, gravel, or crushed stone). It's used for foundations, slabs, and structural elements. Cement blocks, bricks, and pipes are other products made from concrete and cement used in various construction applications.\",\n                \"createdAt\": \"2024-06-13T18:22:06.504Z\",\n                \"updatedAt\": \"2024-06-13T18:22:06.504Z\"\n            }\n        ],\n        \"_meta\": {\n            \"totalNumberOfPages\": 1,\n            \"currentPageNumber\": 1,\n            \"totalNumberOfRecords\": 1,\n            \"numberOfRecordsOnCurrentPage\": 1,\n            \"numberOfRecordsPerPage\": 200,\n            \"_links\": {\n                \"next\": {}\n            }\n        }\n    },\n    \"_links\": {\n        \"parents\": {\n            \"exhibitor\": {\n                \"href\": \"/exhibitors/v2/6f696bf0-18a2-463a-b57b-48e172739bf2\"\n            },\n            \"exhibitorsubcategory\": {\n                \"href\": \"/exhibitorsubcategories/v2/a30b35c9-b552-4f7f-b18a-b38df96264bc\"\n            }\n        },\n        \"children\": {},\n        \"siblings\": {}\n    }\n}"}],"_postman_id":"e56f1f69-0b01-44a0-b989-583f48febe32"},{"name":"Delete an Exhibitor-Exhibitorsubcategory relationship","id":"39c6605a-b11c-41ff-b46b-77bf51aa64a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2/:id","description":"<p>Permanently delete the Exhibitor-Exhibitorsubcategory relationship record of the supplied Exhibitor-Exhibitorsubcategory ID. Destroying a relationship record will not destroy the supplied Exhibitor or the supplied Exhibitorsubcategory, it will instead cause the supplied Exhibitor and Exhibitorsubcategory to no longer be associated with one another.</p>\n","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["exhibitor-exhibitorsubcategory","v2",":id"],"host":["{{domain}}{{port}}"],"query":[],"variable":[{"id":"f7e17a5b-b789-49d6-824e-5cb6af754198","description":{"content":"<p>Example: 401ef4e4-2a5b-48c7-be11-894aad29c311</p>\n","type":"text/plain"},"type":"any","value":"<Enter Exhibitor-Exhibitorsubcategory ID here>","key":"id"}]}},"response":[{"id":"854473d2-482f-4a54-bbfa-2d052952472b","name":"Delete an Exhibitor-Exhibitorcategory relationship","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}{{port}}/exhibitor-exhibitorsubcategory/v2/:id","protocol":"{{protocol}}","host":["{{domain}}{{port}}"],"path":["exhibitor-exhibitorsubcategory","v2",":id"],"variable":[{"key":"id","value":"401ef4e4-2a5b-48c7-be11-894aad29c311","description":"Example: 401ef4e4-2a5b-48c7-be11-894aad29c311"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Content-Type, Origin, X-Requested-With"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"X-Fuzion-Built-At","value":"undefined"},{"key":"X-Fuzion-Deployment-Tier","value":"local"},{"key":"X-Fuzion-Node-Env","value":"local"},{"key":"X-Fuzion-Region","value":"us-west-2"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"303"},{"key":"ETag","value":"W/\"12f-8b70V8+13rTbr1AcMfySJ7hqu4Y\""},{"key":"Date","value":"Tue, 31 Oct 2023 17:22:45 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"401ef4e4-2a5b-48c7-be11-894aad29c311\",\n    \"exhibitorId\": \"07eb91f6-8066-4b60-8c10-02a8b397fff1\",\n    \"exhibitorsubcategoryId\": \"aa1038db-bc75-4010-a903-92a0855008fd\",\n    \"createdAt\": \"2023-10-31T17:01:09.455Z\",\n    \"updatedAt\": \"2023-10-31T17:01:09.455Z\",\n    \"Exhibitor\": {\n        \"eventId\": \"111e2d5c-b142-4cba-8f5d-29ef22094bfe\"\n    }\n}"}],"_postman_id":"39c6605a-b11c-41ff-b46b-77bf51aa64a8"}],"id":"8b8ce166-694b-44db-aac3-b1f53ce0147c","description":"<p>The Exhibitor-Exhibitorsubcategory entity provides a way to interact with the relationships between Exhibitors and Exhibitorsubcategories. A single Exhibitorsubcategory can have many Exhibitors and a single Exhibitor can belong to many Exhibitorsubcategories.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID string</td>\n<td>The primary identifier of this entity.</td>\n</tr>\n<tr>\n<td>exhibitorId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitor.</td>\n</tr>\n<tr>\n<td>exhibitorsubcategoryId</td>\n<td>UUID string</td>\n<td>The primary identifier of the associated Exhibitorsubcategory.</td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was created.</td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>ISO-8601 formatted string</td>\n<td>The date and time the record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8b8ce166-694b-44db-aac3-b1f53ce0147c","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}}],"id":"75ef28a6-237e-4f5f-bbb6-a5ee2c2a7ead","_postman_id":"75ef28a6-237e-4f5f-bbb6-a5ee2c2a7ead","description":"","auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"},"isInherited":true,"source":{"_postman_id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","id":"9f4e0d6f-4d4c-4349-8f7a-bdefebb904a0","name":"Fuzion v2 API Docs (Published)","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"tokenRequestParams":"<token-request-params>","scope":"<scope>","tokenName":"<token-name>","client_authentication":"<client_authentication>","clientSecret":"{{OAuthClientSecret}}","clientId":"{{OAuthClientId}}","accessTokenUrl":"{{OAuthAccessTokenUrl}}","grant_type":"<grant_type>"}},"event":[{"listen":"prerequest","script":{"id":"08741470-30f9-47e0-93f1-cb288250758f","type":"text/javascript","exec":["// const moment = require(\"moment\");","// const currentDate = moment();","// const futureDate = currentDate.add(_.random(0,2), \"years\");","// const futureYear = futureDate.format(\"YYYY\");","// pm.environment.set(\"randomYearInTheFuture\", futureYear);","// pm.globals.set(\"randomYearInTheFuture\", futureYear);","// pm.collectionVariables.set(\"randomYearInTheFuture\", futureYear);"]}},{"listen":"test","script":{"id":"30538aa2-c78e-4a1b-87a5-5d30f16c68bb","type":"text/javascript","exec":[""]}}]}