{"info":{"_postman_id":"d0ebc5a4-3a8c-4d63-9d05-e90233138f56","name":"Marketplacer OPERATOR API","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json","_exporter_id":"6283603"},"item":[{"name":"Adverts","item":[{"name":"Advert Create (by Operator)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation AdvertCreate($input: AdvertUpsertMutationInput!) {\n\tadvertUpsert(input: $input) {\n\t\tstatus\n\t\tadvert {\n\t\t\tid\n\t\t\tlegacyId\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"sellerId\": \"U2VsbGVyLTE1\",\n    \"attributes\": {\n      \"brandId\": \"QnJhbmQtNA==\",\n      \"taxonId\": \"VGF4b24tMjk2OQ==\",\n      \"title\": \"Product Title\",\n      \"description\": \"Product Description\",\n      \"price\": \"199.99\",\n      \"attemptAutoPublish\": true,\n      \"images\": [\n        {\n          \"sourceUrl\": \"https://picsum.photos/640/480/?image=166\"\n        }\n      ],\n      \"advertOptionValues\": [\n        {\n          \"optionValueId\": \"T3B0aW9uVmFsdWUtNzI3\"\n        },\n        {\n          \"optionValueId\": \"T3B0aW9uVmFsdWUtNzI4\"\n        },\n        {\n          \"optionValueId\": \"T3B0aW9uVmFsdWUtNzM0\"\n        },\n        {\n          \"optionTypeId\": \"T3B0aW9uVHlwZS0yNTA=\",\n          \"textValue\": \"Snapdragon 8\"\n        }\n      ],\n      \"variants\": [\n        {\n          \"countOnHand\": 1000,\n          \"variantOptionValues\": [\n            {\n              \"optionValueId\": \"T3B0aW9uVmFsdWUtNzMx\"\n            },\n            {\n              \"optionValueId\": \"T3B0aW9uVmFsdWUtNzIz\"\n            },\n            {\n              \"optionTypeId\": \"T3B0aW9uVHlwZS0yNTI=\",\n              \"textValue\": \"Ocean Blue\"\n            }\n          ]\n        }\n      ]\n    }\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Advert Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation AdvertUpdate($input: AdvertUpsertMutationInput!) {\n\tadvertUpsert(input: $input) {\n\t\tadvert {\n\t\t\tlegacyId\n\t\t\teditablePrice\n\t\t\tpublished\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"advertId\": \"QWR2ZXJ0LTEwMDA3NzY4OA==\",\n    \"attributes\": {\n      \"brandId\": \"QnJhbmQtNA==\",\n      \"title\": \"Product Title\",\n      \"description\": \"Product Description\",\n      \"price\": \"199.99\",\n      \"attemptAutoPublish\": true\n    }\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Advert Vetting Reject","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RejectProducts($input: AdvertVettingRejectInput!) {\n\tadvertVettingReject(input: $input) {\n\t\tadverts {\n\t\t\tedges {\n\t\t\t\tnode {\n\t\t\t\t\tvetted\n\t\t\t\t\trequiresVetting\n\t\t\t\t\tvettingRejectedReason\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"advertIds\": [\n      \"QWR2ZXJ0LTEwMDAyMTIwMQ==\",\n      \"QWR2ZXJ0LTEwMDAyMTIwMg==\"\n    ],\n    \"vettingRejectedReason\": \"Images do not conform to standard.\"\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Adverts that require vetting","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query getAdvertsThatRequieVetting(\n\t$pageSize: Int\n\t$endCursor: String\n\t$retailerIds: [ID!]\n\t$requiresVetting: Boolean\n){\n\tadvertsWhere(\n\t\tfirst: $pageSize \n\t\tafter: $endCursor\n\t\tretailerIds: $retailerIds, \n\t\trequiresVetting: $requiresVetting) {\n\t\ttotalCount\n\t\tpageInfo{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tnodes {\n\t\t\t__typename\n\t\t\tid\n\t\t\ttitle\n\t\t\tlegacyId\n\t\t\tvettingRejected\n\t\t\trequiresVetting\n\t\t\trequiresVettingAt\n\t\t\tvetted\n\t\t\tvettingRejectedReason\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\": 5,\n\t\"endCursor\": null,\n\t\"retailerIds\": [\n\t\t\"<INSERT SELLER ID>\"\n\t],\n\t\"requiresVetting\": true\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get a Single Advert (node query)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetProductById($id: ID!) {\n\tnode(id: $id) {\n\t\t__typename\n\t\t... on Advert {\n\t\t\tlegacyId\n\t\t\tid\n\t\t\ttitle\n\t\t\tupdatedAt\n\t\t\tdisplayable\n\t\t\tpublished\n\t\t\tvetted\n\t\t\tvettingRejected\n\t\t\tvettingRejectedReason\n\t\t\tvariants(first: 3) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tbuyable\n\t\t\t\t\tdisplayable\n\t\t\t\t\tpublished\n\t\t\t\t\tcountOnHand\n\t\t\t\t}\n\t\t\t\tpageInfo {\n\t\t\t\t\thasNextPage\n\t\t\t\t\tendCursor\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"QWR2ZXJ0LTEwMDAyMTIwMQ==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Variant Search","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query VariantSearch(\n\t$pageSize: Int\n\t$endCursor: String\n\t$variantFilters: VariantFilterInput\n) {\n\tvariantsWhere(\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\tvariantFilters: $variantFilters\n\t) {\n\t\tnodes {\n\t\t\tbarcode\n\t\t\tid\n\t\t}\n\t}\n}\n","variables":"{\n\t\"pageSize\": 50,\n\t\"endCursor\": null,\n\t\"variantFilters\": {\n\t\t\"barcodes\": [\n\t\t\t\"978020137962\"\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Variant Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation VariantUpdate($input: VariantUpdateMutationInput!) {\n\tvariantUpdate(input: $input) {\n\t\tvariant {\n\t\t\tcountOnHand\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"variantId\": \"VmFyaWFudC04NDkzOA==\",\n\t\t\"attributes\": {\n\t\t\t\"countOnHand\": 101\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"advertDelete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation advertDelete($input: AdvertDeleteMutationInput!){\n\tadvertDelete(input: $input)\n\t{\n\t\tstatus\n\t\terrors{\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tadvert{\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"id\": \"<INSERT ADVERT ID>\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"advertSearch (Search by Seller Ids)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ProductSearchBySellerId(\n\t$sellerIds: [ID!]\n\t$advertPageSize: Int\n\t$advertEndCursor: String\n\t$variantPageSize: Int\n\t$variantEndCursor: String\n) {\n\tadvertSearch(attributes: { sellerIds: $sellerIds }) {\n\t\tadverts(first: $advertPageSize, after: $advertEndCursor) {\n\t\t\ttotalCount\n\t\t\tpageInfo {\n\t\t\t\t...PageInfoPartial\n\t\t\t}\n\t\t\tedges {\n\t\t\t\tnode {\n\t\t\t\t\tid\n\t\t\t\t\tpriceUnit\n\t\t\t\t\ttitle\n\t\t\t\t\tseller {\n\t\t\t\t\t\tbusinessName\n\t\t\t\t\t}\n\n\t\t\t\t\tvariants(first: $variantPageSize, after: $variantEndCursor) {\n\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t}\n\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tlowestPrice\n\t\t\t\t\t\t\t\tcountOnHand\n\t\t\t\t\t\t\t\tlabel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"advertPageSize\": 50,\n\t\"advertEndCursor\": null,\n\t\"variantPageSize\": 5,\n\t\"variantEndCursor\": null,\n\t\"sellerIds\": [\n\t\t\"U2VsbGVyLTY2MDExOQ==\",\n\t\t\"U2VsbGVyLTcw\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"advertSearch (Search using keywords)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ProductSearchByKeyword(\n\t$keywords: String\n\t$advertPageSize: Int\n\t$advertEndCursor: String\n\t$variantPageSize: Int\n\t$variantEndCursor: String\n) {\n\tadvertSearch(attributes: { keywordQuery: $keywords }) {\n\t\tadverts(first: $advertPageSize, after: $advertEndCursor) {\n\t\t\ttotalCount\n\t\t\tpageInfo {\n\t\t\t\t...PageInfoPartial\n\t\t\t}\n\t\t\tedges {\n\t\t\t\tnode {\n\t\t\t\t\ttitle\n\t\t\t\t\tvariants(first: $variantPageSize, after: $variantEndCursor) {\n\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t}\n\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tlowestPriceCents\n\t\t\t\t\t\t\t\tcountOnHand\n\t\t\t\t\t\t\t\tlabel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"advertPageSize\": 50,\n\t\"advertEndCursor\": null,\n\t\"variantPageSize\": 5,\n\t\"variantEndCursor\": null,\n\t\"keywords\": \"dog food\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"advertVettingApprove","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ApproveProducts($input: AdvertVettingApproveInput!) {\n\tadvertVettingApprove(input: $input) {\n\t\tadverts {\n\t\t\tedges {\n\t\t\t\tnode {\n\t\t\t\t\tvetted\n\t\t\t\t\trequiresVetting\n\t\t\t\t\tvettingRejectedReason\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"advertIds\": [\n\t\t\t\"QWR2ZXJ0LTEwMDAyMTIwMQ==\",\n\t\t\t\"QWR2ZXJ0LTEwMDAyMTIwMg==\"\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"advertsWhere (Search by Variant Barcode)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetProductsByVariantBarcode(\n\t$variantBarCodes: [String!]\n\t$pageSize: Int\n\t$endCursor: String\n) {\n\tadvertsWhere(\n\t\tvariantBarcodes: $variantBarCodes\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\ttitle\n\t\t\t\tpublished\n\t\t\t\tdisplayable\n\t\t\t\tseller {\n\t\t\t\t\tbusinessName\n\t\t\t\t}\n\t\t\t\tvariants(displayableOnly: false, first: $pageSize) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tlabel\n\t\t\t\t\t\t\tcountOnHand\n\t\t\t\t\t\t\tbarcode\n\t\t\t\t\t\t\tsku\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSize\": 50,\n\t\"endCursor\" : null,\n\t\"variantBarCodes\": [\n\t\t\"abc1234\",\n\t\t\"122222\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"allAdverts (Get Products by updated date)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query AllProductsByUpdatedAtDate(\n\t$updatedSince: ISO8601DateTime\n\t$pageSize: Int\n\t$endCursor: String\n) {\n\tallAdverts(updatedSince: $updatedSince, first: $pageSize, after: $endCursor) {\n\t\tnodes {\n\t\t\t__typename\n\t\t\t... on Advert {\n\t\t\t\tid\n\t\t\t\ttitle\n\t\t\t\tupdatedAt\n\n\t\t\t\timages {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\turl(width: 100, height: 100, fit: clip)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tvariants(displayableOnly: false, first: $pageSize) {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on UnpublishedAdvert {\n\t\t\t\tid\n\t\t\t\tupdatedAt\n\t\t\t\tvariants(first: $pageSize) {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tdetails {\n\t\t\t\t\ttitle\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on DeletedAdvert {\n\t\t\t\tid\n\t\t\t\tupdatedAt\n\t\t\t\tvariants(first: 5) {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSize\": 50,\n\t\"endCursor\": null,\n\t\"updatedSince\": \"2023-11-30T09:05:57+11:00\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Chat","item":[{"name":"Confirm Read of Seller Messages","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ConfirmReadOfSellerMessages($sellerId: ID $sentBy: String!)\n{\n\tchatMessageRead(input: {\n\t\tseller: $sellerId\n\t\tsentBy: $sentBy\n\t})\n\t{\n\t\terrors{\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n\t\"sentBy\": \"User\",\n\t\"sellerId\": \"U2VsbGVyLTY2MDExOQ==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Fetch Sellers for Chat","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query FetchSellersForChat($pageSize: Int, $endCursor: String, $query: String) {\n  sellersForChats(first: $pageSize, after: $endCursor, q: $query) {\n    totalCount\n    pageInfo {\n      hasNextPage\n      endCursor\n    }\n    nodes {\n      id\n      businessName\n    }\n  }\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null,\n\t\"query\": \"Cell Phones\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Chat Messages For Seller","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetChatMessages($pageSize: Int, $endCursor: String, $sellerId: ID!) {\n  chatMessages(first: $pageSize, after: $endCursor, sellerId: $sellerId) {\n    totalCount\n    pageInfo {\n      hasNextPage\n      endCursor\n    }\n    nodes {\n      id\n      createdAt\n      message\n      readAt\n      seller {\n        businessName\n      }\n      sentByType\n    }\n  }\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null,\n\t\"sellerId\": \"U2VsbGVyLTY2MDExOQ==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Send Message to Seller","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation SendMessageToSeller($message: String!, $sellerId: ID) {\n  chatMessageCreate(input: { message: $message, sellerId: $sellerId }) {\n    chatMessage {\n      id\n    }\n    errors {\n      field\n      messages\n    }\n  }\n}","variables":"{\n\t\"message\": \"Can you confirm when order abc123 will be dispatched please\",\n\t\"sellerId\": \"U2VsbGVyLTY2MDExOQ==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Commission Packages","item":[{"name":"Commission Package Create","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation commissionPackageCreate ($input: CommissionPackageCreateMutationInput!) {\n\tcommissionPackageCreate (\n\t\tinput: $input\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tcommissionPackage {\n\t\t\tid\n\t\t\tname\n\t\t\trate\n\t\t\tappliesToPostage\n\t\t\tsellers {\n\t\t\t\ttotalCount\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tbusinessName\n\t\t\t\t}\n\t\t\t}\n\t\t\tcustomCommissionRates {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\trate\n\t\t\t\t\ttaxon {\n\t\t\t\t\t\tdisplayName\n\t\t\t\t\t}\n\t\t\t\t\tthresholdPrice\n\t\t\t\t\toverThresholdRate\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"attributes\": {\n\t\t\t\"name\": \"AAA Packages\",\n\t\t\t\"rate\": \"10.1\",\n\t\t\t\"appliesToPostage\": true,\n\t\t\t\"customCommissionRates\": [\n\t\t\t\t{\n\t\t\t\t\t\"rate\": \"1.5\",\n\t\t\t\t\t\"taxonId\": \"VGF4b24tMjA4NQ==\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"rate\": \"1.5\",\n\t\t\t\t\t\"taxonId\": \"VGF4b24tMjA4NA==\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"rate\": \"1.5\",\n\t\t\t\t\t\"taxonId\": \"VGF4b24tMjA4Mw==\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Commission Package Delete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CommissionPackageDelete ($input: CommissionPackageDeleteMutationInput!){\n\tcommissionPackageDelete(\n\t\tinput: $input\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tcommissionPackage {\n\t\t\tid\n\t\t\tname\n\t\t\trate\n\t\t\tappliesToPostage\n\t\t\tsellers {\n\t\t\t\ttotalCount\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tbusinessName\n\t\t\t\t}\n\t\t\t}\n\t\t\tcustomCommissionRates {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\trate\n\t\t\t\t\ttaxon {\n\t\t\t\t\t\tdisplayName\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"id\": \"Q29tbWlzc2lvblBhY2thZ2UtNQ==\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Commission Package Schedule Delete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CommissionPackageScheduleDelete ($id: ID!) {\n\tcommissionPackageScheduleDelete(input: { id: $id }) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"Q29tbWlzc2lvblBhY2thZ2VTY2hlZHVsZS01\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Commission Package Spreadsheet Download","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CommissionPackageSpreadsheetDownload ($id: ID!) {\n\tcommissionPackageScheduleSpreadsheetDownload(\n\t\tinput: {\n\t\t\tcommissionPackageScheduleId: $id\n\t\t\tformat: XLSX\n\t\t\tinvalidOnly: false\n\t\t}\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\texport {\n\t\t\tcreatedAt\n\t\t\texpectedResultCount\n\t\t\tfailedCount\n\t\t\tfile {\n\t\t\t\tid\n\t\t\t\tfilename\n\t\t\t\tsize\n\t\t\t\turl\n\t\t\t}\n\t\t\tclassName\n\t\t\thumanClassName\n\t\t\tid\n\t\t\tlegacyId\n\t\t\tprocessedCount\n\t\t\tstatus\n\t\t\tupdatedAt\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"Q29tbWlzc2lvblBhY2thZ2VTY2hlZHVsZS01\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Commission Package Spreadsheet Upload","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CommissionPackageSpreadsheetUpload($input: CommissionPackageScheduleSpreadsheetUploadMutationInput!) {\n\tcommissionPackageScheduleSpreadsheetUpload(\n\t\tinput: $input\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\timport {\n\t\t\tid\n\t\t\tclassName\n\t\t\tcreatedAt\n\t\t\texpectedResultCount\n\t\t\tfailedCount\n\t\t\tfile {\n\t\t\t\tid\n\t\t\t\tfilename\n\t\t\t\tsize\n\t\t\t\turl\n\t\t\t}\n\t\t\thumanClassName\n\t\t\tprocessedCount\n\t\t\tstatus\n\t\t\tupdatedAt\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"activationDate\" : \"2023-04-08T00:00:00+10:00\",\n\t\t\"spreadsheet\": {\n\t\t\t\"dataBase64\" : \"<Base 64 Encoded CSV>\",\n\t\t\t\"filename\" : \"schdule1.csv\"\n\t\t}\n\t} \n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Commission Package Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CommissionPackageUpdate ($input: CommissionPackageUpdateMutationInput!){\n\tcommissionPackageUpdate(\n\t\tinput: $input\n\t\t\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tcommissionPackage {\n\t\t\tid\n\t\t\tname\n\t\t\trate\n\t\t\tappliesToPostage\n\t\t\tsellers {\n\t\t\t\ttotalCount\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tbusinessName\n\t\t\t\t}\n\t\t\t}\n\t\t\tcustomCommissionRates {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\trate\n\t\t\t\t\ttaxon {\n\t\t\t\t\t\tdisplayName\n\t\t\t\t\t}\n\t\t\t\t\tthresholdPrice\n\t\t\t\t\toverThresholdRate\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"commissionPackageId\": \"Q29tbWlzc2lvblBhY2thZ2UtNQ==\",\n\t\t\"attributes\": {\n\t\t\t\"name\": \"AAA Packages\",\n\t\t\t\"rate\": \"10.1\",\n\t\t\t\"appliesToPostage\": true,\n\t\t\t\"customCommissionRates\": [\n\t\t\t\t{\n\t\t\t\t\t\"rate\": \"1.5\",\n\t\t\t\t\t\"taxonId\": \"VGF4b24tMjA4NQ==\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"rate\": \"1.5\",\n\t\t\t\t\t\"taxonId\": \"VGF4b24tMjA4NA==\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"rate\": \"1.5\",\n\t\t\t\t\t\"taxonId\": \"VGF4b24tMjA4Mw==\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Commission Package Version (Node)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetCommissionPackageVersion($id: ID!) {\n\tnode(id: $id) {\n\t\t... on CommissionPackageVersion {\n\t\t\tid\n\t\t\tlegacyId\n\t\t\tname\n\t\t\tdefaultRate\n\t\t\tappliesToPostage\n\t\t\tcreatedAt\n\t\t\tcustomRates {\n\t\t\t\ttotalCount\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\trate\n\t\t\t\t\t\ttaxon {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\ttitle\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"id\": \"Q29tbWlzc2lvblBhY2thZ2VWZXJzaW9uLTE=\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Commission Package Version Log","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query CommissionPackagVersionLog(\n\t$sellerId: ID!\n\t$pageSizeCPVL: Int\n\t$pageSizeCR: Int\n\t$endCursorCPVL: String\n\t$endCursorCR: String\n) {\n\tcommissionPackageVersionLogs(\n\t\tretailerId: $sellerId\n\t\tfirst: $pageSizeCPVL\n\t\tafter: $endCursorCPVL\n\t) {\n\t\ttotalCount\n\t\tedges  {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tstartedOn\n\t\t\t\tcommissionPackageVersion {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tname\n\t\t\t\t\tactive\n\t\t\t\t\tdefaultRate\n\t\t\t\t\tappliesToPostage\n\t\t\t\t\tcreatedAt\n\t\t\t\t\tcustomRates (first: $pageSizeCR after: $endCursorCR){\n\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\trate\n\t\t\t\t\t\t\t\ttaxon {\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\ttitle\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tpageInfo{\n\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo{\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSizeCPVL\": 5,\n\t\"pageSizeCR\": 5,\n\t\"endCursorCPVL\": \"\",\n\t\"endCursorCR\": \"\",\n\t\"sellerId\": \"U2VsbGVyLTk=\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Commission Package Schedules","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query QueryCommissionPackageSchedules(\n\t$pageSizeCPS: Int\n\t$pageSizeCP: Int\n\t$pageSizeSL: Int\n\t$pageSizeCR: Int\n\t$endCursorCPS: String\n\t$endCursorCP: String\n\t$endCursorSL: String\n\t$endCursorCR: String\n) {\n\tcommissionPackageSchedules(first: $pageSizeCPS, after: $endCursorCPS) {\n\t\ttotalCount\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tstatus\n\t\t\t\tactivationDate\n\t\t\t\tcommissionPackageScheduleItems(\n\t\t\t\t\tfirst: $pageSizeCP\n\t\t\t\t\tafter: $endCursorCP\n\t\t\t\t) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tseller {\n\t\t\t\t\t\t\t\tbusinessName\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tcommissionPackage {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\trate\n\t\t\t\t\t\t\t\tdefault\n\t\t\t\t\t\t\t\tappliesToPostage\n\t\t\t\t\t\t\t\tcustomCommissionRates(first: $pageSizeCR, after: $endCursorCR) {\n\t\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\t\t\trate\n\t\t\t\t\t\t\t\t\t\t\ttaxon {\n\t\t\t\t\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tsellers(first: $pageSizeSL, after: $endCursorSL) {\n\t\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\t\tbusinessName\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"pageSizeCPS\": 5,\n\t\"pageSizeCP\": 5,\n\t\"pageSizeSL\": 5,\n\t\"pageSizeCR\": 5,\n\t\"endCursorCPS\": \"\",\n\t\"endCursorCP\": \"\",\n\t\"endCursorSL\": \"\",\n\t\"endCursorCR\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Commission Package Schedules with Filter","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query QueryCommissionPackageSchedulesWithFilter(\n\t$pageSizeCPS: Int\n\t$pageSizeCP: Int\n\t$pageSizeSL: Int\n\t$pageSizeCR: Int\n\t$endCursorCPS: String\n\t$endCursorCP: String\n\t$endCursorSL: String\n\t$endCursorCR: String\n\t$status: [CommissionPackageScheduleStatusEnum!]\n) {\n\tcommissionPackageSchedules(\n\t\tfirst: $pageSizeCPS, \n\t\tafter: $endCursorCPS\n\t\tfilters: {\n\t\t\tstatus: $status\n\t\t}\n\t) {\n\t\ttotalCount\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tstatus\n\t\t\t\tactivationDate\n\t\t\t\tcommissionPackageScheduleItems(\n\t\t\t\t\tfirst: $pageSizeCP\n\t\t\t\t\tafter: $endCursorCP\n\t\t\t\t) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tseller {\n\t\t\t\t\t\t\t\tbusinessName\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tcommissionPackage {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\trate\n\t\t\t\t\t\t\t\tdefault\n\t\t\t\t\t\t\t\tappliesToPostage\n\t\t\t\t\t\t\t\tcustomCommissionRates(first: $pageSizeCR, after: $endCursorCR) {\n\t\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\t\t\trate\n\t\t\t\t\t\t\t\t\t\t\ttaxon {\n\t\t\t\t\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tsellers(first: $pageSizeSL, after: $endCursorSL) {\n\t\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\t\tbusinessName\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"pageSizeCPS\": 5,\n\t\"pageSizeCP\": 5,\n\t\"pageSizeSL\": 5,\n\t\"pageSizeCR\": 5,\n\t\"endCursorCPS\": \"\",\n\t\"endCursorCP\": \"\",\n\t\"endCursorSL\": \"\",\n\t\"endCursorCR\": \"\",\n\t\"status\": \"QUEUED\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get an Individual Commission Package","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetASingleCommissionPackage(\n\t$id: ID!\n\t$pageSizeSL: Int\n\t$pageSizeCR: Int\n\t$endCursorSL: String\n\t$endCursorCR: String\n) {\n\tnode(id: $id) {\n\t\t... on CommissionPackage {\n\t\t\tid\n\t\t\tname\n\t\t\trate\n\t\t\tcreatedAt\n\t\t\tsellers (first: $pageSizeSL after: $endCursorSL) {\n\t\t\t\ttotalCount\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tbusinessName\n\t\t\t\t}\n\t\t\t}\n\t\t\tcustomCommissionRates (first: $pageSizeCR, after: $endCursorCR){\n\t\t\t\ttotalCount\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\trate\n\t\t\t\t\ttaxon {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tdisplayName\n\t\t\t\t\t}\n\t\t\t\t\tthresholdPrice\n\t\t\t\t\toverThresholdRate\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"Q29tbWlzc2lvblBhY2thZ2UtMQ==\",\n\t\"pageSizeSL\": 10,\n\t\"pageSizeCR\": 10,\n\t\"endCursorSL\": \"\",\n\t\"endCursorCR\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Query Commission Packages","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetCommissionPackages(\n\t$pageSizeCP: Int\n\t$pageSizeSL: Int\n\t$pageSizeCR: Int\n\t$endCursorCP: String\n\t$endCursorSL: String\n\t$endCursorCR: String\n) {\n\tcommissionPackages(first: $pageSizeCP, after: $endCursorCP) {\n\t\ttotalCount\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\trate\n\t\t\t\tappliesToPostage\n\t\t\t\tsellers(first: $pageSizeSL, after: $endCursorSL) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tbusinessName\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcustomCommissionRates(first: $pageSizeCR, after: $endCursorCR) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\trate\n\t\t\t\t\t\t\ttaxon {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthresholdPrice\n\t\t\t\t\t\t\toverThresholdRate\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n  \"pageSizeCP\": 50,\n  \"pageSizeSL\": 10,\n  \"pageSizeCR\": 10,\n  \"endCursorCP\": \"\",\n  \"endCursorSL\": \"\",\n  \"endCursorCR\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Query Commission Packages with Filter","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetCommissionPackages(\n\t$pageSizeCP: Int\n\t$pageSizeSL: Int\n\t$pageSizeCR: Int\n\t$endCursorCP: String\n\t$endCursorSL: String\n\t$endCursorCR: String\n\t$createdSince: ISO8601DateTime\n\t$createdUntil: ISO8601DateTime\n\t$retailerIds: [ID!]\n\t$sort: CommissionPackageSort\n) {\n\tcommissionPackages(\n\t\tfirst: $pageSizeCP \n\t\tafter: $endCursorCP\n\t\tcreatedSince: $createdSince\n\t\tcreatedUntil: $createdUntil\n\t\tretailerIds: $retailerIds\n\t\tsort: $sort\n\t\t\n\t) {\n\t\ttotalCount\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\trate\n\t\t\t\tappliesToPostage\n\t\t\t\tsellers(first: $pageSizeSL, after: $endCursorSL) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tbusinessName\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcustomCommissionRates(first: $pageSizeCR, after: $endCursorCR) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\trate\n\t\t\t\t\t\t\ttaxon {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthresholdPrice\n\t\t\t\t\t\t\toverThresholdRate\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"pageSizeCP\": 50,\n\t\"pageSizeSL\": 10,\n\t\"pageSizeCR\": 10,\n\t\"endCursorCP\": \"\",\n\t\"endCursorSL\": \"\",\n\t\"endCursorCR\": \"\",\n\t\"createdSince\": \"2022-02-10T00:00:00+11:00\",\n\t\"createdUntil\": \"2023-02-14T00:00:00+11:00\",\n\t\"retailerIds\": [\n\t\t\"U2VsbGVyLTE=\"\n\t],\n\t\"sort\": {\n\t\t\"fields\": \"CUSTOM_RATES_COUNT\",\n\t\t\"ordering\": \"ASCENDING\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Contextutal History","item":[{"name":"Contextual History Search","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ContextualHistoryVariant(\n\t$pageSize: Int\n\t$endCursor: String\n\t$itemType: String\n\t$event: String\n) {\n\tcontextualHistory(\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\titemType: $itemType\n\t\tevent: $event\n\t) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tnodes {\n\t\t\tcreatedAt\n\t\t\tchanges\n\t\t\tevent\n\t\t\tid\n\t\t\titemId\n\t\t\titemType\n\t\t\torigin\n\t\t\twhodunnit\n\t\t\twhodunnitType\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\": 100,\n\t\"endCursor\": null,\n\t\"itemType\": \"Variant\",\n\t\"event\": \"update\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Custom Fields","item":[{"name":"Change Custom Field Group Position Index","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldGroupPositionIndexChange (\n\t$customFieldGroupId: ID\n\t$attributes: CustomFieldGroupInput!\n){\n\tcustomFieldGroupCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldGroupId\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomFieldGroup {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tentity\n\t\t}\n\t\terrors{\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n\t\"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC0y\",\n\t\"attributes\": {\n\t\t\"position\": 2\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Change Custom Field Position Index","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldUpdate (\n\t$customFieldId: ID\n\t$attributes: CustomFieldInput!\n){\n\tcustomFieldCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldId \n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomField {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tplaceholder\n\t\t\tfieldType\n\t\t}\n\t}\n}","variables":"{\n  \"customFieldId\": \"Q3VzdG9tRmllbGQtMjA=\",\n  \"attributes\": {\n    \"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC05\",\n    \"position\": 2\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Create - Seller - SINGLE_SELECT","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldCreate (\n\t$customFieldId: ID\n\t$attributes: CustomFieldInput!\n){\n\tcustomFieldCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldId \n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomField {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tplaceholder\n\t\t\tfieldType\n\t\t}\n\t}\n}","variables":"{\n\t\"customFieldId\": null,\n\t\"attributes\": {\n\t\t\"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC05\",\n\t\t\"name\": \"Onboarding Training Completed\",\n\t\t\"description\": \"Completed mandatory training\",\n\t\t\"fieldType\": \"SINGLE_SELECT\",\n\t\t\"defaultValue\": \"No\",\n        \t\"position\" : 3,\n\t\t\"customFieldOptions\": [\n\t\t\t{\n\t\t\t\t\"customFieldOption\": \"Q3VzdG9tRmllbGRPcHRpb24tMzc=\",\n\t\t\t\t\"label\": \"No\",\n\t\t\t\t\"value\": \"No\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"customFieldOption\": \"Q3VzdG9tRmllbGRPcHRpb24tMzg=\",\n\t\t\t\t\"label\": \"Not Required\",\n\t\t\t\t\"value\": \"NA\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"customFieldOption\": \"Q3VzdG9tRmllbGRPcHRpb24tMzY=\",\n\t\t\t\t\"label\": \"Yes\",\n\t\t\t\t\"value\": \"Yes\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Create - Shipping Rule - TEXT","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldCreate (\n\t$customFieldId: ID\n\t$attributes: CustomFieldInput!\n){\n\tcustomFieldCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldId \n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomField {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tplaceholder\n\t\t\tfieldType\n\t\t}\n\t}\n}","variables":"{\n  \"customFieldId\": null,\n  \"attributes\": {\n    \"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC05\",\n    \"name\": \"Notes\",\n    \"fieldType\": \"TEXT\",\n    \"defaultValue\": \"No\",\n    \"position\": 3\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Delete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldDelete($input: CustomFieldDeleteMutationInput!) {\n\tcustomFieldDelete(input: $input) {\n\t\tcustomField {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"id\": \"Q3VzdG9tRmllbGQtOA==\"\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Group Create (Seller)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldGroupCreate (\n\t$attributes: CustomFieldGroupInput!\n){\n\tcustomFieldGroupCreateOrUpdate(\n\t\tinput: {\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomFieldGroup {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tentity\n\t\t}\n\t\terrors{\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n\t\"attributes\": {\n\t\t\"name\": \"Additional Information\",\n\t\t\"description\": \"Your description\",\n\t\t\"entity\": \"SELLER\",\n         \"position\": 1\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Group Create (Shipping Rule)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldGroupCreate (\n\t$attributes: CustomFieldGroupInput!\n){\n\tcustomFieldGroupCreateOrUpdate(\n\t\tinput: {\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomFieldGroup {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tentity\n\t\t}\n\t\terrors{\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n\t\"attributes\": {\n\t\t\"name\": \"Additional Information\",\n\t\t\"description\": \"Your description\",\n\t\t\"entity\": \"SHIPPING_RULE\",\n         \"position\": 1\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Group Delete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldGroupDelete($input: CustomFieldGroupDeleteMutationInput!) {\n\tcustomFieldGroupDelete(input: $input) {\n\t\tcustomFieldGroup {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"id\": \"Q3VzdG9tRmllbGRHcm91cC00\"\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Group Update (Seller)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldGroupUpdate (\n\t$customFieldGroupId: ID\n\t$attributes: CustomFieldGroupInput!\n){\n\tcustomFieldGroupCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldGroupId\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomFieldGroup {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tentity\n\t\t}\n\t\terrors{\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n\t\"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC0y\",\n\t\"attributes\": {\n\t\t\"name\": \"Additional Information\",\n\t\t\"description\": \"Your description\",\n\t\t\"entity\": \"SELLER\",\n         \"position\": 1\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Group Update (Shipping Rule)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldGroupUpdate (\n\t$customFieldGroupId: ID\n\t$attributes: CustomFieldGroupInput!\n){\n\tcustomFieldGroupCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldGroupId\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomFieldGroup {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tentity\n\t\t}\n\t\terrors{\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t}\n}","variables":"{\n\t\"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC0y\",\n\t\"attributes\": {\n\t\t\"name\": \"Additional Information\",\n\t\t\"description\": \"Your description\",\n\t\t\"entity\": \"SHIPPING_RULE\",\n         \"position\": 1\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Update - Seller - SINGLE_SELECT","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldUpdate (\n\t$customFieldId: ID\n\t$attributes: CustomFieldInput!\n){\n\tcustomFieldCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldId \n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomField {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tplaceholder\n\t\t\tfieldType\n\t\t}\n\t}\n}\n","variables":"{\n\t\"customFieldId\": \"Q3VzdG9tRmllbGQtMjA=\",\n\t\"attributes\": {\n\t\t\"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC05\",\n\t\t\"name\": \"Onboarding Training Completed\",\n\t\t\"description\": \"Completed mandatory training\",\n\t\t\"fieldType\": \"SINGLE_SELECT\",\n\t\t\"defaultValue\": \"No\",\n        \t\"position\" : 3,\n\t\t\"customFieldOptions\": [\n\t\t\t{\n\t\t\t\t\"customFieldOption\": \"Q3VzdG9tRmllbGRPcHRpb24tMzc=\",\n\t\t\t\t\"label\": \"No\",\n\t\t\t\t\"value\": \"No\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"customFieldOption\": \"Q3VzdG9tRmllbGRPcHRpb24tMzg=\",\n\t\t\t\t\"label\": \"Not Required\",\n\t\t\t\t\"value\": \"NA\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"customFieldOption\": \"Q3VzdG9tRmllbGRPcHRpb24tMzY=\",\n\t\t\t\t\"label\": \"Yes\",\n\t\t\t\t\"value\": \"Yes\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Custom Field Update - Shipping Rule - TEXT","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CustomFieldUpdate (\n\t$customFieldId: ID\n\t$attributes: CustomFieldInput!\n){\n\tcustomFieldCreateOrUpdate(\n\t\tinput: {\n\t\t\tid: $customFieldId \n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tcustomField {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tplaceholder\n\t\t\tfieldType\n\t\t}\n\t}\n}","variables":"{\n  \"customFieldId\": \"Q3VzdG9tRmllbGQtMjA=\",\n  \"attributes\": {\n    \"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC05\",\n    \"name\": \"Notes\",\n    \"fieldType\": \"TEXT\",\n    \"defaultValue\": \"No\",\n    \"position\": 3\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Custom Field Groups","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetCustomFieldGroups (\n\t$pageSizeGroups: Int, \n\t$afterCursorGroups: String\n\t$pageSizeFields: Int,\n\t$afterCursorFields: String\n){\n\tcustomFieldGroups (first: $pageSizeGroups after: $afterCursorGroups){\n\t\tnodes {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tentity\n\t\t\tcustomFields (first: $pageSizeFields after: $afterCursorFields ) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tname\n\t\t\t\t\tdescription\n\t\t\t\t\tplaceholder\n\t\t\t\t\tfieldType\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo{\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSizeGroups\": 50,\n\t\"afterCursorGroups\": \"\",\n\t\"pageSizeFields\": 10,\n\t\"afterCursorFields\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get a Single Custom Field Group By Id","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetASingleCustomFieldGroup (\n\t$customFieldGroupId: ID!\n\t$pageSizeFields: Int\n\t$afterCursorFields: String\n) {\n\tnode(id: $customFieldGroupId) {\n\t\t... on CustomFieldGroup {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tentity\n\t\t\tcustomFields (first: $pageSizeFields after: $afterCursorFields){\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\tdescription\n\t\t\t\t\t\tplaceholder\n\t\t\t\t\t\tfieldType\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"customFieldGroupId\": \"Q3VzdG9tRmllbGRHcm91cC0x\",\n\t\"pageSizeFields\": 10,\n\t\"afterCursorFields\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get a Single Custom Field by Id","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetASingleCustomField($customFieldId: ID!) {\n\tnode(id: $customFieldId) {\n\t\t... on CustomField {\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t}\n\t}\n}","variables":"{\n\t\"customFieldId\": \"Q3VzdG9tRmllbGQtMg==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"External IDs","item":[{"name":"ExternalIdUpsert","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation AddExternalIdToOrder(\n\t$externalIdMutationInputs: ExternalIDUpsertMutationInput!\n) {\n\texternalIdUpsert(input: $externalIdMutationInputs) {\n\t\tstatus\n\t\texternalId {\n\t\t\tid\n\t\t\tkey\n\t\t\tvalue\n\t\t\towner {\n\t\t\t\tid\n\t\t\t\t__typename\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"externalIdMutationInputs\": {\n\t\t\"key\": \"SYSTEM_1\",\n\t\t\"value\": \"ABC_1234\",\n\t\t\"owner\": \"T3JkZXItMTAwMDA=\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Query Orders based on ExternalIDs","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetOrdersByExternalIds($key: String, $value: String) {\n\texternalIds(ownerType: \"Order\", key: $key, value: $value) {\n\t\tid\n\t\tkey\n\t\tvalue\n\t\towner {\n\t\t\tid\n\t\t\t__typename\n\t\t\t... on Order {\n\t\t\t\tid\n\t\t\t\tinvoices(first: 50) {\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tlineItems {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tstatus\n\t\t\t\t\t\t\t\tstatusFull\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"key\": \"SomeKey\",\n\t\"value\": \"SomeValue\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Golden Record","item":[{"name":"Create Golden Product","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductCreate($attributes: GoldenProductInput!) {\n\tgoldenProductCreate(input: { attributes: $attributes }) {\n\t\tgoldenProduct {\n\t\t\tid\n\t\t\tlegacyId\n\t\t\ttitle\n\t\t\tdescription\n\t\t\tspecifications\n\t\t\tyear\n\t\t\tprice\n\t\t\ttaxCode\n\t\t\tyoutubeVideoId\n\t\t\tyoutubeVideoUrl\n\t\t\tcustomIframeUrl\n\t\t\trecommendedRetailPrice\n\t\t\tcreatedAt\n\t\t\tupdatedAt\n\t\t\tbrand {\n\t\t\t\tid\n\t\t\t}\n\t\t\timages {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tcustomIframeThumbnail {\n\t\t\t\tid\n\t\t\t}\n\t\t\texternalIds {\n\t\t\t\tkey\n\t\t\t\tvalue\n\t\t\t}\n\t\t\tmetadata {\n\t\t\t\tkey\n\t\t\t\tvalue\n\t\t\t}\n\t\t\tsaleType\n\t\t\ttaxon {\n\t\t\t\tid\n\t\t\t}\n\t\t\toptionValues {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\ttextValue\n\t\t\t\t\t\toptionType {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t}\n\t\t\t\t\t\toptionValue {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tmeasurementPriceUnit {\n\t\t\t\tid\n\t\t\t}\n\t\t\tshippingParcel {\n\t\t\t\tid\n\t\t\t}\n\t\t\tdocuments {\n\t\t\t\tnodes {\n\t\t\t\t\turl\n\t\t\t\t\tfilename\n\t\t\t\t}\n\t\t\t}\n\t\t\tgoldenProductVariants {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t\tadverts {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t\tactive\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"attributes\": {\n\t\t\"title\": \"Manual Link Product\",\n\t\t\"brandId\": \"QnJhbmQtNjg=\",\n\t\t\"taxonId\": \"VGF4b24tMjc4\",\n\t\t\"price\": \"9.99\",\n\t\t\"description\": \"This is a great router - Golden Product text\",\n\t\t\"saleType\": \"BUY_ONLINE_OR_CLICK_AND_COLLECT\",\n\t\t\"images\": [\n\t\t\t{\n\t\t\t\t\"sourceUrl\": \"https://picsum.photos/200\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Delete Golden Product","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductDelete($id: ID!) {\n  goldenProductDelete(input: { id: $id }) {\n    errors {\n      field\n      messages\n    }\n  }\n}","variables":"{\n\t\"id\": \"R29sZGVuUHJvZHVjdC04NQ==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get a single Golden Product","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetGoldenProduct($id: ID!) {\n\tnode(id: $id) {\n\t\t... on GoldenProduct {\n\t\t\tid\n\t\t\tlegacyId\n\t\t\ttitle\n\t\t\tactive\n\t\t\tprice\n\t\t\tgoldenProductVariants (first: 50){\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tactive\n\t\t\t\t\tbarcodes\n\t\t\t\t\tsku\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tadverts (first: 20) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\ttitle\n\t\t\t\t\tlegacyId\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"id\": \"R29sZGVuUHJvZHVjdC04Ng==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Golden Product Link Variants","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductVariantUnlinkVariants(\n\t$goldenProductVariantId: ID!\n\t$variantIds: [ID!]!\n) {\n\tgoldenProductVariantLinkVariants(\n\t\tinput: {\n\t\t\tgoldenProductVariantId: $goldenProductVariantId\n\t\t\tvariantIds: $variantIds\n\t\t}\n\t) {\n\t\tgoldenProductVariant {\n\t\t\tid\n\t\t\tvariants {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tadvert {\n\t\t\t\t\t\t... on Advert {\n\t\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"goldenProductVariantId\": \"R29sZGVuUHJvZHVjdFZhcmlhbnQtNjM=\",\n\t\"variantIds\": [\n\t\t\"VmFyaWFudC04NDkzNw==\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Golden Product Unlink Variants","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductVariantUnlinkVariants(\n\t$goldenProductVariantId: ID!\n\t$variantIds: [ID!]!\n) {\n\tgoldenProductVariantUnlinkVariants(\n\t\tinput: {\n\t\t\tgoldenProductVariantId: $goldenProductVariantId\n\t\t\tvariantIds: $variantIds\n\t\t}\n\t) {\n\t\tgoldenProductVariant {\n\t\t\tid\n\t\t\tvariants {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"goldenProductVariantId\": \"R29sZGVuUHJvZHVjdFZhcmlhbnQtNjM=\",\n\t\"variantIds\": [\n\t\t\"VmFyaWFudC04NDkzNw==\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Golden Product Variant Activate","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductVariantsActivate($goldenProductVariantIds: [ID!]!) {\n\tgoldenProductVariantsActivate(\n\t\tinput: { goldenProductVariantIds: $goldenProductVariantIds }\n\t) {\n\t\tgoldenProductVariants {\n\t\t\tid\n\t\t\tactive\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"goldenProductVariantIds\": [\n\t\t\"R29sZGVuUHJvZHVjdFZhcmlhbnQtNjE=\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Golden Product Variant Create","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductVariantCreate($attributes: GoldenProductVariantInput!) {\n\tgoldenProductVariantCreate(input: { attributes: $attributes }) {\n\t\tgoldenProductVariant {\n\t\t\tid\n\t\t\tnotes\n\t\t\tdescription\n\t\t\tbarcodes\n\t\t\tsku\n\t\t\titemSize\n\t\t\tmeasurementItemUnit {\n\t\t\t\tid\n\t\t\t}\n\t\t\tcomparableSize\n\t\t\tmeasurementComparableUnit {\n\t\t\t\tid\n\t\t\t}\n\t\t\trecommendedRetailPrice\n\t\t\ttaxCode\n\t\t\timages {\n\t\t\t\tnodes {\n\t\t\t\t\tfilename\n\t\t\t\t}\n\t\t\t}\n\t\t\texternalIds {\n\t\t\t\tkey\n\t\t\t\tvalue\n\t\t\t}\n\t\t\tmetadata {\n\t\t\t\tkey\n\t\t\t\tvalue\n\t\t\t}\n\t\t\tshippingParcel {\n\t\t\t\tid\n\t\t\t}\n\t\t\tshippingProfile {\n\t\t\t\tid\n\t\t\t}\n\t\t\toptionValues {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"attributes\": {\n\t\t\"goldenProductId\": \"R29sZGVuUHJvZHVjdC04Ng==\",\n\t\t\"description\": \"Variant Golden Product Description\",\n\t\t\"barcodes\": [\n\t\t\t\"978020137962\"\n\t\t],\n\t\t\"sku\": \"abc1234\",\n\t\t\"optionValues\": [\n\t\t\t{\n\t\t\t\t\"optionValueId\": \"T3B0aW9uVmFsdWUtNzMx\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Golden Product Variant Deactivate","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductVariantsDeactivate($goldenProductVariantIds: [ID!]!) {\n\tgoldenProductVariantsDeactivate(\n\t\tinput: { goldenProductVariantIds: $goldenProductVariantIds }\n\t) {\n\t\tgoldenProductVariants {\n\t\t\tid\n\t\t\tactive\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"goldenProductVariantIds\": [\n\t\t\"R29sZGVuUHJvZHVjdFZhcmlhbnQtNjE=\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Golden Product Variant Delete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductVariantDelete($id: ID!) {\n\tgoldenProductVariantDelete(input: { id: $id }) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"id\": \"R29sZGVuUHJvZHVjdFZhcmlhbnQtNTk=\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Golden Product Variant Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductVariantUpdate(\n\t$goldenProductVariantId: ID!\n\t$attributes: GoldenProductVariantUpdateInput!\n) {\n\tgoldenProductVariantUpdate(\n\t\tinput: {\n\t\t\tgoldenProductVariantId: $goldenProductVariantId\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\tgoldenProductVariant {\n\t\t\tid\n\t\t\tnotes\n\t\t\tdescription\n\t\t\tbarcodes\n\t\t\tsku\n\t\t\titemSize\n\t\t\tmeasurementItemUnit {\n\t\t\t\tid\n\t\t\t}\n\t\t\tcomparableSize\n\t\t\tmeasurementComparableUnit {\n\t\t\t\tid\n\t\t\t}\n\t\t\trecommendedRetailPrice\n\t\t\ttaxCode\n\t\t\timages {\n\t\t\t\tnodes {\n\t\t\t\t\tfilename\n\t\t\t\t}\n\t\t\t}\n\t\t\texternalIds {\n\t\t\t\tkey\n\t\t\t\tvalue\n\t\t\t}\n\t\t\tmetadata {\n\t\t\t\tkey\n\t\t\t\tvalue\n\t\t\t}\n\t\t\tshippingParcel {\n\t\t\t\tid\n\t\t\t}\n\t\t\tshippingProfile {\n\t\t\t\tid\n\t\t\t}\n\t\t\toptionValues {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"goldenProductVariantId\": \"R29sZGVuUHJvZHVjdFZhcmlhbnQtNTk=\",\n\t\"attributes\": {\n\t\t\"goldenProductId\": \"R29sZGVuUHJvZHVjdC03OQ==\",\n\t\t\"description\": \"Variant Golden Product Description updated\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Query Golden Product on Advert","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetGoldenProductForAdvert($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Advert {\n\t\t\tid\n\t\t\ttitle\n\t\t\tlegacyId\n\t\t\tvariants {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tbarcode\n\t\t\t\t\tsku\n\t\t\t\t\tlabel\n\t\t\t\t}\n\t\t\t}\n\t\t\tgoldenProduct {\n\t\t\t\tid\n\t\t\t\tgoldenProductVariants {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tbarcodes\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"QWR2ZXJ0LTEwMDA5MzAxMA==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Query Golden Record on Variant","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetGoldenProductForVariant($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Variant {\n\t\t\tid\n\t\t\tgoldenProductVariant {\n\t\t\t\tid\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"VmFyaWFudC00OTU1\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Update Golden Product","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation GoldenProductUpdate(\n\t$goldenProductId: ID!\n\t$attributes: GoldenProductUpdateInput!\n) {\n\tgoldenProductUpdate(\n\t\tinput: { goldenProductId: $goldenProductId, attributes: $attributes }\n\t) {\n\t\tgoldenProduct {\n\t\t\tid\n\t\t\t# other GoldenProduct fields\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n\t\"goldenProductId\": \"R29sZGVuUHJvZHVjdC03Ng==\",\n\t\"attributes\": {\n\t\t\"description\": \"This is passed via attributes\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Variant Upsert from Barcode","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation createProductFromBarcode(\n  $input: VariantUpsertFromBarcodeMutationInput!\n) {\n  variantUpsertFromBarcode(input: $input) {\n    variant {\n      countOnHand\n      advert {\n        ... on Advert {\n          id\n          title\n        }\n        ... on UnpublishedAdvert {\n          id\n          details {\n            title\n          }\n        }\n      }\n    }\n    errors {\n      field\n      messages\n    }\n  }\n}\n","variables":"{\n  \"input\": {\n    \"sellerId\": \"<INSERT BASE64 SELLER ID>\",\n    \"barcode\": \"8297261223664\",\n    \"attemptPublish\": true,\n    \"attributes\": {\n      \"price\": 20,\n      \"salePrice\": 10,\n      \"countOnHand\": 100\n    }\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"goldenProducts (query)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetAllGoldenProducts(\n\t$gpPageSize: Int\n\t$advertPageSize: Int\n\t$activeStatus: GoldenProductActiveStatusEnum\n) {\n\tgoldenProducts(first: $gpPageSize, after: null, activeStatus: $activeStatus) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tnodes {\n\t\t\tid\n\t\t\ttitle\n\t\t\tgoldenProductVariants {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t\tadverts(first: $advertPageSize, after: null) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\ttitle\n\t\t\t\t\tseller {\n\t\t\t\t\t\tbusinessName\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ttotalCount\n\t\t\t\tpageInfo {\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n\n","variables":"{\n\t\"gpPageSize\": 20,\n\t\"advertPageSize\": 20,\n\t\"activeStatus\": \"ACTIVE\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Health Check","item":[{"name":"System Health Check","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query SystemHealthCheck{\n\thealthCheck {\n\t\tsuccess\n\t\tdatabase {\n\t\t\tsuccess\n\t\t\tmessage\n\t\t\tname\n\t\t}\n\t\telasticsearch {\n\t\t\tsuccess\n\t\t\tmessage\n\t\t\tname\n\t\t}\n\t\tmemcached {\n\t\t\tsuccess\n\t\t\tmessage\n\t\t\tname\n\t\t}\n\t\tpuma {\n\t\t\tsuccess\n\t\t\tmessage\n\t\t\tname\n\t\t}\n\t\tredis {\n\t\t\tsuccess\n\t\t\tmessage\n\t\t\tname\n\t\t}\n\t}\n}\n","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Introspection","item":[{"name":"Introspection","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query IntrospectionQuery {\n\t__schema {\n\t\tqueryType {\n\t\t\tname\n\t\t}\n\t\tmutationType {\n\t\t\tname\n\t\t}\n\t\tsubscriptionType {\n\t\t\tname\n\t\t}\n\t\ttypes {\n\t\t\t...FullType\n\t\t}\n\t\tdirectives {\n\t\t\tname\n\t\t\tdescription\n\t\t\tlocations\n\t\t\targs {\n\t\t\t\t...InputValue\n\t\t\t}\n\t\t}\n\t}\n}\nfragment FullType on __Type {\n\tkind\n\tname\n\tdescription\n\tfields(includeDeprecated: true) {\n\t\tname\n\t\tdescription\n\t\targs {\n\t\t\t...InputValue\n\t\t}\n\t\ttype {\n\t\t\t...TypeRef\n\t\t}\n\t\tisDeprecated\n\t\tdeprecationReason\n\t}\n\tinputFields(includeDeprecated: true) {\n\t\t...InputValue\n\t\tisDeprecated\n\t\tdeprecationReason\n\t}\n\tinterfaces {\n\t\t...TypeRef\n\t}\n\tenumValues(includeDeprecated: true) {\n\t\tname\n\t\tdescription\n\t\tisDeprecated\n\t\tdeprecationReason\n\t}\n\tpossibleTypes {\n\t\t...TypeRef\n\t}\n}\nfragment InputValue on __InputValue {\n\tname\n\tdescription\n\ttype {\n\t\t...TypeRef\n\t}\n\tdefaultValue\n}\nfragment TypeRef on __Type {\n\tkind\n\tname\n\tofType {\n\t\tkind\n\t\tname\n\t\tofType {\n\t\t\tkind\n\t\t\tname\n\t\t\tofType {\n\t\t\t\tkind\n\t\t\t\tname\n\t\t\t\tofType {\n\t\t\t\t\tkind\n\t\t\t\t\tname\n\t\t\t\t\tofType {\n\t\t\t\t\t\tkind\n\t\t\t\t\t\tname\n\t\t\t\t\t\tofType {\n\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\tofType {\n\t\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Invoice Annotations","item":[{"name":"Get Invoice Annotations","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetInvoiceAnnotations ($pageSize: Int $afterCursor: String){\n\tinvoiceAnnotationType (first: $pageSize after: $afterCursor){\n\t\ttotalCount\n\t\t nodes{\n\t\t\tid\n\t\t\tname\n\t\t\tdescription\n\t\t\tcreatedAt\n\t\t\tdiscardedAt\n\t\t\tupdatedAt\n\t\t\tcreatableBySeller\n\t\t\tcreatableByCustomer\n\t\t\tcreatableByOperator\n\t\t\teditableBySeller\n\t\t\teditableByCustomer\n\t\t\teditableByOperator\n\t\t\tresolvableBySeller\n\t\t\tresolvableByCustomer\n\t\t\tresolvableByOperator\n\t\t\tviewableBySeller\n\t\t\tviewableByCustomer\n\t\t\tviewableByOperator\n\t\t}\n\t\tpageInfo{\n\t\t\t...PageInfoPartial\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSize\": 50,\n\t\"afterCursor\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Annotation Create","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAnnotationCreate(\n\t$invoiceId: ID!\n\t$invoiceAnnotationTypeId: ID!\n\t$attributes: InvoiceAnnotationInput!\n) {\n\tinvoiceAnnotationCreate(\n\t\tinput: {\n\t\t\tinvoiceId: $invoiceId\n\t\t\tinvoiceAnnotationTypeId: $invoiceAnnotationTypeId\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tinvoiceAnnotation {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"invoiceId\": \"SW52b2ljZS0xMDAwMA==\",\n\t\"invoiceAnnotationTypeId\": \"SW52b2ljZUFubm90YXRpb25UeXBlLTg=\",\n\t\"attributes\": {\n\t\t\"content\": \"Courier Picked Up\",\n\t\t\"resolved\": false\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Annotation Create Type","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAnnotationCreateType ($attributes: InvoiceAnnotationTypeInput!){\n\tinvoiceAnnotationTypeCreate(\n\t\tinput: {\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tinvoiceAnnotationType {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"attributes\": {\n\t\t\"name\": \"Order Received 2\",\n\t\t\"description\": \"The order has been received\",\n\t\t\"creatableByCustomer\": true,\n\t\t\"creatableBySeller\": true,\n\t\t\"creatableByOperator\": true,\n\t\t\"editableBySeller\": true,\n\t\t\"editableByCustomer\": true,\n\t\t\"editableByOperator\": true,\n\t\t\"resolvableBySeller\": true,\n\t\t\"resolvableByCustomer\": true,\n\t\t\"resolvableByOperator\": true,\n\t\t\"viewableBySeller\": true,\n\t\t\"viewableByCustomer\": true,\n\t\t\"viewableByOperator\": true\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Annotation Discard Type","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAnnotationTypeDiscard($id: ID!){\n\tinvoiceAnnotationTypeDiscard(\n\t\tinput: {\n\t\t\tinvoiceAnnotationTypeId: $id\n\t\t}\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tinvoiceAnnotationType {\n\t\t\tid\n\t\t}\n\t}\n}\n","variables":"{\n\t\"id\": \"SW52b2ljZUFubm90YXRpb25UeXBlLTk=\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Annotation Resolve","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAnnotationResolve ($invoiceAnnotationId: ID!){\n\tinvoiceAnnotationResolve(input:\n\t\t{\n\t\t\tinvoiceAnnotationId: $invoiceAnnotationId\n\t\t})\n\t{\n\t\terrors{\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tinvoiceAnnotation{\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"invoiceAnnotationId\": \"SW52b2ljZUFubm90YXRpb25UeXBlLTg=\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Annotation Update Type","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAnnotationUpdateType (\n\t$id: ID!\n\t$attributes: InvoiceAnnotationTypeInput!){\n\tinvoiceAnnotationTypeUpdate(\n\t\tinput: {\n\t\t\tinvoiceAnnotationTypeId: $id\n\t\t\tattributes: $attributes\n\t\t}\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tinvoiceAnnotationType {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"SW52b2ljZUFubm90YXRpb25UeXBlLTk=\",\n\t\"attributes\": {\n\t\t\"name\": \"Order Received 3\",\n\t\t\"description\": \"The order has been received again\",\n\t\t\"creatableByCustomer\": true,\n\t\t\"creatableBySeller\": true,\n\t\t\"creatableByOperator\": true,\n\t\t\"editableBySeller\": true,\n\t\t\"editableByCustomer\": true,\n\t\t\"editableByOperator\": true,\n\t\t\"resolvableBySeller\": true,\n\t\t\"resolvableByCustomer\": true,\n\t\t\"resolvableByOperator\": true,\n\t\t\"viewableBySeller\": true,\n\t\t\"viewableByCustomer\": true,\n\t\t\"viewableByOperator\": true\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Metadata","item":[{"name":"Metadata Upsert","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation AddMetaDataToOrder ($input: MetadataUpsertMutationInput!){\n  metadataUpsert(input: $input)\n  {\n    status\n    metadata{\n      key\n      value\n    }\n  }\n}","variables":"{\n\t\"input\": {\n\t\t\"owner\": \"T3JkZXItMTAwNzA=\",\n\t\t\"key\": \"CreditRating\",\n\t\t\"value\": \"Poor\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Nodes","item":[{"name":"Get a list of objects that implement node","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetAllNodeTypes{\n  __type(name: \"Node\") {\n    possibleTypes {\n      name\n    }\n  }\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Node Query for (Multiple) Orders","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetOrdersById($ids: [ID!]!){\n  nodes(ids: $ids)\n  {\n    ... on Order {\n      __typename\n      id\n      status\n    }\n  }\n}","variables":"{\n\t\"ids\": [\n\t\t\"T3JkZXItMTAwMDA=\",\n\t\t\"T3JkZXItMTAwNjk=\",\n\t\t\"T3JkZXItMTAwNzQ=\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Node Query for (Single) Advert","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetAProductById($id: ID!, $pageSize: Int, $endCursor: String) {\n\tnode(id: $id) {\n\t\t... on Advert {\n\t\t\tid\n\t\t\tlegacyId\n\t\t\ttitle\n\t\t\tdisplayable\n\t\t\tpublished\n\t\t\tvariants(displayableOnly: false, first: $pageSize, after: $endCursor) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tlabel\n\t\t\t\t\tsku\n\t\t\t\t\tlowestPrice\n\t\t\t\t\tlowestOriginalPrice\n\t\t\t\t\tcountOnHand\n\t\t\t\t\tdisplayable\n\t\t\t\t\tcountOnHand\n\t\t\t\t\tpublished\n\t\t\t\t\tbuyable\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tseller {\n\t\t\t\tbusinessName\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSize\": 3,\n\t\"endCursor\" : null,\n\t\"id\": \"QWR2ZXJ0LTEwMDA5MjkwNw==\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Orders and Invoices","item":[{"name":"Create Order (AU Example)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CreateOrderAU($input: OrderCreateMutationInput!) {\n\torderCreate(input: $input) {\n\t\tstatus\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\torder {\n\t\t\tid\n\t\t\tinvoices {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\tlineItems {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tquantity\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"order\": {\n\t\t\t\"externalIds\": [\n\t\t\t\t{\n\t\t\t\t\t\"key\": \"VRPOrderId\",\n\t\t\t\t\t\"value\": \"abc124\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"firstName\": \"Jane\",\n\t\t\t\"surname\": \"Doe\",\n\t\t\t\"phone\": \"0405123456\",\n\t\t\t\"billingFirstName\": \"John\",\n\t\t\t\"billingSurname\": \"Doe\",\n\t\t\t\"emailAddress\": \"john@email.com\",\n\t\t\t\"billingEmailAddress\": \"john@email.com\",\n\t\t\t\"address\": {\n\t\t\t\t\"address\": \"1 Bourke Street\",\n\t\t\t\t\"city\": \"Melbourne\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"AU\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"3000\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"name\": \"Victoria\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"billingAddress\": {\n\t\t\t\t\"address\": \"1 Bourke Street\",\n\t\t\t\t\"city\": \"Melbourne\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"AU\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"3000\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"name\": \"Victoria\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"termsAndConditionsAccepted\": true,\n\t\t\t\"paymentGatewayDetails\": {\n\t\t\t\t\"authToken\": \"ABC1234\",\n\t\t\t\t\"provider\": \"Cybersource\"\n\t\t\t}\n\t\t},\n\t\t\"lineItems\": [\n\t\t\t{\n\t\t\t\t\"variantId\": \"VmFyaWFudC0yODk4Ng==\",\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"cost\": {\n\t\t\t\t\t\"amount\": 4500,\n\t\t\t\t\t\"tax\": 45\n\t\t\t\t},\n\t\t\t\t\"postage\": {\n\t\t\t\t\t\"amount\": 100,\n\t\t\t\t\t\"tax\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"variantId\": \"VmFyaWFudC0yODg5MA==\",\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"cost\": {\n\t\t\t\t\t\"amount\": 4500,\n\t\t\t\t\t\"tax\": 45\n\t\t\t\t},\n\t\t\t\t\"postage\": {\n\t\t\t\t\t\"amount\": 100,\n\t\t\t\t\t\"tax\": 0\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Create Order (US Example)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CreateOrderUS($input: OrderCreateMutationInput!) {\n\torderCreate(input: $input) {\n\t\tstatus\n\t\terrors{\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\torder {\n\t\t\tid\n\t\t\tinvoices {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\tlineItems {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tquantity\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"order\": {\n\t\t\t\"externalIds\": [\n\t\t\t\t{\n\t\t\t\t\t\"key\": \"VRPOrderId\",\n\t\t\t\t\t\"value\": \"abc124\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"firstName\": \"Jane\",\n\t\t\t\"surname\": \"Doe\",\n\t\t\t\"phone\": \"0405123456\",\n\t\t\t\"billingFirstName\": \"John\",\n\t\t\t\"billingSurname\": \"Doe\",\n\t\t\t\"emailAddress\": \"john@email.com\",\n\t\t\t\"billingEmailAddress\": \"john@email.com\",\n\t\t\t\"address\": {\n\t\t\t\t\"address\": \"9001 Belmart Rd\",\n\t\t\t\t\"city\": \"Potomac\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"US\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"20854\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"short\": \"MD\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"billingAddress\": {\n\t\t\t\t\"address\": \"9001 Belmart Rd\",\n\t\t\t\t\"city\": \"Potomac\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"US\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"20854\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"short\": \"MD\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"termsAndConditionsAccepted\": true,\n\t\t\t\"paymentGatewayDetails\": {\n\t\t\t\t\"authToken\": \"ABC1234\",\n\t\t\t\t\"provider\": \"Cybersource\"\n\t\t\t}\n\t\t},\n\t\t\"lineItems\": [\n\t\t\t{\n\t\t\t\t\"variantId\": \"VmFyaWFudC0yODk4Ng==\",\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"cost\": {\n\t\t\t\t\t\"amount\": 4500,\n\t\t\t\t\t\"tax\": 45\n\t\t\t\t},\n\t\t\t\t\"postage\": {\n\t\t\t\t\t\"amount\": 100,\n\t\t\t\t\t\"tax\": 0\n\t\t\t\t}\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"variantId\": \"VmFyaWFudC0yODg5MA==\",\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"cost\": {\n\t\t\t\t\t\"amount\": 4500,\n\t\t\t\t\t\"tax\": 45\n\t\t\t\t},\n\t\t\t\t\"postage\": {\n\t\t\t\t\t\"amount\": 100,\n\t\t\t\t\t\"tax\": 0\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Create Order with Fee (US Example)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CreateOrderUSWithFee($input: OrderCreateMutationInput!) {\n\torderCreate(input: $input) {\n\t\tstatus\n\t\terrors{\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\torder {\n\t\t\tid\n\t\t\tinvoices {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\tlineItems {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tquantity\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"order\": {\n\t\t\t\"firstName\": \"Jane\",\n\t\t\t\"surname\": \"Doe\",\n\t\t\t\"phone\": \"0405123456\",\n\t\t\t\"billingFirstName\": \"John\",\n\t\t\t\"billingSurname\": \"Doe\",\n\t\t\t\"emailAddress\": \"john@email.com\",\n\t\t\t\"billingEmailAddress\": \"john@email.com\",\n\t\t\t\"address\": {\n\t\t\t\t\"address\": \"9001 Belmart Rd\",\n\t\t\t\t\"city\": \"Potomac\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"US\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"20854\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"short\": \"MD\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"billingAddress\": {\n\t\t\t\t\"address\": \"9001 Belmart Rd\",\n\t\t\t\t\"city\": \"Potomac\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"US\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"20854\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"short\": \"MD\"\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t\"invoices\": [\n\t\t\t{\n\t\t\t\t\"lineItems\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"variantId\": \"VmFyaWFudC0yODk4Ng==\",\n\t\t\t\t\t\t\"quantity\": 3,\n\t\t\t\t\t\t\"cost\": {\n\t\t\t\t\t\t\t\"amount\": 4500,\n\t\t\t\t\t\t\t\"tax\": 45\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"postage\": {\n\t\t\t\t\t\t\t\"amount\": 100,\n\t\t\t\t\t\t\t\"tax\": 0\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"adjustments\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"adjustmentType\": \"FEE\",\n\t\t\t\t\t\t\t\t\"amountCents\": 400,\n\t\t\t\t\t\t\t\t\"amountToWithholdFromSellerRemittanceCents\": 0,\n\t\t\t\t\t\t\t\t\"description\": \"Additional Shipping Fee\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"adjustmentType\": \"FEE\",\n\t\t\t\t\t\t\t\t\"amountCents\": 4,\n\t\t\t\t\t\t\t\t\"amountToWithholdFromSellerRemittanceCents\": 4,\n\t\t\t\t\t\t\t\t\"description\": \"Additional Shipping Fee Tax\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Create Order with Notifications (US Example)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CreateOrderUSWithNotification($input: OrderCreateMutationInput!) {\n\torderCreate(input: $input) {\n\t\tstatus\n\t\terrors{\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\torder {\n\t\t\tid\n\t\t\tinvoices {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\tlineItems {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tquantity\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"notifications\": [\n\t\t\t\"EMAIL\",\n\t\t\t\"SMS\"\n\t\t],\n\t\t\"order\": {\n\t\t\t\"firstName\": \"Jane\",\n\t\t\t\"surname\": \"Doe\",\n\t\t\t\"phone\": \"0405123456\",\n\t\t\t\"billingFirstName\": \"John\",\n\t\t\t\"billingSurname\": \"Doe\",\n\t\t\t\"emailAddress\": \"john@email.com\",\n\t\t\t\"billingEmailAddress\": \"john@email.com\",\n\t\t\t\"address\": {\n\t\t\t\t\"address\": \"9001 Belmart Rd\",\n\t\t\t\t\"city\": \"Potomac\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"US\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"20854\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"short\": \"MD\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"billingAddress\": {\n\t\t\t\t\"address\": \"9001 Belmart Rd\",\n\t\t\t\t\"city\": \"Potomac\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"US\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"20854\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"short\": \"MD\"\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t\"lineItems\": [\n\t\t\t{\n\t\t\t\t\"variantId\": \"VmFyaWFudC0yODk4Ng==\",\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"cost\": {\n\t\t\t\t\t\"amount\": 4500,\n\t\t\t\t\t\"tax\": 45\n\t\t\t\t},\n\t\t\t\t\"postage\": {\n\t\t\t\t\t\"amount\": 100,\n\t\t\t\t\t\"tax\": 0\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Create Order with Promotion (AU Example)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CreateOrderAUWithPromotion($input: OrderCreateMutationInput!) {\n\torderCreate(input: $input) {\n\t\tstatus\n\t\terrors{\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\torder {\n\t\t\tid\n\t\t\tinvoices {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\tlineItems {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tquantity\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"order\": {\n\t\t\t\"externalIds\": [\n\t\t\t\t{\n\t\t\t\t\t\"key\": \"VRPOrderId\",\n\t\t\t\t\t\"value\": \"abc125\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"firstName\": \"Jane\",\n\t\t\t\"surname\": \"Doe\",\n\t\t\t\"phone\": \"0405123456\",\n\t\t\t\"billingFirstName\": \"John\",\n\t\t\t\"billingSurname\": \"Doe\",\n\t\t\t\"emailAddress\": \"john@email.com\",\n\t\t\t\"billingEmailAddress\": \"john@email.com\",\n\t\t\t\"address\": {\n\t\t\t\t\"address\": \"1 Bourke Street\",\n\t\t\t\t\"city\": \"Melbourne\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"AU\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"3000\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"name\": \"Victoria\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"billingAddress\": {\n\t\t\t\t\"address\": \"1 Bourke Street\",\n\t\t\t\t\"city\": \"Melbourne\",\n\t\t\t\t\"country\": {\n\t\t\t\t\t\"code\": \"AU\"\n\t\t\t\t},\n\t\t\t\t\"postcode\": \"3000\",\n\t\t\t\t\"state\": {\n\t\t\t\t\t\"name\": \"Victoria\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"termsAndConditionsAccepted\": true,\n\t\t\t\"paymentGatewayDetails\": {\n\t\t\t\t\"authToken\": \"ABC1234\",\n\t\t\t\t\"provider\": \"Cybersource\"\n\t\t\t}\n\t\t},\n\t\t\"lineItems\": [\n\t\t\t{\n\t\t\t\t\"variantId\": \"VmFyaWFudC0yODk4Ng==\",\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"cost\": {\n\t\t\t\t\t\"amount\": 4500,\n\t\t\t\t\t\"tax\": 45\n\t\t\t\t},\n\t\t\t\t\"postage\": {\n\t\t\t\t\t\"amount\": 100,\n\t\t\t\t\t\"tax\": 0\n\t\t\t\t},\n\t\t\t\t\"adjustments\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"adjustmentType\": \"PROMOTION\",\n\t\t\t\t\t\t\"amountCents\": -450,\n\t\t\t\t\t\t\"amountToWithholdFromSellerRemittanceCents\": 0,\n\t\t\t\t\t\t\"description\": \"10% off Marketplace wide\",\n\t\t\t\t\t\t\"sourceId\": \"UHJvbW90aW9uLTE3\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Invoices with Filtering and Ordering","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetInvoicesWithFilteringAndOrdering \n(\n\t$pageSize: Int\n\t$endCursor: String\n\t$sort: InvoiceSort\n\t$filters: InvoiceFilters\n){\n\tinvoices(\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\tfilters: $filters\n\t\tsort: $sort\n\t) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tcreatedAt\n\t\t\t\tupdatedAt\n\t\t\t\torder {\n\t\t\t\t\tupdatedAt\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t\tstatusFlags\n\t\t\t\tlineItems {\n\t\t\t\t\tid\n\t\t\t\t\tvariantId\n\t\t\t\t\tvariantSku\n\t\t\t\t\tvariantBarcode\n\t\t\t\t\tvariantName\n\t\t\t\t\ttotalCents\n\t\t\t\t}\n\t\t\t\tshipments {\n\t\t\t\t\tid\n\t\t\t\t\tdispatchedAt\n\t\t\t\t\tshippedItems {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tlineItem {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tadvertTitle\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"pageSize\": 100,\n\t\"endCursor\": \"\",\n\t\"sort\": {\n\t\t\"fields\": [\n\t\t\t\"UPDATED_AT\"\n\t\t],\n\t\t\"ordering\": \"DESCENDING\"\n\t},\n\t\"filters\": {\n\t\t\"updatedSince\": \"2022-01-01\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Orders Updated Since updated date","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetOrderUpdatedSince(\n\t$updatedSince: ISO8601DateTime!\n\t$pageSize: Int\n\t$endCursor: String\n) {\n\tupdatedOrders(\n\t\tupdatedSince: $updatedSince\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t) {\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\ttotalCents\n\t\t\t}\n\t\t}\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t}\n}","variables":"{\n\t\"updatedSince\": \"2024-02-07T16:15:54+11:00\",\n\t\"pageSize\": 100,\n\t\"endCursor\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Purge Order Data","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation PurgeOrderData ($input: PurgeOrderDataMutationInput!){\n\tpurgeOrderData(input: $input\n\t)\n\t{\n\t\terrors{\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"orderIds\": [\n\t\t\t\"T3JkZXItMTMzNjU=\"\n\t\t],\n\t\t\"purgeExternalIds\": false,\n\t\t\"purgeMetadata\": false,\n\t\t\"purgeNotes\": false,\n\t\t\"purgeOrderDetails\": false\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Promotions","item":[{"name":"Promotion Upsert","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation CreatePromotion($input: PromotionUpsertMutationInput!){\n\tpromotionUpsert(\n\t\tinput: $input\n\t) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tpromotion {\n\t\t\tid\n\t\t\tname\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"attributes\": {\n\t\t\t\"name\": \"10% Off\",\n\t\t\t\"description\" : \"10% off site wide\",\n\t\t\t\"discountAmount\" : 10,\n\t\t\t\"discountType\": \"PERCENT\",\n\t\t\t\"brandsExcludedIds\" : [\n\t\t\t\t\"QnJhbmQtNA==\", \"QnJhbmQtMTk=\"\n\t\t\t],\n\t\t\t\"categoriesIncludedIds\": [\"VGF4b24tNzg=\"],\n\t\t\t\"costPercentageBorneByMarketplace\": 100\n\t\t}\n\t} \n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Promotions Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query PromotionQuery($status: String, $pageSize: Int, $endCursor: String) {\n\tpromotions(status: $status, first: $pageSize, after: $endCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tnodes  {\n\t\t\tid\n\t\t\tseller {\n\t\t\t\tid\n\t\t\t\tbusinessName\n\t\t\t}\n\t\t\tname\n\t\t\tteaser\n\t\t\tdescription\n\t\t\tstartDate\n\t\t\tendDate\n\t\t\tminimumSpend\n\t\t\tmaximumSpend\n\t\t\tsuspended\n\t\t\tdiscountType\n\t\t\tdiscountAmount\n\t\t\tfreeShipping\n\t\t\tcostPercentageBorneByMarketplace\n\t\t\tloyaltyProgramLevels (first: $pageSize, after: $endCursor){\n\t\t\t\tnodes {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tfreeShippingDomesticOnly\n\t\t\tbrandsIncluded (first: $pageSize, after: $endCursor){\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tbrandsExcluded (first: $pageSize, after: $endCursor){\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tcategoriesIncluded (first: $pageSize, after: $endCursor){\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tdisplayName\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tcategoriesExcluded (first: $pageSize, after: $endCursor){\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tdisplayName\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tadvertsIncluded (first: $pageSize, after: $endCursor){\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tdescription\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tadvertsExcluded (first: $pageSize, after: $endCursor) {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tdescription\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tvariantsIncluded (first: $pageSize, after: $endCursor){\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tsku\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tvariantsExcluded (first: $pageSize, after: $endCursor) {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tsku\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t\tsaleItemsExcluded\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"status\": \"active\",\n\t\"pageSize\": 10,\n\t\"endCursor\": \"\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Tax Code Create or Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation TaxCodeCreateOrUpdate($input: TaxCodeCreateOrUpdateMutationInput!){\n\ttaxCodeCreateOrUpdate(input: $input) {\n\t\ttaxCode {\n\t\t\tcode\n\t\t\tname\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"code\": \"ABCS\",\n\t\t\"name\": \"ABCS\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Refunds (Advanced Flow)","item":[{"name":"Additional Charge - invoiceAmendmentCreate","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAmendmentCreateAdditionalCharge(\n\t$input: InvoiceAmendmentCreateMutationInput!\n) {\n\tinvoiceAmendmentCreate(input: $input) {\n\t\t errors {\n      field\n      messages\n    }\n\t\tinvoiceAmendment {\n      id\n      additionalChargesInvoiceId\n      additionalChargesNetAmountFormatted\n      additionalChargesTaxAmountFormatted\n      additionalChargesGrossAmountFormatted\n      createdAt\n      invoice {\n        id\n        legacyId\n        statusFlags\n      }\n      lineItems {\n        id\n        status\n        custom\n        issueInvoice\n      }\n    }\n\t}\n}","variables":"{\n  \"input\": {\n    \"invoiceId\": \"SW52b2ljZS0xMDQ1MA==\",\n    \"remittanceCents\": 500,\n    \"lineItems\": [\n      {\n        \"custom\": \"Return Charge\",\n        \"issueInvoice\": true,\n        \"quantity\": 1,\n        \"status\": \"REFUNDED\",\n        \"lineItemPriceBreakdown\": {\n          \"lineItemAmount\": 2000,\n          \"lineItemTax\": 200,\n          \"commissionAmount\": 100,\n          \"commissionTax\": 10,\n          \"remittanceAmount\": 1900,\n          \"remittanceTax\": 190\n        }\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Additional Charge using refundRequestApprove","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestApproveWithCharge($input: RefundRequestApproveInput!) {\n\trefundRequestApprove(input: $input) {\n\t\trefundRequest{\n\t\t\tid\n\t\t\tstatus\n\t\t\tinvoice{\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tstatusFlags\n\t\t\t\tamendments{\n\t\t\t\t\tid\n      \t\tadditionalChargesInvoiceId\n      \t\tadditionalChargesNetAmountFormatted\n      \t\tadditionalChargesTaxAmountFormatted\n      \t\tadditionalChargesGrossAmountFormatted\n\t\t\t\t\t\tlineItems {\n       \t\t\t\tid\n        \t\t\tstatus\n        \t\t\tcustom\n        \t\t\tissueInvoice\n      \t\t       }\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01NTE=\",\n\t\t\"newCustomLineItemPriceBreakdowns\": [\n\t\t\t{\n\t\t\t\t\"issueInvoice\": true,\n\t\t\t\t\"lineItemAmount\": -200,\n\t\t\t\t\"commissionAmount\": 50,\n\t\t\t\t\"custom\": \"Return Shipping Charge\",\n\t\t\t\t\"remittanceAmount\": 0\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Create Return Shipment - Base 64 Attachments","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation createReturnShipment ($input: ReturnShipmentCreateMutationInput!){\n\treturnShipmentCreate(\n\t\tinput: $input\n\t) {\n\t\tshipment {\n\t\t\tid\n\t\t\tcarrier {\n\t\t\t\tname\n\t\t\t\ttrackingUrl\n\t\t\t}\n\t\t\tattachments {\n\t\t\t\turl\n\t\t\t\talt\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\" : \"UmVmdW5kUmVxdWVzdC01Mjc=\",\n\t\t\"carrierId\" : \"U2hpcG1lbnRDYXJyaWVyLTcw\",\n\t\t\"trackingNumber\": \"ABC-1234\",\n\t\t\"shippedItems\": [\n\t\t\t{\n\t\t\t\t\"lineItemId\" : \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc1Ng==\",\n\t\t\t\t\"quantity\": 1\n\t\t\t}\n\t\t],\n\t\t\"attachments\": [\n\t\t\t{\n\t\t\t\t\"filename\": \"packing_slip.jpg\",\n\t\t\t\t\"dataBase64\": \"<BASE 64 STRING HERE>\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Create Return Shipment - URL Attachments","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation createReturnShipment ($input: ReturnShipmentCreateMutationInput!){\n\treturnShipmentCreate(\n\t\tinput: $input\n\t) {\n\t\tshipment {\n\t\t\tid\n\t\t\tcarrier {\n\t\t\t\tname\n\t\t\t\ttrackingUrl\n\t\t\t}\n\t\t\tattachments {\n\t\t\t\turl\n\t\t\t\talt\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01Mjc=\",\n\t\t\"carrierId\": \"U2hpcG1lbnRDYXJyaWVyLTcw\",\n\t\t\"trackingNumber\": \"ABC-1234\",\n\t\t\"shippedItems\": [\n\t\t\t{\n\t\t\t\t\"lineItemId\": \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc1Ng==\",\n\t\t\t\t\"quantity\": 1\n\t\t\t}\n\t\t],\n\t\t\"attachments\": [\n\t\t\t{\n\t\t\t\t\"sourceUrl\": \"<YOUR PUBLIC IMAGE URL>\",\n\t\t\t\t\"alt\": \"Packing Slip\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Approve","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestApprove($input: RefundRequestApproveInput!) {\n\trefundRequestApprove(input: $input) {\n\t\trefundRequest {\n\t\t\tid\n\t\t\tstatus\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n  \"input\": {\n    \"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01NTE=\",\n    \"lineItemPriceBreakdowns\": [\n      {\n        \"id\": \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc5MA==\",\n        \"lineItemAmount\": 1000,\n        \"commissionAmount\": 200,\n        \"remittanceAmount\": 800\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Create (Advanced)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestCreate ($input: RefundRequestCreateMutationInput!){\n\trefundRequestCreate(\n\t\tinput: $input\n\t) {\n\t\trefundRequest {\n\t\t\tid\n\t\t\tstatus\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n  \"input\": {\n    \"invoiceId\": \"SW52b2ljZS0xMzQ2NA==\",\n    \"lineItems\": [\n      {\n        \"lineItemId\": \"TGluZUl0ZW0tMzgyNQ==\",\n        \"reason\": \"Buyer changed their mind\",\n        \"quantity\": 1,\n        \"status\": \"PENDING_APPROVAL\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"note\": \"Change of mind within T&Cs\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Line Item Accept","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestLineItemAccept(\n\t$input: RefundRequestLineItemAcceptMutationInput!\n) {\n\trefundRequestLineItemAccept(input: $input) {\n\t\trefundRequestLineItem {\n\t\t\tstatus\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"refundRequestLineItemId\": \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc5MA==\",\n    \"notes\": [\n      {\n        \"note\": \"This item does not need to be returned.\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Line Item Deny","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestLineItemDeny(\n\t$input: RefundRequestLineItemDenyMutationInput!\n) {\n\trefundRequestLineItemDeny(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n  \"input\": {\n    \"refundRequestLineItemId\": \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc5MA==\",\n    \"denyRefundReason\": \"Refund window exceeded\",\n    \"notes\": [\n      {\n        \"note\": \"Refund request went beyone the refund window\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Line Item Return","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestLineItemReturn($input: RefundRequestLineItemReturnMutationInput!) {\n\trefundRequestLineItemReturn(\n\t\tinput: $input\n\t) {\n\t\trefundRequestLineItem {\n\t\t\tstatus\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}\n","variables":"{\n  \"input\": {\n    \"refundRequestLineItemId\": \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc5MA==\",\n    \"notes\": [\n      {\n        \"note\": \"This item does not need to be returned.\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Refund","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestRefund($input: RefundRequestRefundMutationInput!){\n  refundRequestRefund(input: $input)\n  {\n    refundRequest{\n      id\n      status\n    }\n    errors\n    {\n      field\n      messages\n    }\n  }\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01NTE=\",\n\t\t\"cashAmountCents\": 4500,\n\t\t\"notes\": [\n\t\t\t{\n\t\t\t\t\"note\": \"Refunded\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Refunds and Invoice Amendments","item":[{"name":"Get Refund Request by Id","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetRefundRequestById($id: ID!) {\n\tnode(id: $id) {\n\t\t... on RefundRequest {\n\t\t\tid\n\t\t\tlegacyId\n\t\t\tinvoice {\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t}\n\t\t\tstatus\n\t\t\tinitiatedBy\n\t\t\trefundedAt\n\t\t\tlineItemAmountTotalCents\n\t\t\tlineItemTaxTotalCents\n\t\t\tcommissionAmountTotalCents\n\t\t\tcommissionTaxTotalCents\n\t\t\tremittanceAmountTotalCents\n\t\t\tremittanceTaxTotalCents\n\t\t\tlineItems {\n\t\t\t\tid\n\t\t\t\tlineItemAmountCents\n\t\t\t\tlineItemTaxCents\n\t\t\t\tcommissionAmountCents\n\t\t\t\tcommissionTaxCents\n\t\t\t\tremittanceAmountCents\n\t\t\t\tremittanceTaxCents\n\t\t\t}\n\t\t\tnotes {\n\t\t\tid,\n\t\t\t}\n\t\t\tshipments {\n\t\t\t\tid\n\t\t\t}\n\t\t\tcreatedAt\n\t\t\tupdatedAt\n\t\t}\n\t}\n}","variables":"{\n\t\"id\": \"UmVmdW5kUmVxdWVzdC01NTE=\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Refund Requests Updated Since","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetRefundRequestsUpdatedSince\n($pageSize: Int $endCursor: String $updatedSince: ISO8601DateTime!)\n{\n  updatedRefundRequests\n\t(\n\t\tupdatedSince: $updatedSince\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\n\t)\n  {\n    edges{\n      node{\n        id\n        status\n        cashAmountCents\n        createdAt\n        refundedAt\n        updatedAt\n        giftCardAmountCents\n        recoveredAmountCents\n        refundAmountCents\n        totalCents\n        initiatedBy\n        invoice{\n          id\n        }\n        lineItems{\n          id\n          amountCents\n          amountPerItemCents\n          onlyRemittance\n          quantity\n          reason \n        }\n      }  \n    }\n\t\tpageInfo{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n  }\n}","variables":"{\n  \"pageSize\": 50,\n  \"endCursor\": \"\",\n  \"updatedSince\": \"2021-08-05\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Amendment Create (Custom)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAmendmentCreateCustom(\n\t$input: InvoiceAmendmentCreateMutationInput!\n) {\n\tinvoiceAmendmentCreate(input: $input) {\n\t\tstatus\n\t\tinvoiceAmendment {\n\t\t\tid\n\t\t\tcreatedAt\n\t\t\tlineItems {\n\t\t\t\tid\n\t\t\t\tstatus\n\t\t\t\tlineItem {\n\t\t\t\t\tid\n\t\t\t\t\tstatus\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"invoiceId\": \"SW52b2ljZS0xMzQ2NA==\",\n\t\t\"remittanceCents\": -4500,\n\t\t\"lineItems\": [\n\t\t\t{\n\t\t\t\t\"custom\": \"Push remit to Seller\",\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"amountCents\": -4500,\n\t\t\t\t\"status\": \"REFUNDED\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Amendment Create (Line Item & Custom)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAmendmentCreateLineAndCustom(\n\t$input: InvoiceAmendmentCreateMutationInput!\n) {\n\tinvoiceAmendmentCreate(input: $input) {\n\t\tstatus\n\t\tinvoiceAmendment {\n\t\t\tid\n\t\t\tcreatedAt\n\t\t\tlineItems {\n\t\t\t\tid\n\t\t\t\tstatus\n\t\t\t\tlineItem {\n\t\t\t\t\tid\n\t\t\t\t\tstatus\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n  \"input\": {\n    \"invoiceId\": \"SW52b2ljZS0xMzQ2NA==\",\n    \"remittanceCents\": -4500,\n    \"lineItems\": [\n      {\n        \"custom\": \"Push remit to Seller\",\n        \"quantity\": 1,\n        \"amountCents\": -4500,\n        \"status\": \"REFUNDED\"\n      },\n      {\n        \"lineItemId\": \"TGluZUl0ZW0tMzgyNg==\",\n        \"quantity\": 1,\n        \"amountCents\": -4500,\n        \"status\": \"REFUNDED\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Amendment Create (Line Item)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation InvoiceAmendmentCreateLineItem(\n\t$input: InvoiceAmendmentCreateMutationInput!\n) {\n\tinvoiceAmendmentCreate(input: $input) {\n\t\tstatus\n\t\tinvoiceAmendment {\n\t\t\tid\n\t\t\tcreatedAt\n\t\t\tlineItems {\n\t\t\t\tid\n\t\t\t\tstatus\n\t\t\t\tlineItem {\n\t\t\t\t\tid\n\t\t\t\t\tstatus\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"invoiceId\": \"SW52b2ljZS0xMzQ2NA==\",\n    \"remittanceCents\": -4500,\n    \"lineItems\": [\n      {\n        \"lineItemId\": \"TGluZUl0ZW0tMzgyNg==\",\n        \"quantity\": 1,\n        \"amountCents\": -4500,\n        \"status\": \"REFUNDED\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Amendments Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query InvoiceAmendments(\n\t$first: Int\n\t$after: String\n\t$filters: InvoiceAmendmentFilters\n\t$sort: InvoiceAmendmentSort\n) {\n\tinvoiceAmendments(\n\t\tfirst: $first\n\t\tafter: $after\n\t\tfilters: $filters\n\t\tsort: $sort\n\t) {\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tinvoice {\n\t\t\t\t\tlegacyId\n\t\t\t\t\texternalIds {\n\t\t\t\t\t\tkey\n\t\t\t\t\t\tvalue\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tremittanceCents\n\t\t\t\ttaxCents\n\t\t\t\ttotalCents\n\t\t\t\tlineItemAmountTotalCents\n\t\t\t\tlineItemTaxTotalCents\n\t\t\t\tcommissionAmountTotalCents\n\t\t\t\tcommissionTaxTotalCents\n\t\t\t\tremittanceAmountTotalCents\n\t\t\t\tremittanceTaxTotalCents\n\t\t\t\tlineItems {\n\t\t\t\t\tamountCents\n\t\t\t\t\ttaxCents\n\t\t\t\t\ttotalCents\n\t\t\t\t\tlineItemAmountCents\n\t\t\t\t\tlineItemTaxCents\n\t\t\t\t\tcommissionAmountCents\n\t\t\t\t\tcommissionTaxCents\n\t\t\t\t\tremittanceAmountCents\n\t\t\t\t\tremittanceTaxCents\n\t\t\t\t\tlineItem {\n\t\t\t\t\t\tid\n\t\t\t\t\t\titemAmountCents\n\t\t\t\t\t\ttaxTotalCents\n\t\t\t\t\t\texternalIds {\n\t\t\t\t\t\t\tkey\n\t\t\t\t\t\t\tvalue\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n  \"first\": 10,\n  \"after\": \"\",\n  \"filters\": {\n    \"createdSince\": \"2024-02-01\"\n  },\n  \"sort\": {\n    \"fields\": [\n      \"CREATED_AT\"\n    ],\n    \"ordering\": \"DESCENDING\"\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Query Refund Requests with Filters","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query QueryRefundRequestsWithFilters ($pageSize: Int $endCursor: String $filters: RefundRequestFilters){\n\trefundRequests(filters: $filters first: $pageSize after: $endCursor) {\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tstatus\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tinvoice {\n\t\t\t\t\tlegacyId\n\t\t\t\t}\n\t\t\t\tlineItems {\n\t\t\t\t\tid\n\t\t\t\t\treason\n\t\t\t\t\tamountCents\n\t\t\t\t\tlineItem {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t\tonlyRemittance\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tpageInfo{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t}\n}","variables":"{\n  \"pageSize\": 100,\n  \"endCursor\": \"\",\n  \"filters\": {\n    \"statuses\": [\n      \"REFUNDED\",\n      \"PROCESSED\"\n    ],\n    \"buyerName\": \"Jackson\"\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Create (Custom)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestCreateCustom($input: RefundRequestCreateMutationInput!) {\n\trefundRequestCreate(input: $input) {\n\t\trefundRequest {\n\t\t\tid\n\t\t\tstatus\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"invoiceId\": \"SW52b2ljZS0xMzQ0OA==\",\n    \"lineItems\": [\n      {\n        \"custom\": \"Goodwill refund gesture for loyal customer\",\n        \"amountPerItemCents\": -100,\n        \"quantity\": 1\n      }\n    ],\n    \"notes\": [\n      {\n        \"note\": \"Change of mind within T&Cs\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Create (Line Item)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestCreate ($input: RefundRequestCreateMutationInput!){\n  refundRequestCreate(input: $input)\n  {\n    refundRequest{\n      id\n      status\n    }\n    errors{\n      field\n      messages\n    }\n  }\n}","variables":"{\n\t\"input\": {\n\t\t\"invoiceId\": \"SW52b2ljZS0xMzQ0OA==\",\n\t\t\"lineItems\": [\n\t\t\t{\n\t\t\t\t\"lineItemId\": \"TGluZUl0ZW0tMzgwNw==\",\n\t\t\t\t\"reason\": \"Buyer changed their mind\",\n\t\t\t\t\"quantity\": 1\n\t\t\t}\n\t\t],\n\t\t\"notes\": [\n\t\t\t{\n\t\t\t\t\"note\": \"Change of mind within T&Cs\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Refund","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestRefund($input: RefundRequestRefundMutationInput!){\n  refundRequestRefund(input: $input)\n  {\n    refundRequest{\n      id\n      status\n    }\n    errors\n    {\n      field\n      messages\n    }\n  }\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01NTE=\",\n\t\t\"cashAmountCents\": 1000,\n\t\t\"notes\" : [\n\t\t\t{\"note\": \"Partial Refund\"}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Refund New Line Item","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestRefundNewLineItem($input: RefundRequestRefundMutationInput!){\n  refundRequestRefund(input: $input)\n  {\n    refundRequest{\n      id\n      status\n    }\n    errors\n    {\n      field\n      messages\n    }\n  }\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01NTE=\",\n\t\t\"cashAmountCents\": 4500,\n\t\t\"newLineItems\": [\n\t\t\t{\n\t\t\t\t\"custom\": \"Additional custom refund\",\n\t\t\t\t\"amountPerItemCents\": -500,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"onlyRemittance\": false\n\t\t\t}\n\t\t],\n\t\t\"notes\": [\n\t\t\t{\n\t\t\t\t\"note\": \"Refunded\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Return","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RefundRequestReturn($input: RefundRequestReturnMutationInput!) {\n\trefundRequestReturn(input: $input) {\n\t\trefundRequest {\n\t\t\tid\n\t\t\tstatus\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01NTE=\",\n    \"notes\": [\n      {\n        \"note\": \"Item returned in good condition\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Remittances","item":[{"name":"Get Remittances by createdSince date","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetRemittancesByCreatedSinceDate(\n\t$pageSize: Int\n\t$endCursor: String\n\t$createdSince: ISO8601DateTime\n) {\n\tremittances(\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\tcreatedSince: $createdSince\n\t) {\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tamountCents\n\t\t\t\t#This section pulls in invoices based on their remited date\n\n\t\t\t\tinvoice {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tremittedAt\n\t\t\t\t\t#total remittance= totalCents-comissionAmountCents-merchantFeeCents-shippingCostCents-taxTotalCents\n\t\t\t\t\ttotalCents\n\t\t\t\t\tcommissionAmountCents\n\t\t\t\t\tmerchantFeeCents\n\t\t\t\t\tshippingCostCents\n\t\t\t\t\ttaxTotalCents\n\t\t\t\t\tlineItems {\n\t\t\t\t\t\tid\n\t\t\t\t\t\t#total remittance= totalCents-comissionAmountCent-postageCents-taxTotalCents\n\t\t\t\t\t\ttotalCents\n\t\t\t\t\t\titemAmountCents\n\t\t\t\t\t\tsubtotalCents\n\t\t\t\t\t\tcommissionAmountCents\n\t\t\t\t\t\tpostageCents\n\t\t\t\t\t\ttaxTotalCents\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t#This section pulls in amendments based on their remited date\n\t\t\t\tinvoiceAmendment {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tremittedAt\n\t\t\t\t\ttotalCents\n\t\t\t\t\tremittanceCents\n\t\t\t\t\t#this section pulls in the invoice the invoice ammendment is related to so operators could tie the amendments\n\t\t\t\t\tinvoice {\n\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\tremittedAt\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n  \"pageSize\": 50,\n  \"endCursor\": \"\",\n  \"createdSince\": \"2022-01-22T09:30:46-08:00\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Remittance Advice Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation RemittanceAdviceUpdate($input: RemittanceAdviceUpdateMutationInput!) {\n\tremittanceAdviceUpdate(input: $input) {\n\t\tremittanceAdvice {\n\t\t\tid\n\t\t\tlegacyId\n\t\t}\n\t}\n}\n","variables":"{\n  \"input\": {\n    \"remittanceAdviceId\": \"mVtaXR0YW5jZUFkdmljZS0yOQ==\",\n    \"paidAt\": \"2023-02-21\",\n    \"paymentReference\": \"XYZ RESR\",\n    \"totalPaidCents\": 99,\n    \"attachments\": [\n      {\n        \"sourceUrl\": \"<SOME ATTACHMENT URL>\",\n        \"filename\": \"Report 2\"\n      }\n    ]\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Remittance Advices","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query RemittanceAdvices(\n\t$pageSize: Int\n\t$endCursor: String\n\t$createdSince: ISO8601DateTime\n) {\n\tremittanceAdvices(\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\tcreatedSince: $createdSince\n\t) {\n\t\tedges {\n\t\t\tnode {\n\t\t\t\t# Summary attributes that MKP Generats\n\t\t\t\ttotalCents\n\t\t\t\tcreatedAt\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\t# Summary attributes that can be updated by operator using remittanceAdviceUpdate\n\t\t\t\ttotalPaidCents\n\t\t\t\tpaidAt\n\t\t\t\tpaymentReference\n\t\t\t\tattachments {\n\t\t\t\t\tfilename\n\t\t\t\t}\n\t\t\t\t#seller\n\t\t\t\tseller {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t\t#remittances included in remittanceAdvice\n\t\t\t\tremittances {\n\t\t\t\t\tinvoice {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t\tinvoiceAmendment {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n  \"pageSize\": 10,\n  \"endCursor\": \"\",\n  \"createdSince\": \"2022-02-02\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Remittances with Line Item Breakdown","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetRemittancesWithLineItemBreakdown(\n\t$pageSize: Int\n\t$endCursor: String\n\t$createdSince: ISO8601DateTime\n) {\n\tremittances(\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\tcreatedSince: $createdSince\n\t) {\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tamountCents\n\t\t\t\t#This section pulls in invoices based on their remited date\n\n\t\t\t\tinvoice {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tremittedAt\n\t\t\t\t\t#total remittance= totalCents-comissionAmountCents-merchantFeeCents-shippingCostCents-taxTotalCents\n\t\t\t\t\ttotalCents\n\t\t\t\t\tcommissionAmountCents\n\t\t\t\t\tmerchantFeeCents\n\t\t\t\t\tshippingCostCents\n\t\t\t\t\ttaxTotalCents\n\t\t\t\t\tlineItems {\n\t\t\t\t\t\tid\n\t\t\t\t\t\t#total remittance= totalCents-comissionAmountCent-postageCents-taxTotalCents\n\t\t\t\t\t\ttotalCents\n\t\t\t\t\t\titemAmountCents\n\t\t\t\t\t\tsubtotalCents\n\t\t\t\t\t\tcommissionAmountCents\n\t\t\t\t\t\tpostageCents\n\t\t\t\t\t\ttaxTotalCents\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t#This section pulls in amendments based on their remited date\n\t\t\t\tinvoiceAmendment {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tremittedAt\n\t\t\t\t\ttotalCents\n\t\t\t\t\tremittanceCents\n\t\t\t\t\tlineItemAmountTotalCents\n\t\t\t\t\tlineItemTaxTotalCents\n\t\t\t\t\tcommissionAmountTotalCents\n\t\t\t\t\tcommissionTaxTotalCents\n\t\t\t\t\tremittanceAmountTotalCents\n\t\t\t\t\tremittanceTaxTotalCents\n\t\t\t\t\tlineItems {\n\t\t\t\t\t\tamountCents\n\t\t\t\t\t\ttaxCents\n\t\t\t\t\t\ttotalCents\n\t\t\t\t\t\tlineItemAmountCents\n\t\t\t\t\t\tlineItemTaxCents\n\t\t\t\t\t\tcommissionAmountCents\n\t\t\t\t\t\tcommissionTaxCents\n\t\t\t\t\t\tremittanceAmountCents\n\t\t\t\t\t\tremittanceTaxCents\n\t\t\t\t\t\tlineItem {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\titemAmountCents\n\t\t\t\t\t\t\ttaxTotalCents\n\t\t\t\t\t\t\texternalIds {\n\t\t\t\t\t\t\t\tkey\n\t\t\t\t\t\t\t\tvalue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t#this section pulls in the invoice the invoice ammendment is related to so operators could tie the amendments\n\t\t\t\t\tinvoice {\n\t\t\t\t\t\tlegacyId\n\t\t\t\t\t\tremittedAt\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"pageSize\": 50,\n\t\"endCursor\": \"\",\n\t\"createdSince\": \"2022-01-22T09:30:46-08:00\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Schema Introspection","item":[{"name":"Schema Introspection","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query IntrospectionQuery {\n      __schema {\n        \n        queryType { name }\n        mutationType { name }\n        subscriptionType { name }\n        types {\n          ...FullType\n        }\n        directives {\n          name\n          description\n          \n          locations\n          args {\n            ...InputValue\n          }\n        }\n      }\n    }\n\n    fragment FullType on __Type {\n      kind\n      name\n      description\n      fields(includeDeprecated: true) {\n        name\n        description\n        args {\n          ...InputValue\n        }\n        type {\n          ...TypeRef\n        }\n        isDeprecated\n        deprecationReason\n      }\n      inputFields {\n        ...InputValue\n      }\n      interfaces {\n        ...TypeRef\n      }\n      enumValues(includeDeprecated: true) {\n        name\n        description\n        isDeprecated\n        deprecationReason\n      }\n      possibleTypes {\n        ...TypeRef\n      }\n    }\n\n    fragment InputValue on __InputValue {\n      name\n      description\n      type { ...TypeRef }\n      defaultValue\n    }\n\n    fragment TypeRef on __Type {\n      kind\n      name\n      ofType {\n        kind\n        name\n        ofType {\n          kind\n          name\n          ofType {\n            kind\n            name\n            ofType {\n              kind\n              name\n              ofType {\n                kind\n                name\n                ofType {\n                  kind\n                  name\n                  ofType {\n                    kind\n                    name\n                  }\n                }\n              }\n            }\n          }\n        }\n      }\n    }","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Sellers","item":[{"name":"Get All Sellers","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query  getAllActiveSellers(\n\t$pageSize: Int\n\t$endCursor: String\n\t$includeDeleted: Boolean\n\t$updatedSince: ISO8601DateTime\n){\n\tallSellers (\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\tincludeDeleted: $includeDeleted\n\t\tupdatedSince: $updatedSince\n\t){\n\t\ttotalCount\n\t\tpageInfo{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tnodes {\n\t\t\t... on Seller {\n\t\t\t\t__typename\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tbusinessName\n\t\t\t\tonline\n\t\t\t\tisRetailer\n\t\t\t\tupdatedAt\n\t\t\t}\n\t\t\t... on DeletedSeller {\n\t\t\t\t__typename\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tupdatedAt\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null,\n\t\"includeDeleted\": false,\n\t\"updatedSince\": \"2024-07-16T10:10:53+10:00\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Seller Create","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation SellerCreate($input: SellerCreateMutationInput!) {\n\tsellerCreate(input: $input) {\n\t\tseller {\n\t\t\tid\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tstatus\n\t}\n}","variables":"{\n  \"input\": {\n    \"attributes\": {\n      \"accountType\": \"RETAILER\",\n      \"businessName\": \"ACMEE Corp.\",\n      \"legalBusinessName\": \"ACMEE Corp. Pty Ltd\",\n      \"metadata\": [\n        {\n          \"key\": \"BusinessFoundedIn\",\n          \"value\": \"1998\"\n        }\n      ],\n      \"emailCc\": \"john.doe76@email.com\",\n      \"phone\": \"0405555666\",\n      \"address\": {\n        \"address\": \"146 Buckhurst Street\",\n        \"country\": {\n          \"code\": \"AU\"\n        },\n        \"postcode\": \"3000\",\n        \"state\": {\n          \"name\": \"Victoria\"\n        }\n      },\n      \"user\": {\n        \"firstName\": \"John\",\n        \"surname\": \"Doe\",\n        \"emailAddress\": \"ohn.doe76@email.com\"\n      }\n    }\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Seller Search by Business Name","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query SellerSearchByBusinessName($pageSize: Int $endCursor: String $attributes: SellerSearchInput ){\n  sellerSearch (attributes: $attributes)\n  {\n    sellers(first: $pageSize after: $endCursor){\n      edges{\n        node{\n          id\n          businessName \n        }\n      }\n\t\t\tpageInfo{\n\t\t\t\thasNextPage\n\t\t\t\tendCursor\n\t\t\t}\n    }\n  }\n}","variables":"{\n  \"pageSize\": 20,\n  \"endCursor\": null,\n  \"attributes\": {\n    \"businessName\": \"Cell Phones\"\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Seller Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation SellerUpdate($input: SellerUpdateMutationInput!) {\n\tsellerUpdate(input: $input) {\n\t\tseller {\n\t\t\tid\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tstatus\n\t}\n}","variables":"{\n  \"input\": {\n    \"sellerId\": \"U2VsbGVyLTY2MDEzNg==\",\n    \"attributes\": {\n      \"businessName\": \"ACMEE Corp.\",\n      \"legalBusinessName\": \"ACMEE Corp. Pty Ltd\",\n      \"metadata\": [\n        {\n          \"key\": \"BusinessFoundedIn\",\n          \"value\": \"1998\"\n        }\n      ],\n      \"phone\": \"0405555666\",\n      \"address\": {\n        \"address\": \"146 Buckhurst Street\",\n        \"country\": {\n          \"code\": \"AU\"\n        },\n        \"postcode\": \"3000\",\n        \"state\": {\n          \"name\": \"Victoria\"\n        }\n      }\n    }\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Sellers Where","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query getSellersById($pageSize: Int, $endCursor: String, $retailerIds: [ID!]) {\n\tsellersWhere(first: $pageSize, after: $endCursor, retailerIds: $retailerIds) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tnodes {\n\t\t\t__typename\n\t\t\tid\n\t\t\tlegacyId\n\t\t\tbusinessName\n\t\t\tonline\n\t\t\tisRetailer\n\t\t\tupdatedAt\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null,\n\t\"retailerIds\": [\n\t\t\"U2VsbGVyLTM=\"\n\t]\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"User Create","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation UserCreate($input: UserCreateMutationInput!) {\n\tuserCreate(input: $input) {\n\t\tuser {\n\t\t\tid\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"sellerId\": \"U2VsbGVyLTY2MDEzNg==\",\n    \"attributes\": {\n      \"emailAddress\": \"jane.doe678@email.com\",\n      \"firstName\": \"Jane\",\n      \"surname\": \"Doe\",\n      \"username\": \"doejane\"\n    }\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"User Delete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation SellerDelete($input: UserDeleteMutationInput!) {\n\tuserDelete(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"userId\": \"VXNlci01MzA=\"\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"User Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation UserUpdate($input: UserUpdateMutationInput!) {\n\tuserUpdate(input: $input) {\n\t\tuser {\n\t\t\tid\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"userId\": \"VXNlci01MzA=\",\n\t\t\"attributes\": {\n\t\t\t\"emailAddress\": \"jane.doe680@email.com\",\n\t\t\t\"firstName\": \"Jane\",\n\t\t\t\"surname\": \"Doer\",\n\t\t\t\"username\": \"doejane780\"\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Shipments","item":[{"name":"Create Return Shipment - Base 64 Attachments","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation createReturnShipment ($input: ReturnShipmentCreateMutationInput!){\n\treturnShipmentCreate(\n\t\tinput: $input\n\t) {\n\t\tshipment {\n\t\t\tid\n\t\t\tcarrier {\n\t\t\t\tname\n\t\t\t\ttrackingUrl\n\t\t\t}\n\t\t\tattachments {\n\t\t\t\turl\n\t\t\t\talt\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\" : \"UmVmdW5kUmVxdWVzdC01Mjc=\",\n\t\t\"carrierId\" : \"U2hpcG1lbnRDYXJyaWVyLTcw\",\n\t\t\"trackingNumber\": \"ABC-1234\",\n\t\t\"shippedItems\": [\n\t\t\t{\n\t\t\t\t\"lineItemId\" : \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc1Ng==\",\n\t\t\t\t\"quantity\": 1\n\t\t\t}\n\t\t],\n\t\t\"attachments\": [\n\t\t\t{\n\t\t\t\t\"filename\": \"packing_slip.jpg\",\n\t\t\t\t\"dataBase64\": \"<BASE 64 STRING HERE>\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Create Return Shipment - URL Attachments","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation createReturnShipment ($input: ReturnShipmentCreateMutationInput!){\n\treturnShipmentCreate(\n\t\tinput: $input\n\t) {\n\t\tshipment {\n\t\t\tid\n\t\t\tcarrier {\n\t\t\t\tname\n\t\t\t\ttrackingUrl\n\t\t\t}\n\t\t\tattachments {\n\t\t\t\turl\n\t\t\t\talt\n\t\t\t}\n\t\t}\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"refundRequestId\": \"UmVmdW5kUmVxdWVzdC01Mjc=\",\n\t\t\"carrierId\": \"U2hpcG1lbnRDYXJyaWVyLTcw\",\n\t\t\"trackingNumber\": \"ABC-1234\",\n\t\t\"shippedItems\": [\n\t\t\t{\n\t\t\t\t\"lineItemId\": \"UmVmdW5kUmVxdWVzdExpbmVJdGVtLTc1Ng==\",\n\t\t\t\t\"quantity\": 1\n\t\t\t}\n\t\t],\n\t\t\"attachments\": [\n\t\t\t{\n\t\t\t\t\"sourceUrl\": \"<YOUR PUBLIC IMAGE URL>\",\n\t\t\t\t\"alt\": \"Packing Slip\"\n\t\t\t}\n\t\t]\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipment Status Create","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation createShipmentStatus($input: ShipmentStatusCreateMutationInput!){\n\tshipmentStatusCreate(\n\t\tinput: $input\n\t) {\n\t\terrors {\n\t\t\tmessages\n\t\t\tfield\n\t\t}\n\t\tshipmentStatus{\n\t\t\tid\n\t\t\tstatus\n\t\t\tshipment{\n\t\t\t\t... on ReturnShipment\n\t\t\t\t{\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":"{\n\t\"input\": {\n\t\t\"shipmentId\": \"UmV0dXJuU2hpcG1lbnQtMTI=\",\n\t\t\"status\": \"OutForDelivery\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Shipping Rules","item":[{"name":"Get Shipping Options on Variant","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetShippingOptionsOnVariant(\n\t$id: ID!\n\t$pageSize: Int\n\t$endCursor: String\n\t$soEndCursor: String\n\t$srEndCursor: String\n\t$szEndCursor: String\n) {\n\tnode(id: $id) {\n\t\t... on Advert {\n\t\t\tid\n\t\t\tlegacyId\n\t\t\ttitle\n\n\t\t\tvariants(displayableOnly: false, first: $pageSize, after: $endCursor) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tlegacyId\n\t\t\t\t\tlabel\n\t\t\t\t\tshippingOptions(first: $pageSize, after: $soEndCursor) {\n\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t}\n\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\tshippingRates(first: $pageSize, after: $srEndCursor) {\n\t\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t\t\t\trateCents\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tshippingZones(first: $pageSize, after: $szEndCursor) {\n\t\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t\t\t\tpostcodes\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpageInfo {\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n  \"id\": \"QWR2ZXJ0LTEwMDA5MjkwNw==\",\n  \"pageSize\": 5,\n  \"endCursor\": null,\n  \"soEndCursor\": null,\n  \"srEndCursor\": null,\n  \"szEndCursor\": null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipping Option (Rule) Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ShippingOptionsQuery(\n\t$pageSize: Int\n\t$endCursor: String\n\t$filters: ShippingOptionFilters\n) {\n\tshippingOptions(first: $pageSize, after: $endCursor, filters: $filters) {\n\t\ttotalCount\n\t\tpageInfo\n\t\t{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tupdatedAt\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\tseller {\n\t\t\t\t\tid\n\t\t\t\t\tbusinessName\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null,\n\t\"filters\": {\n\t\t\"updatedSince\": \"2022-12-16T04:33:54+11:00\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipping Profiles Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query getAllShippingProfiles($pageSize: Int, $endCursor: String){\n\tshippingProfiles(first: $pageSize, after: $endCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tnodes {\n\t\t\tid\n\t\t\tname\n\t\t}\n\t}\n}\n","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipping Rate Create or Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ShippingRateCreateOrUpdate(\n\t$input: ShippingRateCreateOrUpdateMutationInput!\n) {\n\tshippingRateCreateOrUpdate(input: $input) {\n\t\tshippingRate{\n\t\t\tid\n\t\t}\n\t\tstatus\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"attributes\": {\n\t\t\t\"name\": \"Bronze\",\n\t\t\t\"rate\": 12\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipping Rates Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query getShippingRates ($first: Int, $after: String){\n\tshippingRates(first: $first, after: $after) {\n\t\tnodes {\n\t\t\tname\n\t\t\tid\n\t\t\trateCents\n\t\t\tseller {\n\t\t\t\tbusinessName\n\t\t\t\tid\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"first\": 10,\n\t\"after\": null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipping Zone Create or Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ShippingZoneCreateOrUpdate(\n\t$input: ShippingZoneCreateOrUpdateMutationInput!\n) {\n\tshippingZoneCreateOrUpdate(input: $input) {\n\t\tstatus\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"attributes\": {\n\t\t\t\"name\": \"Metro West\",\n\t\t\t\"description\": \"Inner western suburbs\",\n\t\t\t\"spreadsheet\": { \n\t\t\t\t\"dataBase64\" : \"<YOUR BASE 64 ENCODED CSV>\",\n\t\t\t\t\"filename\" : \"iw_zipcodes.csv\"\n\t\t\t}\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"ShippingZone Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ShippingZoneQuery($pageSize: Int, $endCursor: String) {\n\tshippingZones(first: $pageSize, after: $endCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tname\n\t\t\t\tdescription\n\t\t\t\tpostcodes\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Taxonomy (Categorization)","item":[{"name":"Brands Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query BrandsQuery($pageSize: Int, $endCursor: String) {\n\tbrands(first: $pageSize, after: $endCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Get Single Taxon (node)","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetTaxon($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Taxon {\n\t\t\tid\n\t\t\ttitle\n\t\t\tlegacyId\n\t\t\tdescription\n\t\t\turlSlug\n\t\t\ttreeName\n\t\t\tdisplayName\n\t\t\ttitle\n\t\t\ttaxonType\n\t\t}\n\t}\n}\n","variables":"{\n\t\"id\": \"VGF4b24tNzU=\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Option Type Create or Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation OptionTypeCreateOrUpdate(\n\t$input: OptionTypeCreateOrUpdateMutationInput!\n) {\n\toptionTypeCreateOrUpdate(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\toptionType {\n\t\t\tid\n\t\t\tname\n\t\t}\n\t}\n}","variables":"{\n  \"input\": {\n    \"prototypeIds\": [\n      \"UHJvdG90eXBlLTE0MQ==\"\n    ],\n    \"name\": \"Lens Mount\",\n    \"displayName\": \"Lens Mount\",\n    \"appliedTo\": \"VARIANT\",\n    \"fieldType\": \"SINGLE_SELECT\",\n\t\"optional\": false\n  }\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Option Value Create or Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation OptionValueCreateOrUpdate(\n\t$input: OptionValueCreateOrUpdateMutationInput!\n) {\n\toptionValueCreateOrUpdate(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\toptionValue {\n\t\t\tid\n\t\t\tname\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"displayName\": \"EFS\",\n\t\t\"name\": \"EFS\",\n\t\t\"optionTypeId\" : \"T3B0aW9uVHlwZS0yNzU=\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Option Value Delete","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation OptionValueDelete($input: OptionValueDeleteMutationInput!) {\n\toptionValueDelete(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\toptionValue {\n\t\t\tid\n\t\t\tname\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"id\": \"T3B0aW9uVmFsdWUtNzY3\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Prototype Create or Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation PrototypeCreateOrUpdate(\n\t$input: PrototypeCreateOrUpdateMutationInput!\n) {\n\tprototypeCreateOrUpdate(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tprototype {\n\t\t\tid\n\t\t\tname\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"name\": \"Mirrorless Cameras\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Prototypes","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query GetPrototypes(\n\t$pageSize: Int\n\t$pEndCursor: String\n\t$otEndCursor: String\n\t$ovEndCursor: String\n) {\n\tprototypes(first: $pageSize, after: $pEndCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\toptionTypes(first: $pageSize, after: $otEndCursor) {\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\tappliedTo\n\t\t\t\t\t\t\tfieldType\n\t\t\t\t\t\t\toptionValues(first: $pageSize, after: $ovEndCursor) {\n\t\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\ttotalCount\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSize\": 5,\n\t\"pEndCursor\": null,\n\t\"otEndCursor\": null,\n\t\"ovEndCursor\": null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Taxon Create or Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation TaxonCreateOrUpdate($input: TaxonCreateOrUpdateMutationInput!) {\n\ttaxonCreateOrUpdate(input: $input) {\n\t\tstatus\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\ttaxon {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"displayName\": \"Digital Cameras\",\n\t\t\"title\": \"Digital Cameras\",\n\t\t\"prototypeId\": \"UHJvdG90eXBlLTE0MQ==\"\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Taxon Search","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query taxonSearch($first: Int, $endCursor: String, $searchValue: String){\n\ttaxonSearch(first: $first after: $endCursor, searchValue: $searchValue ){\n\t\ttotalCount\n\t\tpageInfo\n\t\t{\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tnodes{\n\t\t\tid\n\t\t\ttreeName\n\t\t\tdisplayName\n\t\t\tchildren{\n\t\t\t\ttotalCount\n\t\t\t\tpageInfo{\n\t\t\t\t\t...PageInfoPartial\n\t\t\t\t}\n\t\t\t\tnodes\n\t\t\t\t{\n\t\t\t\t\tid\n\t\t\t\t\tdisplayName\n\t\t\t\t\t# place furhter childern clauses here as required\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}","variables":"{\n\t\"pageSize\": 10,\n\t\"endCursor\": null,\n\t\"searchValue\": \"beverage\"\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Taxons Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query QueryTaxons(\n\t$pageSize: Int\n\t$l0EndCursor: String\n\t$l1EndCursor: String\n\t$l2EndCursor: String\n) {\n\ttaxons(first: $pageSize, after: $l0EndCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tdisplayName\n\t\t\t\tdescription\n\t\t\t\tgoogleCategory\n\t\t\t\ttaxCode\n\t\t\t\turlSlug\n\t\t\t\ttreeName\n\t\t\t\tprototype {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tchildren(first: $pageSize, after: $l1EndCursor) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tchildren(first: $pageSize, after: $l2EndCursor) {\n\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"pageSize\": 10,\n\t\"l0EndCursor\": null,\n\t\"l1EndCursor\": null,\n\t\"l2EndCursor\": null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Webhook Management","item":[{"name":"Webhook Create","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation WebhookCreate($input: WebhookCreateMutationInput!) {\n\twebhookCreate(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tstatus\n\t\twebhook {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"attributes\": {\n\t\t\t\"enabled\": true,\n\t\t\t\"type\": \"INVOICE\",\n\t\t\t\"eventName\": \"UPDATE\",\n\t\t\t\"url\": \"https://example.com/your_post_endpoint\",\n\t\t\t\"headers\": \"{ \\\"environment\\\": \\\"Production\\\" }\",\n\t\t\t\"queryString\": \"query($id: ID!){node(id: $id){... on Invoice{__typename id statusFlags createdAt}}}\"\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Webhook Update","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation WebhookUpdate($input: WebhookUpdateMutationInput!) {\n\twebhookUpdate(input: $input) {\n\t\terrors {\n\t\t\tfield\n\t\t\tmessages\n\t\t}\n\t\tstatus\n\t\twebhook {\n\t\t\tid\n\t\t}\n\t}\n}","variables":"{\n\t\"input\": {\n\t\t\"webhookId\": \"V2ViaG9vay0xNA==\",\n\t\t\"attributes\": {\n\t\t\t\"enabled\": false\n\t\t}\n\t}\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Webhooks Query","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query WebhooksQuery($pageSize: Int, $endCursor: String) {\n\twebhooks(first: $pageSize, after: $endCursor) {\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\ttype\n\t\t\t\tevents {\n\t\t\t\t\tid\n\t\t\t\t\teventName\n\t\t\t\t\tsentAt\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":"{\n\t\"pageSize\" : 10,\n\t\"endCursor\" : null\n}"}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]},{"name":"Webhook Query Templates","item":[{"name":"Advert Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query AdvertWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Advert {\n\t\t\t__typename\n\t\t\tid\n\t\t\ttitle\n\t\t\tlowestPrice\n\t\t\tdisplayable\n\t\t\tpublished\n\t\t\t#[REMOVE THIS LINE AND YOU CAN ADD ADDITIONAL FIELDS FOUND HERE: https://api.marketplacer.com/graphql/advert.doc.html]\n\t\t\tseller {\n\t\t\t\tbusinessName\n\t\t\t}\n\t\t\tvariants {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tbarcode\n\t\t\t\t\t\tcountOnHand\n\t\t\t\t\t\t#[REMOVE THIS LINE AND YOU CAN ADD ADDITIONAL FIELDS FOUND HERE: https://api.marketplacer.com/graphql/variant.doc.html]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Invoice Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query InvoiceWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Invoice {\n\t\t\t__typename\n\t\t\tid\n\t\t\tstatusFlags\n\t\t\tcreatedAt\n\t\t\t#[REMOVE THIS LINE AND YOU CAN ADD ADDITIONAL FIELDS FOUND HERE: https://api.marketplacer.com/graphql/invoice.doc.html]\n\n\t\t\tseller {\n\t\t\t\tid\n\t\t\t\tbusinessName\n\t\t\t}\n\n\t\t\tlineItems {\n\t\t\t\tid\n\t\t\t\tstatus\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Option Type Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query OptionTypeWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on OptionType {\n\t\t\tid\n\t\t\tdescription\n\t\t\tname\n\t\t\tappliedTo\n\t\t\tfieldType\n\t\t\toptionValues {\n\t\t\t\tnodes {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Option Value Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query OptionValueWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on OptionValue {\n\t\t\tid\n\t\t\tname\n\t\t\toptionType {\n\t\t\t\tfieldType\n\t\t\t\tappliedTo\n\t\t\t\tdescription\n\t\t\t}\n\t\t}\n\t}\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Promotions Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query PromotionsWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Promotion {\n\t\t\tid\n\t\t\tseller {\n\t\t\t\tid\n\t\t\t\tbusinessName\n\t\t\t}\n\t\t\tname\n\t\t\tteaser\n\t\t\tdescription\n\t\t\tstartDate\n\t\t\tendDate\n\t\t\tminimumSpend\n\t\t\tmaximumSpend\n\t\t\tsuspended\n\t\t\tdiscountType\n\t\t\tdiscountAmount\n\t\t\tfreeShipping\n\t\t\tcostPercentageBorneByMarketplace\n\t\t\tloyaltyProgramLevels {\n\t\t\t\tnodes {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t\tfreeShippingDomesticOnly\n\t\t\tbrandsIncluded {\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Refund Request Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query RefundRequestWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on RefundRequest {\n\t\t\t__typename\n\t\t\tid\n\t\t\tcashAmountCents\n\t\t\tinitiatedBy\n\t\t\ttotalFormatted\n\t\t\t#[REMOVE THIS LINE AND YOU CAN ADD ADDITIONAL FIELDS FOUND HERE: https://api.marketplacer.com/graphql/refundrequest.doc.html]\n\t\t\tlineItems {\n\t\t\t\tid\n\t\t\t}\n\t\t}\n\t}\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Seller Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query SellerWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Seller {\n\t\t\t__typename\n\t\t\tid\n\t\t\tbusinessName\n\t\t\ttrade\n\t\t\tmetadata {\n\t\t\t\tkey\n\t\t\t\tvalue\n\t\t\t}\n\t\t\ttags\n\t\t}\n\t}\n}\n","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipment Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ShipmentWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Shipment {\n\t\t\t__typename\n\t\t\tid\n\t\t\tcarrier\n\t\t\ttrackingLink\n\t\t\ttrackingNumber\n\t\t\tdispatchedAt\n\t\t\tshippedItems {\n\t\t\t\tid\n\t\t\t\tquantity\n\t\t\t\tlineItem {\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Shipping Rule Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ShippingRuleWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on ShippingOption {\n\t\t\tid\n\t\t\tname\n\t\t\tid\n\n\t\t\tshippingProfiles {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tname\n\t\t\t\t\tdescription\n\t\t\t\t}\n\t\t\t}\n\t\t\tshippingRates {\n\t\t\t\ttotalCount\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\trateCents\n\t\t\t\t\t\trateFormatted\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tshippingZones {\n\t\t\t\ttotalCount\n\t\t\t\tedges {\n\t\t\t\t\tnode {\n\t\t\t\t\t\tname\n\t\t\t\t\t\tpostcodes\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]},{"name":"Variant Webhook","request":{"method":"POST","header":[{"key":"MARKETPLACER-API-KEY","value":"{{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query VariantWebhook($id: ID!) {\n\tnode(id: $id) {\n\t\t... on Variant {\n\t\t\tid\n\t\t\tbarcode\n\t\t\tsku\n\t\t\tcountOnHand\n\t\t\t#[REMOVE THIS LINE AND YOU CAN ADD ADDITIONAL FIELDS FOUND HERE: https://api.marketplacer.com/graphql/variant.doc.html]\n\t\t\tadvert {\n\t\t\t\t... on Advert {\n\t\t\t\t\tid\n\t\t\t\t\ttitle\n\t\t\t\t\t#[REMOVE THIS LINE AND YOU CAN ADD ADDITIONAL FIELDS FOUND HERE: https://api.marketplacer.com/graphql/advert.doc.html]\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":""}},"url":{"raw":"{{base_url}}","host":["{{base_url}}"],"path":null},"description":null},"response":[]}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}]}],"auth":{"type":"basic","basic":[{"key":"password","value":"{{password}}","type":"string"},{"key":"username","value":"{{username}}","type":"string"}]},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"variable":[{"key":"base_url","value":"https://bestfriendbazaar.com/graphql"},{"key":"username","value":"yourusername"},{"key":"password","value":"yourpassword"},{"key":"api_key","value":"yourapikey"}]}