{"info":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","description":"<html><head></head><body><h2 id=\"authorization\">Authorization</h2>\n<p>Transalis API has 2 authorisation methods: <strong>OAuth2.0</strong> and <strong>Basic Authorization</strong>.</p>\n<p>It's preferable to use <strong>OAuth2.0</strong> because it is more secure. However, if your organisation cannot support <strong>OAuth2.0</strong> then you can request a <code>basic authorization token</code>.</p>\n<p>When granted access to Transalis API, you will be provided with:</p>\n<ul>\n<li><p>A user account <code>email</code>, <code>password</code></p>\n</li>\n<li><p>OAuth2.0 <code>client id</code> &amp; <code>client secret</code></p>\n</li>\n<li><p>Optionally, a <code>basic authorization token</code></p>\n</li>\n</ul>\n<p>The user account can generate an OAuth2.0 <code>authorization code</code> which is exchanged for a <code>refresh token</code>. The <code>refresh token</code> and <code>client secret</code> must be kept secure and confidential.</p>\n<p>The <code>refresh token</code> expires after 12 months and is used to generate <code>access token</code> for this API. Before refresh token expires, a new <code>refresh token</code> can be generated after exchanging another <code>authorization code</code> obtained from login.</p>\n<p>We also support two methods for using <strong>Basic Authorization</strong>:</p>\n<ul>\n<li><p><code>Authorization header</code></p>\n</li>\n<li><p><code>?token=</code> URL query parameter</p>\n</li>\n</ul>\n<p>For example, if you cannot support the use of an <code>authorization header</code> you can append <code>?token=</code> query parameter to the URL e.g. <code>/documents/any?token=ABCDEFGH</code> and this will authorize the request with the basic auth token.</p>\n<p>Please note: OAuth2.0 bearer tokens are not supported in the <code>?token=</code> URL query parameter</p>\n<h2 id=\"changelog\">Changelog</h2>\n<ul>\n<li><p>v1.1.0 - the 'Generic Service' has been renamed to 'Documents Service'.</p>\n</li>\n<li><p>v1.2.0 - the Documents POST JSON endpoint has been updated to take any valid JSON.</p>\n</li>\n<li><p>v1.3.0</p>\n<ul>\n<li><p>the Documents POST endpoints now support gzip compression</p>\n</li>\n<li><p>Support OAuth2.0 setup via postman (see authorisation section)</p>\n</li>\n<li><p>Document Report API released</p>\n</li>\n</ul>\n</li>\n<li><p>v1.3.1</p>\n<ul>\n<li><p>Removed SANDBOX and PRODUCTION requests and added parameters for easy environment switch and import</p>\n</li>\n<li><p>Refactor docs and flattened structure</p>\n</li>\n</ul>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"17543382","collectionId":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","publishedId":"UzBiQUre","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-05-09T13:31:11.000Z"},"item":[{"name":"Test Environment","item":[{"name":"Claim refresh token from authorization code","id":"153d6af2-b277-4938-9407-434664c64ace","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{clientId}}"},{"key":"password","value":"{{clientSecret}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"{{code}}","type":"text"},{"key":"redirect_uri","value":"http://localhost:8080/api/auth/callback/cognito","type":"text"}]},"url":"https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token","description":"<p>This exchanges an <code>authorization code</code> or a <code>refresh token</code>, and an <code>access token</code> to gain access to services on the <strong>Test Environment</strong> of Transalis API.</p>\n","urlObject":{"protocol":"https","path":["oauth2","token"],"host":["dev-transalis-api","auth","eu-west-2","amazoncognito","com"],"query":[],"variable":[]}},"response":[{"id":"2b47e125-66d6-40b7-8428-cc46699a1ac3","name":"Get token from code","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"d0021a04-1dbf-49f3-85cc-baf1e975dcba","type":"text"},{"key":"redirect_uri","value":"http://localhost:8080/api/auth/callback/cognito","type":"text"}]},"url":"https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Apr 2022 12:25:58 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-amz-cognito-request-id","value":"0482e0fd-880d-4d82-81dd-463c860f092a"},{"key":"X-Application-Context","value":"application:prod:8443"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Server","value":"Server"}],"cookie":[],"responseTime":null,"body":"{\n    \"id_token\": \"#######################\",\n    \"access_token\": \"#######################\",\n    \"refresh_token\": \"#######################\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"153d6af2-b277-4938-9407-434664c64ace"},{"name":"Claim new access token with refresh token","id":"04a46a7c-05b6-4bf3-91d4-71792ba92db3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{clientId}}"},{"key":"password","value":"{{clientSecret}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"{{clientId}}","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refreshToken}}","type":"text"}]},"url":"https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token","description":"<p>Claim an <code>access token</code> with an existing <code>refresh token</code> to gain access to services on the <strong>Test Environment</strong> of Transalis API.</p>\n","urlObject":{"protocol":"https","path":["oauth2","token"],"host":["dev-transalis-api","auth","eu-west-2","amazoncognito","com"],"query":[],"variable":[]}},"response":[{"id":"7034340e-3725-4f27-b3aa-27f3e0a33e71","name":"Claim New Access Token w/ Refresh Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"6arn8q2i34b3mti5nl59rqpude","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"123456","type":"text"}]},"url":"https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id_token\": \"#######################\",\n    \"access_token\": \"#######################\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"04a46a7c-05b6-4bf3-91d4-71792ba92db3"}],"id":"57fb1f28-469c-40ac-930b-7665629318af","description":"<ul>\n<li><p>URL:</p>\n<ul>\n<li><p><code>https://dev.apigw.transalis.io</code></p>\n</li>\n<li><p><code>https://h8nfz3cb37.execute-api.eu-west-2.amazonaws.com</code></p>\n</li>\n</ul>\n</li>\n<li><p>Client ID: <code>6arn8q2i34b3mti5nl59rqpude</code></p>\n</li>\n<li><p>Client Secret: <code>You will be provided this info on setup</code></p>\n</li>\n</ul>\n<h3 id=\"manual-oauth20-setup\">Manual OAuth2.0 setup</h3>\n<p>If you need to setup manually, you can login here and it will redirect you to <code>localhost:8080/api/auth/callback/cognito</code> with the authorization code in the URL query parameters.</p>\n<p>Login: <a href=\"https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/authorize?client_id=6arn8q2i34b3mti5nl59rqpude&amp;response_type=code&amp;scope=email+openid+phone+profile&amp;redirect_uri=http://localhost:8080/api/auth/callback/cognito\">Click here to login</a></p>\n<h4 id=\"obtain-authorization-code\">Obtain authorization code</h4>\n<p>Login and it will redirect you back to <a href=\"http://localhost:8080/api/auth/callback/cognito\">http://localhost:8080/api/auth/callback/cognito</a></p>\n<p>Take the code from the URL, e.g. when the URL is <a href=\"http://localhost:8080/api/auth/callback/cognito?code=085886f2-40e5-4c9b-b70e-95dc8979ec7d\">http://localhost:8080/api/auth/callback/cognito?code=085886f2-40e5-4c9b-b70e-95dc8979ec7d</a> the code will be '085886f2-40e5-4c9b-b70e-95dc8979ec7d'.</p>\n<h4 id=\"obtain-refresh-token\">Obtain refresh token</h4>\n<p>Once you obtain an <code>authorization code</code> you will need to call 'Claim Refresh Token From Code' to obtain a <code>refresh token</code> using the <code>client id</code> and <code>client secret</code> provided to you.</p>\n<h4 id=\"obtain-access-token\">Obtain access token</h4>\n<p>Once you obtain a <code>refresh token</code> you can call 'Claim New Access Token' to obtain an <code>access token</code> using the <code>client id</code> and <code>client secret</code> provided to you.</p>\n<h3 id=\"postman-oauth20-setup\">Postman OAuth2.0 setup</h3>\n<p>Alternatively, you can setup postman OAuth2.0 with the following information:</p>\n<ul>\n<li><p>Callback URL: <code>https://oauth.pstmn.io/v1/browser-callback</code></p>\n</li>\n<li><p>Auth URL: <code>https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/authorize</code></p>\n</li>\n<li><p>Access Token URL: <code>https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token</code></p>\n</li>\n<li><p>Refresh Token URL: <code>https://dev-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token</code></p>\n</li>\n<li><p>Client ID: <code>6arn8q2i34b3mti5nl59rqpude</code></p>\n</li>\n<li><p>Client Secret: <code>You will be provided this info on setup</code></p>\n</li>\n</ul>\n<p><a href=\"https://learning.postman.com/docs/sending-requests/authorization/oauth-20/\">Read this guide for more information</a></p>\n","_postman_id":"57fb1f28-469c-40ac-930b-7665629318af","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}},{"name":"Production Environment","item":[{"name":"Claim refresh token from authorization code","id":"a31a26de-9eda-4f1f-945b-4e379fbc9d29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{clientId}}"},{"key":"password","value":"{{clientSecret}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"{{code}}","type":"text"},{"key":"redirect_uri","value":"http://localhost:8080/api/auth/callback/cognito","type":"text"}]},"url":"https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token","description":"<p>This exchanges an <code>authorization code</code> for a <code>refresh token</code> and an <code>access token</code> to gain access to services on the <strong>Production Environment</strong> of Transalis API.</p>\n","urlObject":{"protocol":"https","path":["oauth2","token"],"host":["prod-transalis-api","auth","eu-west-2","amazoncognito","com"],"query":[],"variable":[]}},"response":[{"id":"4e52d69d-423a-454b-b9e0-51e291261c79","name":"Get token from code","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"d0021a04-1dbf-49f3-85cc-baf1e975dcba","type":"text"},{"key":"redirect_uri","value":"http://localhost:8080/api/auth/callback/cognito","type":"text"}]},"url":"https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Apr 2022 12:25:58 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-amz-cognito-request-id","value":"0482e0fd-880d-4d82-81dd-463c860f092a"},{"key":"X-Application-Context","value":"application:prod:8443"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Server","value":"Server"}],"cookie":[],"responseTime":null,"body":"{\n    \"id_token\": \"#######################\",\n    \"access_token\": \"#######################\",\n    \"refresh_token\": \"#######################\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"a31a26de-9eda-4f1f-945b-4e379fbc9d29"},{"name":"Claim new access token with refresh token","id":"1f927fe7-a0b5-4483-8bd5-e5d0adf26a43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{clientId}}"},{"key":"password","value":"{{clientSecret}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"{{clientId}}","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refreshToken}}","type":"text"}]},"url":"https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token","description":"<p>Claim an <code>access token</code> with an existing <code>refresh token</code> to gain access to services on the <strong>Production</strong> <strong>Environment</strong> of Transalis API.</p>\n","urlObject":{"protocol":"https","path":["oauth2","token"],"host":["prod-transalis-api","auth","eu-west-2","amazoncognito","com"],"query":[],"variable":[]}},"response":[{"id":"bc51c422-7ffd-46f0-b9dc-00f967b7c2d1","name":"Claim New Access Token w/ Refresh Token Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"5ea0nh47fn054luq5jvuprekln","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"123456","type":"text"}]},"url":"https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id_token\": \"#######################\",\n    \"access_token\": \"#######################\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"1f927fe7-a0b5-4483-8bd5-e5d0adf26a43"}],"id":"d7e9e59a-59bf-4406-a281-ddedae911717","description":"<ul>\n<li><p>URL: <code>https://apigw.transalis.com</code></p>\n</li>\n<li><p>Client ID: <code>5ea0nh47fn054luq5jvuprekln</code></p>\n</li>\n<li><p>Client Secret: <code>You will be provided this info on setup</code></p>\n</li>\n</ul>\n<h3 id=\"manual-oauth20-setup\">Manual OAuth2.0 setup</h3>\n<p>If you need to setup manually, you can login here and it will redirect you to <code>localhost:8080/api/auth/callback/cognito</code> with the authorization code in the URL query parameters.</p>\n<p>Login: <a href=\"https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/login?client_id=5ea0nh47fn054luq5jvuprekln&amp;response_type=code&amp;scope=email+openid+phone+profile&amp;redirect_uri=http://localhost:8080/api/auth/callback/cognito\">Click here to login</a></p>\n<h4 id=\"obtain-authorization-code\">Obtain authorization code</h4>\n<p>Once logged in, it will redirect you back to <a href=\"http://localhost:8080/api/auth/callback/cognito\">http://localhost:8080/api/auth/callback/cognito</a></p>\n<p>Take the code from the URL, e.g. when the URL is <a href=\"http://localhost:8080/api/auth/callback/cognito?code=085886f2-40e5-4c9b-b70e-95dc8979ec7d\">http://localhost:8080/api/auth/callback/cognito?code=085886f2-40e5-4c9b-b70e-95dc8979ec7d</a> the code will be '085886f2-40e5-4c9b-b70e-95dc8979ec7d'.</p>\n<h4 id=\"obtain-refresh-token\">Obtain refresh token</h4>\n<p>Once you obtain an <code>authorization code</code> you will need to call 'Claim Refresh Token From Code' to obtain a <code>refresh token</code> using the <code>client id</code> and <code>client secret</code> provided to you.</p>\n<h4 id=\"obtain-access-token\">Obtain access token</h4>\n<p>Once you obtain a <code>refresh token</code> you can call 'Claim New Access Token' to obtain an <code>access token</code> using the <code>client id</code> and <code>client secret</code> provided to you.</p>\n<h3 id=\"postman-oauth20-setup\">Postman OAuth2.0 setup</h3>\n<p>Alternatively, you can setup postman OAuth2.0 with the following information:</p>\n<ul>\n<li><p>Callback URL: <code>https://oauth.pstmn.io/v1/browser-callback</code></p>\n</li>\n<li><p>Auth URL: <code>https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/authorize</code></p>\n</li>\n<li><p>Access Token URL: <code>https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token</code></p>\n</li>\n<li><p>Refresh Token URL: <code>https://prod-transalis-api.auth.eu-west-2.amazoncognito.com/oauth2/token</code></p>\n</li>\n<li><p>Client ID: <code>5ea0nh47fn054luq5jvuprekln</code></p>\n</li>\n<li><p>Client Secret: <code>You will be provided this info on setup</code></p>\n</li>\n</ul>\n<p><a href=\"https://learning.postman.com/docs/sending-requests/authorization/oauth-20/\">Read this guide for more information</a></p>\n","_postman_id":"d7e9e59a-59bf-4406-a281-ddedae911717","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}},{"name":"Documents Service","item":[{"name":"Post cXML","item":[{"name":"Post CXML file","id":"33afa3be-9738-4af5-ab7f-36744a1b4167","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"xml"}}},"url":"{{url}}/documents/cXML","description":"<p>A request to the cXML endpoint on the <strong>Production Environment</strong> of Transalis API.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}},"urlObject":{"path":["documents","cXML"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Basic auth access token (an alternative to using Authorization header)</p>\n","type":"text/plain"},"key":"token","value":"{{token}}"}],"variable":[]}},"response":[{"id":"b4929b42-d536-422c-babf-c78101d06e76","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!DOCTYPE cXML SYSTEM \"http://xml.cxml.org/schemas/cXML/1.2.014/cXML.dtd\">\r\n<cXML xml:lang=\"en-US\" timestamp=\"2008-05-19T19:51:57+00:00\" payloadID=\"1211226717.22017@ip-10-251-122-83\" version=\"1.2.014\">\r\n    <Header>\r\n        <From>\r\n            <Credential\r\n            domain=\"NetworkId\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n            <Credential\r\n            domain=\"SystemID\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n        </From>\r\n        <To>\r\n            <Credential\r\n            domain=\"DUNS\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n            <Credential\r\n            domain=\"internalsupplierid\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n            <Credential\r\n            domain=\"buyersystemid\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n            <Credential\r\n            domain=\"sap\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n            <Credential\r\n            domain=\"networkid\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n            <Credential\r\n            domain=\"ustin\">\r\n                <Identity>EXAMPLE</Identity>\r\n            </Credential>\r\n            <Correspondent\r\n                preferredLanguage=\"en-GB\">\r\n                <Contact\r\n                    role=\"correspondent\">\r\n                    <Name\r\n                    xml:lang=\"en\">Example Company</Name>\r\n                    <PostalAddress\r\n                        name=\"default\">\r\n                        <Street>Example Street</Street>\r\n                        <City>Example City</City>\r\n                        <PostalCode>Example POSTCODE</PostalCode>\r\n                        <Country\r\n                    isoCountryCode=\"GB\">United Kingdom</Country>\r\n                    </PostalAddress>\r\n                    <Email\r\n                    name=\"work\" preferredLang=\"en-GB\"/>\r\n                    <Email\r\n                    name=\"routing\"\r\n            preferredLang=\"en-GB\"/>\r\n                </Contact>\r\n            </Correspondent>\r\n        </To>\r\n        <Sender>\r\n            <Credential domain=\"ExampleNetworkUserId\">\r\n                <Identity>Example@example.com</Identity>\r\n                <SharedSecret>exampleSecret</SharedSecret>\r\n            </Credential>\r\n            <UserAgent>Example Buyer</UserAgent>\r\n        </Sender>\r\n    </Header>\r\n    <Request deploymentMode=\"production\">\r\n        <OrderRequest>\r\n            <OrderRequestHeader orderID=\"6112\" orderDate=\"2008-05-19T19:51:55Z\" type=\"new\" orderType=\"regular\">\r\n                <Total>\r\n                    <Money currency=\"USD\">1505.0</Money>\r\n                    <!-- Currency code configured in Coupa -->\r\n        \r\n                \r\n                </Total>\r\n                <ShipTo>\r\n                    <Address isoCountryCode=\"US\" addressID=\"3119\">\r\n                        <Name xml:lang=\"en\">Example</Name>\r\n                        <PostalAddress name=\"default\">\r\n                            <DeliverTo>Example</DeliverTo>\r\n                            <Street>333 East Hill Dr</Street>\r\n                            <City>ExampleCity</City>\r\n                            <State>ExampleState</State>\r\n                            <PostalCode>22222</PostalCode>\r\n                            <Country isoCountryCode=\"US\">United States</Country>\r\n                        </PostalAddress>\r\n                        <Email name=\"default\">example@example.com</Email>\r\n                    </Address>\r\n                </ShipTo>\r\n                <BillTo>\r\n                    <Address isoCountryCode=\"US\" addressID=\"142\">\r\n                        <Name xml:lang=\"en\">SOB1</Name>\r\n                        <PostalAddress name=\"default\">\r\n                            <DeliverTo>Example</DeliverTo>\r\n                            <Street>3420 Flatiron Way</Street>\r\n                            <City>Example</City>\r\n                            <State>Example</State>\r\n                            <PostalCode>Example</PostalCode>\r\n                            <Country isoCountryCode=\"US\">United States</Country>\r\n                        </PostalAddress>\r\n                    </Address>\r\n                </BillTo>\r\n                <Contact role=\"endUser\">\r\n                    <Name xml:lang=\"en\">ExampleName</Name>\r\n                    <Email name=\"default\">example@example.com</Email>\r\n                </Contact>\r\n            </OrderRequestHeader>\r\n            <ItemOut quantity=\"1\" lineNumber=\"1\">\r\n                <ItemID>\r\n                    <SupplierPartID>000000</SupplierPartID>\r\n                    <SupplierPartAuxiliaryID>02391834019823</SupplierPartAuxiliaryID>\r\n                </ItemID>\r\n                <ItemDetail>\r\n                    <UnitPrice>\r\n                        <Money currency=\"USD\">1505.0</Money>\r\n                    </UnitPrice>\r\n                    <Description xml:lang=\"en\">ExampleDescription</Description>\r\n                    <UnitOfMeasure>EA</UnitOfMeasure>\r\n                    <Classification domain=\"UNSPSC\">unknown</Classification>\r\n                </ItemDetail>\r\n                <Distribution>\r\n                    <Accounting name=\"bbbb\">\r\n                        <Segment id=\"bbb\" description=\"ORG\" type=\"Organization\" />\r\n                        <Segment id=\"b\" description=\"DEPT\" type=\"Department\" />\r\n                        <Segment id=\"bb\" description=\"PROJ\" type=\"Project\" />\r\n                    </Accounting>\r\n                    <Charge>\r\n                        <Money currency=\"USD\">1505.0</Money>\r\n                    </Charge>\r\n                </Distribution>\r\n            </ItemOut>\r\n        </OrderRequest>\r\n    </Request>\r\n</cXML>","options":{"raw":{"language":"xml"}}},"url":"https://apigw.transalis.com/documents/cXML"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:18:24 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Length","value":"358"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkVoGg2zLPEEMuA="}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE cXML SYSTEM \"http://xml.cXML.org/schemas/cXML/1.2.021/cXML.dtd\">\n<cXML xml:lang=\"en-GB\" payloadID=\"1649935104920.bf11fb07-b036-46c5-9531-96b18bddff89@transalis.com\" timestamp=\"2022-04-14T11:18:24.920Z\">\n    <Response>\n        <Status xml:lang=\"en-GB\" code=\"200\" text=\"OK\"></Status>\n    </Response>\n</cXML>"},{"id":"6cab67a0-c78e-45ff-8f93-fcd3ee32471e","name":"200 OK (GZIP)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml","type":"text"},{"key":"Content-Encoding","value":"gzip","type":"text"}],"body":{"mode":"raw","raw":"H4sIAAAAAAAAA81YW3PaOBR+31/h+nUHfCE0lzG0BJM23RCYGGbbfVNshWhrJFeWN/H++j2SjbHBdqDdTuqHZCSdm8759OkI593zOtT+wTwmjA50q2vqGqY+CwhdDfTl4qpzpr8b/ua8cWfjxZf5RPM/T28074u3mEw1/VGI6MIwwETXl38YXxmx/4jXKDakoGF17a5pnahBNxCBDqaUBZC+CJH0gWln6emaIGscC7SOBrptmmcds9+xzhfW+UXfuuif/m6aFyaEFqE0ZCi4diFU27Js++2pddq1bdM6fU+ijmV27L7VgfnOWU8vb0uFAd41+JyPGAWYZwM1ccXZejtUU2OOA0wFQWFlPmBrRMDiLRZPjH+9DvSqntK9VpoiHU4+j6bzm4ljFDNVJ8bWy3HuvTQWeH3t/v/eHaOaDGfBjgvNXd56r5MUQgXmFIVxEkUhwZy8UnHukxSApyr0WiHEKHodxzQ7F6+17yQWhP4s14xzHEeMyuU9DxHHDxgEghtgtQStsGK2D5d1wYwZFcjftyE/zkJQ9cu+akwoM7dojWtXyuSqDyfPwKoh1sZsHSGaOobUazA5Z8DB4SgIwHtcKyI/CgYGeoAfUBI2RafMeYJjLIoIsqFj5NPNemNVqU3cMICy7JWqJvAxC3ChN595i/HMhVKXFlt8soQKntYKkJjly9LIQJdlXVIicKD9ARcloA8CzAQaEmtUMtsgNAEQh7VLWcblydKrSNugzPhOk5wlcGJWekXkUA9y0wrJe2eoDN/y3VK+TBwP08o1rCa3x6841HlB8yt3GWP+0rWbKbzH2f+uL+tTf96zQB4RePWwzwGVuVI2AqyW1w6lChnjaCX3vgHjpbwTHGO7UEpKOQ+OUW5OnDv8LYG2SAtwFLJ0DYpTBcCIsyDxBTQ3pUQ4Mw6aucpOROWlzIPG5JTspN5CI6VnQxcJXNeA9f+CDi2NsCT4p1x2ocYcr5IQ8bp6LJjYzUyxNmUUp5qfAE6on0Kn6UEvY/XNftd0DLXYoPim09HGuZoGfSqGP/SBrBKohUYosFwSIa3T2arv2anBcUOogAwS7TZAxWJ+mPfYQbazKFuT6e1Z1nkbSUo6rqfsNqpWqhVSOZiWlaqLQwL9MWyucLadalfN6bvX62kTBOD8SMJQc/nLvK60y9x+CLXnLgGYGy01kN7kXLteiflt+R12F2RxZiWtq+6G+1UE8QvUr4wdQv9KUPH1biVxHZ8pyabbptGRJLR6SDuXUMYfxbp1Yh8JdW92af3iOD+xTe0qRIJwRrU/UfodQD8e5Efju9D7dRHeissm+G265bwzhrtSXqJtPXE9mcqV1t73h49eYzu0f/nuSFzDU3GWCO1bglSPAgdJ10JC8W2yvsdcDuv6HfUTQMNuvPwRPEdcgJCpPgBVdfpl3VHyTEKCeCqN2L1z66x3YlrnZ3avaqwsV5OZpljVJlwsmrlMInHOid/GD9/dTRgvWAf6iH1OItlp1cOqJCCZpRi07Gb2MMUohoZlOBllEWxn6rXGIYpj8kB8pALZNMbLW2/ujfVhQr9S9gT+q3JNdWhKt+OSWHByn7TEP/J9SQXwZMhPyj18rU9AvJJtq0YCJatDK1vkaKDP7j5sGssZXyFK/lWR61rDe2bf5I5BdzJfbCy6OAJgStEj7O0anN/NPm0Mzjn7G/vN1oDfivQ0VRKeE6ufA+Um0wDLxrpmgADqKb9H9p8RjlEMHfVb7vA/5WCO0DgWAAA=","options":{"raw":{"language":"xml"}}},"url":"https://apigw.transalis.com/documents/cXML"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:18:24 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Length","value":"358"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkVoGg2zLPEEMuA="}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE cXML SYSTEM \"http://xml.cXML.org/schemas/cXML/1.2.021/cXML.dtd\">\n<cXML xml:lang=\"en-GB\" payloadID=\"1649935104920.bf11fb07-b036-46c5-9531-96b18bddff89@transalis.com\" timestamp=\"2022-04-14T11:18:24.920Z\">\n    <Response>\n        <Status xml:lang=\"en-GB\" code=\"200\" text=\"OK\"></Status>\n    </Response>\n</cXML>"},{"id":"b03df008-78c0-4f3a-8f58-62b58d6a275f","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"Invalid cXML","options":{"raw":{"language":"xml"}}},"url":"https://apigw.transalis.com/documents/cXML"},"status":"Bad Request","code":400,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:23:18 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Length","value":"372"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkWVzhoMLPEEMNg="}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE cXML SYSTEM \"http://xml.cXML.org/schemas/cXML/1.2.021/cXML.dtd\">\n<cXML xml:lang=\"en-GB\" payloadID=\"1649935398123.93c933da-6229-4264-b5bf-81598331cc01@transalis.com\" timestamp=\"2022-04-14T11:23:18.123Z\">\n    <Response>\n        <Status xml:lang=\"en-GB\" code=\"400\" text=\"ERROR\">Invalid XML</Status>\n    </Response>\n</cXML>"}],"_postman_id":"33afa3be-9738-4af5-ab7f-36744a1b4167"}],"id":"d1c0423f-d35b-4615-9a5b-d303dda2bffd","description":"<p>The cXML endpoint will receive any valid cXML document.</p>\n<p>Please refer to <a href=\"http://cxml.org/\">http://cxml.org/</a> for the cXML specification.</p>\n<p>All responses from the cXML endpoints are valid cXML responses.</p>\n","_postman_id":"d1c0423f-d35b-4615-9a5b-d303dda2bffd","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}},{"name":"Post JSON","item":[{"name":"Post JSON","id":"f6487dca-e9c9-484e-bb81-47e1052faf67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/documents/json","description":"<p>A request to the JSON endpoint on the <strong>Production Environment</strong> of Transalis API.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}},"urlObject":{"path":["documents","json"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Basic auth access token (an alternative to using Authorization header)</p>\n","type":"text/plain"},"key":"token","value":"{{token}}"}],"variable":[]}},"response":[{"id":"5bccfa0d-3351-423d-a97c-9201e68dd39e","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"key\": \"value\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apigw.transalis.com/documents/json"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:18:24 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Length","value":"358"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkVoGg2zLPEEMuA="}],"cookie":[],"responseTime":null,"body":""},{"id":"a498c276-53cc-4541-988b-ae9f5eda5e50","name":"201 Created (GZIP)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Content-Encoding","value":"gzip","type":"text"}],"body":{"mode":"raw","raw":"H4sIAAAAAAAAA6vmUgACpezUSiUrBaWyxJzSVCWuWgB2v9BDFgAAAA==","options":{"raw":{"language":"json"}}},"url":"https://apigw.transalis.com/documents/json"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:18:24 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Length","value":"358"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkVoGg2zLPEEMuA="}],"cookie":[],"responseTime":null,"body":""},{"id":"04ab7b84-7f12-4035-a9a3-4b4b6b5356b1","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"RetailEvent\": {\r\n        \"UBLVersionID\": {\r\n            \"_\": \"2.1\"\r\n        },\r\n        \"CustomizationID\": {\r\n            \"_\": \"UBL-TR\"\r\n        },\r\n        \"ProfileID\": {\r\n            \"_\": \"bpid:urn:oasis:names:draft:bpss:ubl-2-1-cpfr-retail-event\"\r\n        },\r\n        \"ID\": {\r\n            \"_\": \"RE758494\"\r\n        },\r\n        \"CopyIndicator\": {\r\n            \"_\": false\r\n        },\r\n        \"UUID\": {\r\n            \"_\": \"349ABBAE-DF9D-40B4-849F-94C5FF9D1AF4\"\r\n        },\r\n        \"IssueDate\": {\r\n            \"_\": \"2009-12-01\"\r\n        },\r\n        \"IssueTime\": {\r\n            \"_\": \"12:00:01.000Z\"\r\n        },\r\n        \"Note\": [\r\n            {\r\n                \"_\": \"sample\"\r\n            }\r\n        ],\r\n        \"RetailEventName\": {\r\n            \"_\": \"ACME NEW BRANCH OPENNING\"\r\n        },\r\n        \"RetailEventStatusCode\": {\r\n            \"_\": \"PLANNED\"\r\n        },\r\n        \"Description\": [\r\n            {\r\n                \"_\": \"ACME NEW BRANCH will be opened in Brusells on May 12, 2010\"\r\n            }\r\n        ],\r\n        \"Period\": {\r\n            \"StartDate\": {\r\n                \"_\": \"2010-05-12\"\r\n            },\r\n            \"EndDate\": {\r\n                \"_\": \"2010-06-12\"\r\n            }\r\n        },\r\n        \"SenderParty\": {\r\n            \"PartyIdentification\": [\r\n                {\r\n                    \"ID\": {\r\n                        \"_\": \"6903148000007\"\r\n                    }\r\n                }\r\n            ],\r\n            \"PartyName\": [\r\n                {\r\n                    \"Name\": {\r\n                        \"_\": \"Consortial\"\r\n                    }\r\n                }\r\n            ],\r\n            \"PostalAddress\": {\r\n                \"StreetName\": {\r\n                    \"_\": \"Busy Street\"\r\n                },\r\n                \"BuildingName\": {\r\n                    \"_\": \"Thereabouts\"\r\n                },\r\n                \"BuildingNumber\": {\r\n                    \"_\": \"56A\"\r\n                },\r\n                \"CityName\": {\r\n                    \"_\": \"Farthing\"\r\n                },\r\n                \"PostalZone\": {\r\n                    \"_\": \"AA99 1BB\"\r\n                },\r\n                \"CountrySubentity\": {\r\n                    \"_\": \"Heremouthshire\"\r\n                },\r\n                \"AddressLine\": [\r\n                    {\r\n                        \"Line\": {\r\n                            \"_\": \"The Roundabout\"\r\n                        }\r\n                    }\r\n                ],\r\n                \"Country\": {\r\n                    \"IdentificationCode\": {\r\n                        \"_\": \"GB\"\r\n                    }\r\n                }\r\n            },\r\n            \"PartyTaxScheme\": [\r\n                {\r\n                    \"RegistrationName\": {\r\n                        \"_\": \"Farthing Purchasing Consortium\"\r\n                    },\r\n                    \"CompanyID\": {\r\n                        \"_\": \"175 269 2355\"\r\n                    },\r\n                    \"ExemptionReason\": [\r\n                        {\r\n                            \"_\": \"N/A\"\r\n                        }\r\n                    ],\r\n                    \"TaxScheme\": {\r\n                        \"ID\": {\r\n                            \"_\": \"VAT\"\r\n                        },\r\n                        \"TaxTypeCode\": {\r\n                            \"_\": \"VAT\"\r\n                        }\r\n                    }\r\n                }\r\n            ],\r\n            \"Contact\": {\r\n                \"Name\": {\r\n                    \"_\": \"Mrs Bouquet\"\r\n                },\r\n                \"Telephone\": {\r\n                    \"_\": \"0158 1233714\"\r\n                },\r\n                \"Telefax\": {\r\n                    \"_\": \"0158 1233856\"\r\n                },\r\n                \"ElectronicMail\": {\r\n                    \"_\": \"bouquet@fpconsortial.co.uk\"\r\n                }\r\n            }\r\n        },\r\n        \"ReceiverParty\": {\r\n            \"PartyIdentification\": [\r\n                {\r\n                    \"ID\": {\r\n                        \"_\": \"2203148000007\"\r\n                    }\r\n                }\r\n            ],\r\n            \"PartyName\": [\r\n                {\r\n                    \"Name\": {\r\n                        \"_\": \"IYT Corporation\"\r\n                    }\r\n                }\r\n            ],\r\n            \"PostalAddress\": {\r\n                \"StreetName\": {\r\n                    \"_\": \"Avon Way\"\r\n                },\r\n                \"BuildingName\": {\r\n                    \"_\": \"Thereabouts\"\r\n                },\r\n                \"BuildingNumber\": {\r\n                    \"_\": \"56A\"\r\n                },\r\n                \"CityName\": {\r\n                    \"_\": \"Bridgtow\"\r\n                },\r\n                \"PostalZone\": {\r\n                    \"_\": \"ZZ99 1ZZ\"\r\n                },\r\n                \"CountrySubentity\": {\r\n                    \"_\": \"Avon\"\r\n                },\r\n                \"AddressLine\": [\r\n                    {\r\n                        \"Line\": {\r\n                            \"_\": \"3rd Floor, Room 5\"\r\n                        }\r\n                    }\r\n                ],\r\n                \"Country\": {\r\n                    \"IdentificationCode\": {\r\n                        \"_\": \"GB\"\r\n                    }\r\n                }\r\n            },\r\n            \"PartyTaxScheme\": [\r\n                {\r\n                    \"RegistrationName\": {\r\n                        \"_\": \"Bridgtow District Council\"\r\n                    },\r\n                    \"CompanyID\": {\r\n                        \"_\": \"12356478\"\r\n                    },\r\n                    \"ExemptionReason\": [\r\n                        {\r\n                            \"_\": \"Local Authority\"\r\n                        }\r\n                    ],\r\n                    \"TaxScheme\": {\r\n                        \"ID\": {\r\n                            \"_\": \"UK VAT\"\r\n                        },\r\n                        \"TaxTypeCode\": {\r\n                            \"_\": \"VAT\"\r\n                        }\r\n                    }\r\n                }\r\n            ],\r\n            \"Contact\": {\r\n                \"Name\": {\r\n                    \"_\": \"Mr Fred Churchill\"\r\n                },\r\n                \"Telephone\": {\r\n                    \"_\": \"0127 2653214\"\r\n                },\r\n                \"Telefax\": {\r\n                    \"_\": \"0127 2653215\"\r\n                },\r\n                \"ElectronicMail\": {\r\n                    \"_\": \"fred@iytcorporation.gov.uk\"\r\n                }\r\n            }\r\n        },\r\n        \"BuyerCustomerParty\": {\r\n            \"Party\": {\r\n                \"PartyIdentification\": [\r\n                    {\r\n                        \"ID\": {\r\n                            \"_\": \"0012345000359\"\r\n                        }\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"SellerSupplierParty\": {\r\n            \"Party\": {\r\n                \"PartyIdentification\": [\r\n                    {\r\n                        \"ID\": {\r\n                            \"_\": \"0012345000058\"\r\n                        }\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"PromotionalEvent\": {\r\n            \"PromotionalEventTypeCode\": {\r\n                \"_\": \"STORE_OPENING\"\r\n            },\r\n            \"SubmissionDate\": {\r\n                \"_\": \"2009-12-01\"\r\n            },\r\n            \"LatestProposalAcceptanceDate\": {\r\n                \"_\": \"2010-01-06\"\r\n            },\r\n            \"PromotionalSpecification\": [\r\n                {\r\n                    \"SpecificationID\": {\r\n                        \"_\": \"ACME_STROP_0023823\"\r\n                    },\r\n                    \"PromotionalEventLineItem\": [\r\n                        {\r\n                            \"Amount\": {\r\n                                \"_\": 100.0,\r\n                                \"currencyID\": \"GBP\"\r\n                            },\r\n                            \"EventLineItem\": {\r\n                                \"LineNumberNumeric\": {\r\n                                    \"_\": 1\r\n                                },\r\n                                \"ParticipatingLocationsLocation\": {\r\n                                    \"ID\": {\r\n                                        \"_\": \"ACME_BR_BE_0023\"\r\n                                    }\r\n                                },\r\n                                \"RetailPlannedImpact\": [\r\n                                    {\r\n                                        \"Amount\": {\r\n                                            \"_\": 0.0,\r\n                                            \"currencyID\": \"GBP\"\r\n                                        },\r\n                                        \"ForecastPurposeCode\": {\r\n                                            \"_\": \"SALES_FORECAST\"\r\n                                        },\r\n                                        \"ForecastTypeCode\": {\r\n                                            \"_\": \"PROMOTIONAL\"\r\n                                        },\r\n                                        \"Period\": {\r\n                                            \"StartDate\": {\r\n                                                \"_\": \"2010-05-12\"\r\n                                            },\r\n                                            \"EndDate\": {\r\n                                                \"_\": \"2010-06-12\"\r\n                                            }\r\n                                        }\r\n                                    }\r\n                                ],\r\n                                \"SupplyItem\": {\r\n                                    \"Description\": [\r\n                                        {\r\n                                            \"_\": \"Acme knitwear scarf\"\r\n                                        }\r\n                                    ],\r\n                                    \"Name\": {\r\n                                        \"_\": \"scarf\"\r\n                                    },\r\n                                    \"BuyersItemIdentification\": {\r\n                                        \"ID\": {\r\n                                            \"_\": \"6578489\"\r\n                                        }\r\n                                    },\r\n                                    \"SellersItemIdentification\": {\r\n                                        \"ID\": {\r\n                                            \"_\": \"17589683\"\r\n                                        }\r\n                                    },\r\n                                    \"StandardItemIdentification\": {\r\n                                        \"ID\": {\r\n                                            \"_\": \"00123450000584\"\r\n                                        }\r\n                                    }\r\n                                }\r\n                            }\r\n                        }\r\n                    ],\r\n                    \"EventTactic\": [\r\n                        {\r\n                            \"EventTacticEnumeration\": {\r\n                                \"DisplayTacticTypeCode\": {\r\n                                    \"_\": \"DISPLAY_GENERAL\"\r\n                                }\r\n                            },\r\n                            \"Period\": {\r\n                                \"StartDate\": {\r\n                                    \"_\": \"2010-04-01\"\r\n                                },\r\n                                \"EndDate\": {\r\n                                    \"_\": \"2010-06-12\"\r\n                                }\r\n                            }\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    }\r\n","options":{"raw":{"language":"json"}}},"url":"https://apigw.transalis.com/documents/json"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:23:18 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Length","value":"372"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkWVzhoMLPEEMNg="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Invalid JSON\"\n}"}],"_postman_id":"f6487dca-e9c9-484e-bb81-47e1052faf67"}],"id":"6638a1aa-462c-4083-96b9-f0e56172ad50","description":"<p>The JSON endpoint will receive any valid JSON document.</p>\n<p>Please refer to <a href=\"https://www.json.org/json-en.html\">https://www.json.org/json-en.html</a> for the JSON specification.</p>\n<p>All responses are valid JSON.</p>\n","_postman_id":"6638a1aa-462c-4083-96b9-f0e56172ad50","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}},{"name":"Post XML","item":[{"name":"Post XML file","id":"f2a99480-de79-4d60-a3cd-ed70eba64ea4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"xml"}}},"url":"{{url}}/documents/xml","description":"<p>A request to the XML endpoint on the <strong>Production Environment</strong> of Transalis API.</p>\n","urlObject":{"path":["documents","xml"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Basic auth access token (an alternative to using Authorization header)</p>\n","type":"text/plain"},"key":"token","value":"{{token}}"}],"variable":[]}},"response":[{"id":"0510c903-1d6a-4d51-831b-8cfec9c53f30","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"<Order xmlns=\"urn:oasis:names:specification:ubl:schema:xsd:Order-2\" xmlns:cac=\"urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2\" xmlns:cbc=\"urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2\">\r\n<cbc:UBLVersionID>2.1</cbc:UBLVersionID>\r\n<cbc:CustomizationID>urn:www.cenbii.eu:transaction:biicoretrdm001:ver1.0</cbc:CustomizationID>\r\n<cbc:ProfileID schemeAgencyID=\"BII\" schemeID=\"Profile\">urn:www.cenbii.eu:profile:BII01:ver1.0</cbc:ProfileID>\r\n<cbc:ID>34</cbc:ID>\r\n<cbc:IssueDate>2010-01-20</cbc:IssueDate>\r\n<cbc:IssueTime>12:30:00</cbc:IssueTime>\r\n<cbc:Note>Information text for the whole order</cbc:Note>\r\n<cbc:DocumentCurrencyCode>SEK</cbc:DocumentCurrencyCode>\r\n<cbc:AccountingCostCode>Project123</cbc:AccountingCostCode>\r\n<cac:ValidityPeriod>\r\n<cbc:EndDate>2010-01-31</cbc:EndDate>\r\n</cac:ValidityPeriod>\r\n<cac:QuotationDocumentReference>\r\n<cbc:ID>QuoteID123</cbc:ID>\r\n</cac:QuotationDocumentReference>\r\n<cac:OrderDocumentReference>\r\n<cbc:ID>RjectedOrderID123</cbc:ID>\r\n</cac:OrderDocumentReference>\r\n<cac:OriginatorDocumentReference>\r\n<cbc:ID>MAFO</cbc:ID>\r\n</cac:OriginatorDocumentReference>\r\n<cac:AdditionalDocumentReference>\r\n<cbc:ID>Doc1</cbc:ID>\r\n<cbc:DocumentType>Timesheet</cbc:DocumentType>\r\n<cac:Attachment>\r\n<cac:ExternalReference>\r\n<cbc:URI>http://www.suppliersite.eu/sheet001.html</cbc:URI>\r\n</cac:ExternalReference>\r\n</cac:Attachment>\r\n</cac:AdditionalDocumentReference>\r\n<cac:AdditionalDocumentReference>\r\n<cbc:ID>Doc2</cbc:ID>\r\n<cbc:DocumentType>Drawing</cbc:DocumentType>\r\n<cac:Attachment>\r\n<cbc:EmbeddedDocumentBinaryObject mimeCode=\"application/pdf\">UjBsR09EbGhjZ0dTQUxNQUFBUUNBRU1tQ1p0dU1GUXhEUzhi</cbc:EmbeddedDocumentBinaryObject>\r\n</cac:Attachment>\r\n</cac:AdditionalDocumentReference>\r\n<cac:Contract>\r\n<cbc:ID>34322</cbc:ID>\r\n<cbc:ContractType>FrameworkAgreementID123</cbc:ContractType>\r\n</cac:Contract>\r\n<cac:BuyerCustomerParty>\r\n<cac:Party>\r\n<cbc:EndpointID schemeAgencyID=\"9\" schemeID=\"GLN\">7300072311115</cbc:EndpointID>\r\n<cac:PartyIdentification>\r\n<cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">7300070011115</cbc:ID>\r\n</cac:PartyIdentification>\r\n<cac:PartyIdentification>\r\n<cbc:ID>PartyID123</cbc:ID>\r\n</cac:PartyIdentification>\r\n<cac:PartyName>\r\n<cbc:Name>Johnssons byggvaror</cbc:Name>\r\n</cac:PartyName>\r\n<cac:PostalAddress>\r\n<cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">1234567890123</cbc:ID>\r\n<cbc:Postbox>PoBox123</cbc:Postbox>\r\n<cbc:StreetName>Rådhusgatan</cbc:StreetName>\r\n<cbc:AdditionalStreetName>2nd floor</cbc:AdditionalStreetName>\r\n<cbc:BuildingNumber>5</cbc:BuildingNumber>\r\n<cbc:Department>Purchasing department</cbc:Department>\r\n<cbc:CityName>Stockholm</cbc:CityName>\r\n<cbc:PostalZone>11000</cbc:PostalZone>\r\n<cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n<cac:Country>\r\n<cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n</cac:Country>\r\n</cac:PostalAddress>\r\n<cac:PartyTaxScheme>\r\n<cbc:RegistrationName>Herra Johnssons byggvaror AS</cbc:RegistrationName>\r\n<cbc:CompanyID>SE1234567801</cbc:CompanyID>\r\n<cac:RegistrationAddress>\r\n<cbc:CityName>Stockholm</cbc:CityName>\r\n<cac:Country>\r\n<cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n</cac:Country>\r\n</cac:RegistrationAddress>\r\n<cac:TaxScheme>\r\n<cbc:ID schemeID=\"UN/ECE 5153\" schemeAgencyID=\"6\">VAT</cbc:ID>\r\n</cac:TaxScheme>\r\n</cac:PartyTaxScheme>\r\n<cac:PartyLegalEntity>\r\n<cbc:RegistrationName>Johnssons Byggvaror AB</cbc:RegistrationName>\r\n<cbc:CompanyID schemeID=\"SE:ORGNR\">5532331183</cbc:CompanyID>\r\n<cac:RegistrationAddress>\r\n<cbc:CityName>Stockholm</cbc:CityName>\r\n<cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n<cac:Country>\r\n<cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n</cac:Country>\r\n</cac:RegistrationAddress>\r\n</cac:PartyLegalEntity>\r\n<cac:Contact>\r\n<cbc:Telephone>123456</cbc:Telephone>\r\n<cbc:Telefax>123456</cbc:Telefax>\r\n<cbc:ElectronicMail>pelle@johnsson.se</cbc:ElectronicMail>\r\n</cac:Contact>\r\n<cac:Person>\r\n<cbc:FirstName>Pelle</cbc:FirstName>\r\n<cbc:FamilyName>Svensson</cbc:FamilyName>\r\n<cbc:MiddleName>X</cbc:MiddleName>\r\n<cbc:JobTitle>Boss</cbc:JobTitle>\r\n</cac:Person>\r\n</cac:Party>\r\n<cac:DeliveryContact>\r\n<cbc:Name>Eva Johnsson</cbc:Name>\r\n<cbc:Telephone>1234356</cbc:Telephone>\r\n<cbc:Telefax>123455</cbc:Telefax>\r\n<cbc:ElectronicMail>eva@johnsson.se</cbc:ElectronicMail>\r\n</cac:DeliveryContact>\r\n</cac:BuyerCustomerParty>\r\n<cac:SellerSupplierParty>\r\n<cac:Party>\r\n<cbc:EndpointID schemeAgencyID=\"9\" schemeID=\"GLN\">7302347231111</cbc:EndpointID>\r\n<cac:PartyIdentification>\r\n<cbc:ID>SellerPartyID123</cbc:ID>\r\n</cac:PartyIdentification>\r\n<cac:PartyName>\r\n<cbc:Name>Moderna Produkter AB</cbc:Name>\r\n</cac:PartyName>\r\n<cac:PostalAddress>\r\n<cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">0987654321123</cbc:ID>\r\n<cbc:Postbox>321</cbc:Postbox>\r\n<cbc:StreetName>Kungsgatan</cbc:StreetName>\r\n<cbc:AdditionalStreetName>suite12</cbc:AdditionalStreetName>\r\n<cbc:BuildingNumber>22</cbc:BuildingNumber>\r\n<cbc:Department>Sales department</cbc:Department>\r\n<cbc:CityName>Stockholm</cbc:CityName>\r\n<cbc:PostalZone>11000</cbc:PostalZone>\r\n<cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n<cac:Country>\r\n<cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n</cac:Country>\r\n</cac:PostalAddress>\r\n<cac:PartyLegalEntity>\r\n<cbc:RegistrationName>Moderna Produkter AB</cbc:RegistrationName>\r\n<cbc:CompanyID schemeID=\"SE:ORGNR\">5532332283</cbc:CompanyID>\r\n<cac:RegistrationAddress>\r\n<cbc:CityName>Stockholm</cbc:CityName>\r\n<cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n<cac:Country>\r\n<cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n</cac:Country>\r\n</cac:RegistrationAddress>\r\n</cac:PartyLegalEntity>\r\n<cac:Contact>\r\n<cbc:Telephone>34557</cbc:Telephone>\r\n<cbc:Telefax>3456767</cbc:Telefax>\r\n<cbc:ElectronicMail>lars@moderna.se</cbc:ElectronicMail>\r\n</cac:Contact>\r\n<cac:Person>\r\n<cbc:FirstName>Lars</cbc:FirstName>\r\n<cbc:FamilyName>Petersen</cbc:FamilyName>\r\n<cbc:MiddleName>M</cbc:MiddleName>\r\n<cbc:JobTitle>Sales manager</cbc:JobTitle>\r\n</cac:Person>\r\n</cac:Party>\r\n</cac:SellerSupplierParty>\r\n<cac:OriginatorCustomerParty>\r\n<cac:Party>\r\n<cac:PartyIdentification>\r\n<cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">0987678321123</cbc:ID>\r\n</cac:PartyIdentification>\r\n<cac:PartyName>\r\n<cbc:Name>Moderna Produkter AB</cbc:Name>\r\n</cac:PartyName>\r\n<cac:Contact>\r\n<cbc:Telephone>346788</cbc:Telephone>\r\n<cbc:Telefax>8567443</cbc:Telefax>\r\n<cbc:ElectronicMail>sven@moderna.se</cbc:ElectronicMail>\r\n</cac:Contact>\r\n<cac:Person>\r\n<cbc:FirstName>Sven</cbc:FirstName>\r\n<cbc:FamilyName>Pereson</cbc:FamilyName>\r\n<cbc:MiddleName>N</cbc:MiddleName>\r\n<cbc:JobTitle>Stuffuser</cbc:JobTitle>\r\n</cac:Person>\r\n</cac:Party>\r\n</cac:OriginatorCustomerParty>\r\n<cac:Delivery>\r\n<cac:DeliveryLocation>\r\n<cac:Address>\r\n<cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">1234567890123</cbc:ID>\r\n<cbc:Postbox>123</cbc:Postbox>\r\n<cbc:StreetName>Rådhusgatan</cbc:StreetName>\r\n<cbc:AdditionalStreetName>2nd floor</cbc:AdditionalStreetName>\r\n<cbc:BuildingNumber>5</cbc:BuildingNumber>\r\n<cbc:Department>Purchasing department</cbc:Department>\r\n<cbc:CityName>Stockholm</cbc:CityName>\r\n<cbc:PostalZone>11000</cbc:PostalZone>\r\n<cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n<cac:Country>\r\n<cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n</cac:Country>\r\n</cac:Address>\r\n</cac:DeliveryLocation>\r\n<cac:RequestedDeliveryPeriod>\r\n<cbc:StartDate>2010-02-10</cbc:StartDate>\r\n<cbc:EndDate>2010-02-25</cbc:EndDate>\r\n</cac:RequestedDeliveryPeriod>\r\n<cac:DeliveryParty>\r\n<cac:PartyIdentification>\r\n<cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">67654328394567</cbc:ID>\r\n</cac:PartyIdentification>\r\n<cac:PartyName>\r\n<cbc:Name>Swedish trucking</cbc:Name>\r\n</cac:PartyName>\r\n<cac:Contact>\r\n<cbc:Name>Per</cbc:Name>\r\n<cbc:Telephone>987098709</cbc:Telephone>\r\n<cbc:Telefax>34673435</cbc:Telefax>\r\n<cbc:ElectronicMail>bill@svetruck.se</cbc:ElectronicMail>\r\n</cac:Contact>\r\n</cac:DeliveryParty>\r\n</cac:Delivery>\r\n<cac:DeliveryTerms>\r\n<cbc:ID schemeAgencyID=\"6\" schemeID=\"IMCOTERM\">FOT</cbc:ID>\r\n<cbc:SpecialTerms>CAD</cbc:SpecialTerms>\r\n<cac:DeliveryLocation>\r\n<cbc:ID>STO</cbc:ID>\r\n</cac:DeliveryLocation>\r\n</cac:DeliveryTerms>\r\n<cac:AllowanceCharge>\r\n<cbc:ChargeIndicator>true</cbc:ChargeIndicator>\r\n<cbc:AllowanceChargeReason>Transport documents</cbc:AllowanceChargeReason>\r\n<cbc:Amount currencyID=\"SEK\">100</cbc:Amount>\r\n</cac:AllowanceCharge>\r\n<cac:AllowanceCharge>\r\n<cbc:ChargeIndicator>false</cbc:ChargeIndicator>\r\n<cbc:AllowanceChargeReason>Total order value discount</cbc:AllowanceChargeReason>\r\n<cbc:Amount currencyID=\"SEK\">100</cbc:Amount>\r\n</cac:AllowanceCharge>\r\n<cac:TaxTotal>\r\n<cbc:TaxAmount currencyID=\"SEK\">100</cbc:TaxAmount>\r\n</cac:TaxTotal>\r\n<cac:AnticipatedMonetaryTotal>\r\n<cbc:LineExtensionAmount currencyID=\"SEK\">6225</cbc:LineExtensionAmount>\r\n<cbc:AllowanceTotalAmount currencyID=\"SEK\">100</cbc:AllowanceTotalAmount>\r\n<cbc:ChargeTotalAmount currencyID=\"SEK\">100</cbc:ChargeTotalAmount>\r\n<cbc:PayableAmount currencyID=\"SEK\">6225</cbc:PayableAmount>\r\n</cac:AnticipatedMonetaryTotal>\r\n<cac:OrderLine>\r\n<cbc:Note>Freetext note on line 1</cbc:Note>\r\n<cac:LineItem>\r\n<cbc:ID>1</cbc:ID>\r\n<cbc:Quantity unitCode=\"LTR\">120</cbc:Quantity>\r\n<cbc:LineExtensionAmount currencyID=\"SEK\">6000</cbc:LineExtensionAmount>\r\n<cbc:TotalTaxAmount currencyID=\"SEK\">10</cbc:TotalTaxAmount>\r\n<cbc:PartialDeliveryIndicator>false</cbc:PartialDeliveryIndicator>\r\n<cbc:AccountingCostCode>ProjectID123</cbc:AccountingCostCode>\r\n<cac:Delivery>\r\n<cac:RequestedDeliveryPeriod>\r\n<cbc:StartDate>2010-02-10</cbc:StartDate>\r\n<cbc:EndDate>2010-02-25</cbc:EndDate>\r\n</cac:RequestedDeliveryPeriod>\r\n</cac:Delivery>\r\n<cac:OriginatorParty>\r\n<cac:PartyIdentification>\r\n<cbc:ID schemeAgencyID=\"ZZZ\" schemeID=\"ZZZ\">EmployeeXXX</cbc:ID>\r\n</cac:PartyIdentification>\r\n<cac:PartyName>\r\n<cbc:Name>Josef K.</cbc:Name>\r\n</cac:PartyName>\r\n</cac:OriginatorParty>\r\n<cac:Price>\r\n<cbc:PriceAmount currencyID=\"SEK\">50</cbc:PriceAmount>\r\n<cbc:BaseQuantity unitCode=\"LTR\">1</cbc:BaseQuantity>\r\n</cac:Price>\r\n<cac:Item>\r\n<cbc:Description>Red paint</cbc:Description>\r\n<cbc:Name>Falu Rödfärg</cbc:Name>\r\n<cac:SellersItemIdentification>\r\n<cbc:ID>SItemNo001</cbc:ID>\r\n</cac:SellersItemIdentification>\r\n<cac:StandardItemIdentification>\r\n<cbc:ID schemeAgencyID=\"6\" schemeID=\"GTIN\">1234567890123</cbc:ID>\r\n</cac:StandardItemIdentification>\r\n<cac:AdditionalItemProperty>\r\n<cbc:Name>Paint type</cbc:Name>\r\n<cbc:Value>Acrylic</cbc:Value>\r\n</cac:AdditionalItemProperty>\r\n<cac:AdditionalItemProperty>\r\n<cbc:Name>Solvant</cbc:Name>\r\n<cbc:Value>Water</cbc:Value>\r\n</cac:AdditionalItemProperty>\r\n</cac:Item>\r\n</cac:LineItem>\r\n</cac:OrderLine>\r\n<cac:OrderLine>\r\n<cbc:Note>Freetext note on line 2</cbc:Note>\r\n<cac:LineItem>\r\n<cbc:ID>2</cbc:ID>\r\n<cbc:Quantity unitCode=\"C62\">15</cbc:Quantity>\r\n<cbc:LineExtensionAmount currencyID=\"SEK\">225</cbc:LineExtensionAmount>\r\n<cbc:TotalTaxAmount currencyID=\"SEK\">10</cbc:TotalTaxAmount>\r\n<cbc:PartialDeliveryIndicator>false</cbc:PartialDeliveryIndicator>\r\n<cbc:AccountingCostCode>ProjectID123</cbc:AccountingCostCode>\r\n<cac:Delivery>\r\n<cac:RequestedDeliveryPeriod>\r\n<cbc:StartDate>2010-02-10</cbc:StartDate>\r\n<cbc:EndDate>2010-02-25</cbc:EndDate>\r\n</cac:RequestedDeliveryPeriod>\r\n</cac:Delivery>\r\n<cac:OriginatorParty>\r\n<cac:PartyIdentification>\r\n<cbc:ID schemeAgencyID=\"ZZZ\" schemeID=\"ZZZ\">EmployeeXXX</cbc:ID>\r\n</cac:PartyIdentification>\r\n<cac:PartyName>\r\n<cbc:Name>Josef K.</cbc:Name>\r\n</cac:PartyName>\r\n</cac:OriginatorParty>\r\n<cac:Price>\r\n<cbc:PriceAmount currencyID=\"SEK\">15</cbc:PriceAmount>\r\n<cbc:BaseQuantity unitCode=\"C62\">1</cbc:BaseQuantity>\r\n</cac:Price>\r\n<cac:Item>\r\n<cbc:Description>Very good pencils for red paint.</cbc:Description>\r\n<cbc:Name>Pensel 20 mm</cbc:Name>\r\n<cac:SellersItemIdentification>\r\n<cbc:ID>SItemNo011</cbc:ID>\r\n</cac:SellersItemIdentification>\r\n<cac:StandardItemIdentification>\r\n<cbc:ID schemeAgencyID=\"6\" schemeID=\"GTIN\">123452340123</cbc:ID>\r\n</cac:StandardItemIdentification>\r\n<cac:AdditionalItemProperty>\r\n<cbc:Name>Hair color</cbc:Name>\r\n<cbc:Value>Black</cbc:Value>\r\n</cac:AdditionalItemProperty>\r\n<cac:AdditionalItemProperty>\r\n<cbc:Name>Width</cbc:Name>\r\n<cbc:Value>20mm</cbc:Value>\r\n</cac:AdditionalItemProperty>\r\n</cac:Item>\r\n</cac:LineItem>\r\n</cac:OrderLine>\r\n</Order>","options":{"raw":{"language":"xml"}}},"url":"https://apigw.transalis.com/documents/xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:18:24 GMT"},{"key":"Content-Type","value":"application/xml","description":"","type":"text"},{"key":"Content-Length","value":"358"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkVoGg2zLPEEMuA="}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xml xml:lang=\"en-GB\" payloadID=\"1649935104920.bf11fb07-b036-46c5-9531-96b18bddff89@transalis.com\" timestamp=\"2022-04-14T11:18:24.920Z\">\n    <Response>\n        <Status xml:lang=\"en-GB\" code=\"200\" text=\"OK\"></Status>\n    </Response>\n</xml>"},{"id":"f5936cf8-2f94-4a9b-b0d3-802bfdbc6e1c","name":"200 OK (GZIP)","originalRequest":{"method":"POST","header":[{"key":"Content-Encoding","value":"gzip","type":"text"},{"key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"H4sIAAAAAAAAA+1a6XLbOBL+n6dg6X/MQ/GlSlixZDmjxFd0ZFL5B5GQxIQktABpS/M8s6+wL5AX28bFQ6Io+srOVsVVrhKBRnejr69B8O0N9TE1VlEYs3etlMYdgljAOjGKMOuwJfaCWeChJCBxJ52GHeYtcIQ6K+Z3xMrXTksu7njIeyCDHokiEp/N5xTPUYLhcUliHCeswHT6OKZdIPdKDN1Xb4FZZ9K9/IIpg4WDc9c5sN+aW6OSsJeyhETBX0IIjHIl7u/vDzwcT4PgAKedhKKYIU8oAUMeoTihfmRZducOU/vAkrw3GUn2t5TMghAPzg2hOz6b49hbD87ftbqDQUsN8kdF2KpQYCmnOrBiQ2bGXUmDH+03ciofYyzF52B317Fs67Vlv3bU6nymQDkOIuzaTqdtdawinRiXdNcElgziGaGR2KyR4FViwKORLLBxvyAhNggPGrlckMuV58RLI3BUL6WU26FHfOyO+p8kYeWsXHjmeSSNkyCe9whLxATs/Tv2Ettpy9UVJLAWeZ0vKAz8IFnfYhoQXzHsx37JJm0VIXr8FTxWroXBzylJxMa1wkM8w1xjnLuB04BfMu2EO8z9q4FA5FsN6yHfNvYFWaWE3QzEZDAPYpSQOhFXZxc321xrFwLFmQ+mgo2hsIY1TNkbEaqpx+sldnmcsQXGSTkmxJwSkyTIW/BBNdBfJZiC1E1pk+HAXSTJsmOaPKFYulyGAU//BENamUIKZPHBIolCVR9ghdpuFVNzS7zZYN8PsIxTZ5lziu4huhvahcdyNMW+j31N2wX30fXNlMePEYGdeZK8ayFuFllkzaU/a7mT7102tE770w+L798sf/x5srr+PLnoTibX3eHETj7bS8uf2B8mXxf9yV+LQGVOjbSn2K5HYqjAXuIWSlzb2bSUphL2uKCAH/eE/jgDyMGcaSFPSpRKi6IMeOyma0xlPcf0FtFkrSay37JSLEnAWW+V9tNiYf9wed1yj9uWZR07bRv+DrNKo9YXmQ980DYDvWzPjUVAPOci8uTdwXuPVFdOVtWYPQyvUY4W/OdHsogZIzEzpuv5/A5RosFBEppbK/kz1HEUQoRQzNhDTAH6vjk8Oj45tcqaC8gEplOycm9Jl6yyaT0qaUYJhE0iNBn+/Le/SBn0LSiWpIVJhU1ZCBemnNg3ZiHR26ykkcu7aRD6kNfXKSQQdZXrNkZVOcBLMJFIn9uUegtofuK54WejqjTkVCo3AmXWUUK8HwDPkcqEoOQoae5v0Em5tm1p8C+M6kwDlKXrUTrlzod0GOI57Oyrzq6NWZ3EYlg7sRQ3qglQftqeynJUszArg0MH0BitRiIclDCuHoPs5vzEbv/AlCKjIiKNs5FUYmuJ3nm0RDHEHGirQ8yy9b71nFSlyKIcwU288SIW26ESzGyaLEsynlGTa7Pf6xuH9mG7tZV7Ry33y9l4szgU+ZnVjtGDl3AkCPtZqFQZP/dUN/dUt5mnCvsY9Ts3ww/Xw5Z7eNh22lCKT9ov4bt/TopU78PcZXuFgznUjnGIlwtRD0S0S/H5aE41Q6stGj6mkDKEFoCSOPCuUBC6SxyG+P135dUDhhUelqkKyJwDM7ThLMOni4AyWUhvOUfJJR9URCgKQuWzOywkKsJ8QlJeBb4fYjGgHFUYkSQfyXQcJCF2u4QxSZMNacNqDc1Sv4B4WQ4DOLutyzYW3Pt3eT0qweK2F9qN3HDYwA34DjV1wrbqZm2bNOL+oCPVbz9XAwUbUx3UIxooV+r0bA3NFaQdHA8MOIX66Q84KmQl6UU6Guv05PjoEPpee3dHA5N7mplPaTx/eCvDUjgw2c5DGxndou/rZEYoxOx3E1NuYhrA4u4IfAIoOs5vUGwKirzOHtcXY9EjHh03qMYhoux9JF36HJB4Cfz2IuIthrBhuAEiXu1DRJnFEYrRXL/3awaNZj1g5G+das/jTz8+iwp7fLJVYX8dOOyOM9DrpD7QTiDO3rxpNwg0Bl3QcwYa76oaBBrkWZPO63pvnCXpbJayR8RYfSTpFmfj8ZKUvP1C7yJ+v4b4v0XwDQjZETdD/K8UswT7er50FzFKwFCF2wjntW1pJ+uZrGUu0Tn5u8TirUWNuIKOz1g8j2RzetI+5bH+xOo5usd+wBZGQlPvR/bCu3nl1BWn5iQFtd4S//vg++iYH7kalNVpEIbvobYKpRvXVbPKH2ZNPRpjGtWUn6OiZwZXvZtxf3jVci9uxhuVZ8SvVlEo2fXOzlW4FUd3F0J1oBpvXRFVEJuV2vPECUNyj2IP9xaIzrOsFg+D2OdxQqgL5lSm3JxRRa/MZYgRL/9jfmO7JDQxfHWpoHqhanLFKuKZbXjq8lF2x5+ggOsSJAmyxN/Wv/GuZihkj9kWgRIob1aNOxSm2IA8EZeev2h3Y7QSOug0Qau9bDMazbnIgwuCouAFSyhe/hUkINS7dVHEZRBjfhMX8zv7XcKOHF0HK8g3LSq477dGBXnJmc3YbNFqjENrNA3x/g2VCDPn1NhMX/9yS+h6yO/fLzjc82v6GJ4MEhshEBjqhYG+oUfSgoMER3meb97Wfk6RgFQjjYNE3iBejoe80VGb1gQPcmEG9LtdKPZYG3Mq5Ep0mcVpAqVNV6LKXNxJ82rPNwiFF0o7v0LYKOj/mI6gCm3yVvnRPcK3b9+KWMQf3X60DMka469fvz6xRfhIGJ4Znw7qWwOzZi80yK7exe9dQXWYfWmTEemGGTG8MxdU91wgyRTUkuF3IdHOMfNosBQbH2LfWKIgb6TzqYINLgABjOHP//izn3/TcpOUH6kZF7HzlSifvCaWZW+6o3YxElEY+4j6Ndzre5MP40HN2cjcL6P06QAngVRc4vzlsmwCuRGNZL3EW73gF46f7plH12HgyVk5tPVdwibzRpJHJLxD2oFbYv+EzKQPEWoWosXcKNPmVs1/GAY4DTBg82uLirjvHTng0MPHQ0ADEP+NAL8R4JcjgI7pxgggM+FJCPAFPGHMCQEcAF2CkImvK6nGhYNaYLiFzMGh4VhGFD0FFuz/KSzA/wuhwh8ooIZHQrL9hkBW426IvB/Pjwl/Bn6y2CHSsbSvXgAQTPHg/hexhSZcAy4AAA==","options":{"raw":{"language":"xml"}}},"url":"https://apigw.transalis.com/documents/xml"},"status":"OK (GZIP)","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:18:24 GMT"},{"key":"Content-Type","value":"application/xml","description":"","type":"text"},{"key":"Content-Length","value":"358"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkVoGg2zLPEEMuA="}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xml xml:lang=\"en-GB\" payloadID=\"1649935104920.bf11fb07-b036-46c5-9531-96b18bddff89@transalis.com\" timestamp=\"2022-04-14T11:18:24.920Z\">\n    <Response>\n        <Status xml:lang=\"en-GB\" code=\"200\" text=\"OK\"></Status>\n    </Response>\n</xml>"},{"id":"c75c2157-2842-4417-ba56-7127483738d3","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"<Order xmlns=\"urn:oasis:names:specification:ubl:schema:xsd:Order-2\" xmlns:cac=\"urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2\" xmlns:cbc=\"urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2\">\r\n    <cbc:UBLVersionID>2.1</cbc:UBLVersionID>\r\n    <cbc:CustomizationID>urn:www.cenbii.eu:transaction:biicoretrdm001:ver1.0</cbc:CustomizationID>\r\n    <cbc:ProfileID schemeAgencyID=\"BII\" schemeID=\"Profile\">urn:www.cenbii.eu:profile:BII01:ver1.0</cbc:ProfileID>\r\n    <cbc:ID>34</cbc:ID>\r\n    <cbc:IssueDate>2010-01-20</cbc:IssueDate>\r\n    <cbc:IssueTime>12:30:00</cbc:IssueTime>\r\n    <cbc:Note>Information text for the whole order</cbc:Note>\r\n    <cbc:DocumentCurrencyCode>SEK</cbc:DocumentCurrencyCode>\r\n    <cbc:AccountingCostCode>Project123</cbc:AccountingCostCode>\r\n    <cac:ValidityPeriod>\r\n        <cbc:EndDate>2010-01-31</cbc:EndDate>\r\n    </cac:ValidityPeriod>\r\n    <cac:QuotationDocumentReference>\r\n        <cbc:ID>QuoteID123</cbc:ID>\r\n    </cac:QuotationDocumentReference>\r\n    <cac:OrderDocumentReference>\r\n        <cbc:ID>RjectedOrderID123</cbc:ID>\r\n    </cac:OrderDocumentReference>\r\n    <cac:OriginatorDocumentReference>\r\n        <cbc:ID>MAFO</cbc:ID>\r\n    </cac:OriginatorDocumentReference>\r\n    <cac:AdditionalDocumentReference>\r\n        <cbc:ID>Doc1</cbc:ID>\r\n        <cbc:DocumentType>Timesheet</cbc:DocumentType>\r\n        <cac:Attachment>\r\n            <cac:ExternalReference>\r\n                <cbc:URI>http://www.suppliersite.eu/sheet001.html</cbc:URI>\r\n            </cac:ExternalReference>\r\n        </cac:Attachment>\r\n    </cac:AdditionalDocumentReference>\r\n    <cac:AdditionalDocumentReference>\r\n        <cbc:ID>Doc2</cbc:ID>\r\n        <cbc:DocumentType>Drawing</cbc:DocumentType>\r\n        <cac:Attachment>\r\n            <cbc:EmbeddedDocumentBinaryObject mimeCode=\"application/pdf\">UjBsR09EbGhjZ0dTQUxNQUFBUUNBRU1tQ1p0dU1GUXhEUzhi</cbc:EmbeddedDocumentBinaryObject>\r\n        </cac:Attachment>\r\n    </cac:AdditionalDocumentReference>\r\n    <cac:Contract>\r\n        <cbc:ID>34322</cbc:ID>\r\n        <cbc:ContractType>FrameworkAgreementID123</cbc:ContractType>\r\n    </cac:Contract>\r\n    <cac:BuyerCustomerParty>\r\n        <cac:Party>\r\n            <cbc:EndpointID schemeAgencyID=\"9\" schemeID=\"GLN\">7300072311115</cbc:EndpointID>\r\n            <cac:PartyIdentification>\r\n                <cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">7300070011115</cbc:ID>\r\n            </cac:PartyIdentification>\r\n            <cac:PartyIdentification>\r\n                <cbc:ID>PartyID123</cbc:ID>\r\n            </cac:PartyIdentification>\r\n            <cac:PartyName>\r\n                <cbc:Name>Johnssons byggvaror</cbc:Name>\r\n            </cac:PartyName>\r\n            <cac:PostalAddress>\r\n                <cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">1234567890123</cbc:ID>\r\n                <cbc:Postbox>PoBox123</cbc:Postbox>\r\n                <cbc:StreetName>Rådhusgatan</cbc:StreetName>\r\n                <cbc:AdditionalStreetName>2nd floor</cbc:AdditionalStreetName>\r\n                <cbc:BuildingNumber>5</cbc:BuildingNumber>\r\n                <cbc:Department>Purchasing department</cbc:Department>\r\n                <cbc:CityName>Stockholm</cbc:CityName>\r\n                <cbc:PostalZone>11000</cbc:PostalZone>\r\n                <cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n                <cac:Country>\r\n                    <cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n                </cac:Country>\r\n            </cac:PostalAddress>\r\n            <cac:PartyTaxScheme>\r\n                <cbc:RegistrationName>Herra Johnssons byggvaror AS</cbc:RegistrationName>\r\n                <cbc:CompanyID>SE1234567801</cbc:CompanyID>\r\n                <cac:RegistrationAddress>\r\n                    <cbc:CityName>Stockholm</cbc:CityName>\r\n                    <cac:Country>\r\n                        <cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n                    </cac:Country>\r\n                </cac:RegistrationAddress>\r\n                <cac:TaxScheme>\r\n                    <cbc:ID schemeID=\"UN/ECE 5153\" schemeAgencyID=\"6\">VAT</cbc:ID>\r\n                </cac:TaxScheme>\r\n            </cac:PartyTaxScheme>\r\n            <cac:PartyLegalEntity>\r\n                <cbc:RegistrationName>Johnssons Byggvaror AB</cbc:RegistrationName>\r\n                <cbc:CompanyID schemeID=\"SE:ORGNR\">5532331183</cbc:CompanyID>\r\n                <cac:RegistrationAddress>\r\n                    <cbc:CityName>Stockholm</cbc:CityName>\r\n                    <cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n                    <cac:Country>\r\n                        <cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n                    </cac:Country>\r\n                </cac:RegistrationAddress>\r\n            </cac:PartyLegalEntity>\r\n            <cac:Contact>\r\n                <cbc:Telephone>123456</cbc:Telephone>\r\n                <cbc:Telefax>123456</cbc:Telefax>\r\n                <cbc:ElectronicMail>pelle@johnsson.se</cbc:ElectronicMail>\r\n            </cac:Contact>\r\n            <cac:Person>\r\n                <cbc:FirstName>Pelle</cbc:FirstName>\r\n                <cbc:FamilyName>Svensson</cbc:FamilyName>\r\n                <cbc:MiddleName>X</cbc:MiddleName>\r\n                <cbc:JobTitle>Boss</cbc:JobTitle>\r\n            </cac:Person>\r\n        </cac:Party>\r\n        <cac:DeliveryContact>\r\n            <cbc:Name>Eva Johnsson</cbc:Name>\r\n            <cbc:Telephone>1234356</cbc:Telephone>\r\n            <cbc:Telefax>123455</cbc:Telefax>\r\n            <cbc:ElectronicMail>eva@johnsson.se</cbc:ElectronicMail>\r\n        </cac:DeliveryContact>\r\n    </cac:BuyerCustomerParty>\r\n    <cac:SellerSupplierParty>\r\n        <cac:Party>\r\n            <cbc:EndpointID schemeAgencyID=\"9\" schemeID=\"GLN\">7302347231111</cbc:EndpointID>\r\n            <cac:PartyIdentification>\r\n                <cbc:ID>SellerPartyID123</cbc:ID>\r\n            </cac:PartyIdentification>\r\n            <cac:PartyName>\r\n                <cbc:Name>Moderna Produkter AB</cbc:Name>\r\n            </cac:PartyName>\r\n            <cac:PostalAddress>\r\n                <cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">0987654321123</cbc:ID>\r\n                <cbc:Postbox>321</cbc:Postbox>\r\n                <cbc:StreetName>Kungsgatan</cbc:StreetName>\r\n                <cbc:AdditionalStreetName>suite12</cbc:AdditionalStreetName>\r\n                <cbc:BuildingNumber>22</cbc:BuildingNumber>\r\n                <cbc:Department>Sales department</cbc:Department>\r\n                <cbc:CityName>Stockholm</cbc:CityName>\r\n                <cbc:PostalZone>11000</cbc:PostalZone>\r\n                <cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n                <cac:Country>\r\n                    <cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n                </cac:Country>\r\n            </cac:PostalAddress>\r\n            <cac:PartyLegalEntity>\r\n                <cbc:RegistrationName>Moderna Produkter AB</cbc:RegistrationName>\r\n                <cbc:CompanyID schemeID=\"SE:ORGNR\">5532332283</cbc:CompanyID>\r\n                <cac:RegistrationAddress>\r\n                    <cbc:CityName>Stockholm</cbc:CityName>\r\n                    <cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n                    <cac:Country>\r\n                        <cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n                    </cac:Country>\r\n                </cac:RegistrationAddress>\r\n            </cac:PartyLegalEntity>\r\n            <cac:Contact>\r\n                <cbc:Telephone>34557</cbc:Telephone>\r\n                <cbc:Telefax>3456767</cbc:Telefax>\r\n                <cbc:ElectronicMail>lars@moderna.se</cbc:ElectronicMail>\r\n            </cac:Contact>\r\n            <cac:Person>\r\n                <cbc:FirstName>Lars</cbc:FirstName>\r\n                <cbc:FamilyName>Petersen</cbc:FamilyName>\r\n                <cbc:MiddleName>M</cbc:MiddleName>\r\n                <cbc:JobTitle>Sales manager</cbc:JobTitle>\r\n            </cac:Person>\r\n        </cac:Party>\r\n    </cac:SellerSupplierParty>\r\n    <cac:OriginatorCustomerParty>\r\n        <cac:Party>\r\n            <cac:PartyIdentification>\r\n                <cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">0987678321123</cbc:ID>\r\n            </cac:PartyIdentification>\r\n            <cac:PartyName>\r\n                <cbc:Name>Moderna Produkter AB</cbc:Name>\r\n            </cac:PartyName>\r\n            <cac:Contact>\r\n                <cbc:Telephone>346788</cbc:Telephone>\r\n                <cbc:Telefax>8567443</cbc:Telefax>\r\n                <cbc:ElectronicMail>sven@moderna.se</cbc:ElectronicMail>\r\n            </cac:Contact>\r\n            <cac:Person>\r\n                <cbc:FirstName>Sven</cbc:FirstName>\r\n                <cbc:FamilyName>Pereson</cbc:FamilyName>\r\n                <cbc:MiddleName>N</cbc:MiddleName>\r\n                <cbc:JobTitle>Stuffuser</cbc:JobTitle>\r\n            </cac:Person>\r\n        </cac:Party>\r\n    </cac:OriginatorCustomerParty>\r\n    <cac:Delivery>\r\n        <cac:DeliveryLocation>\r\n            <cac:Address>\r\n                <cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">1234567890123</cbc:ID>\r\n                <cbc:Postbox>123</cbc:Postbox>\r\n                <cbc:StreetName>Rådhusgatan</cbc:StreetName>\r\n                <cbc:AdditionalStreetName>2nd floor</cbc:AdditionalStreetName>\r\n                <cbc:BuildingNumber>5</cbc:BuildingNumber>\r\n                <cbc:Department>Purchasing department</cbc:Department>\r\n                <cbc:CityName>Stockholm</cbc:CityName>\r\n                <cbc:PostalZone>11000</cbc:PostalZone>\r\n                <cbc:CountrySubentity>RegionX</cbc:CountrySubentity>\r\n                <cac:Country>\r\n                    <cbc:IdentificationCode>SE</cbc:IdentificationCode>\r\n                </cac:Country>\r\n            </cac:Address>\r\n        </cac:DeliveryLocation>\r\n        <cac:RequestedDeliveryPeriod>\r\n            <cbc:StartDate>2010-02-10</cbc:StartDate>\r\n            <cbc:EndDate>2010-02-25</cbc:EndDate>\r\n        </cac:RequestedDeliveryPeriod>\r\n        <cac:DeliveryParty>\r\n            <cac:PartyIdentification>\r\n                <cbc:ID schemeAgencyID=\"9\" schemeID=\"GLN\">67654328394567</cbc:ID>\r\n            </cac:PartyIdentification>\r\n            <cac:PartyName>\r\n                <cbc:Name>Swedish trucking</cbc:Name>\r\n            </cac:PartyName>\r\n            <cac:Contact>\r\n                <cbc:Name>Per</cbc:Name>\r\n                <cbc:Telephone>987098709</cbc:Telephone>\r\n                <cbc:Telefax>34673435</cbc:Telefax>\r\n                <cbc:ElectronicMail>bill@svetruck.se</cbc:ElectronicMail>\r\n            </cac:Contact>\r\n        </cac:DeliveryParty>\r\n    </cac:Delivery>\r\n    <cac:DeliveryTerms>\r\n        <cbc:ID schemeAgencyID=\"6\" schemeID=\"IMCOTERM\">FOT</cbc:ID>\r\n        <cbc:SpecialTerms>CAD</cbc:SpecialTerms>\r\n        <cac:DeliveryLocation>\r\n            <cbc:ID>STO</cbc:ID>\r\n        </cac:DeliveryLocation>\r\n    </cac:DeliveryTerms>\r\n    <cac:AllowanceCharge>\r\n        <cbc:ChargeIndicator>true</cbc:ChargeIndicator>\r\n        <cbc:AllowanceChargeReason>Transport documents</cbc:AllowanceChargeReason>\r\n        <cbc:Amount currencyID=\"SEK\">100</cbc:Amount>\r\n    </cac:AllowanceCharge>\r\n    <cac:AllowanceCharge>\r\n        <cbc:ChargeIndicator>false</cbc:ChargeIndicator>\r\n        <cbc:AllowanceChargeReason>Total order value discount</cbc:AllowanceChargeReason>\r\n        <cbc:Amount currencyID=\"SEK\">100</cbc:Amount>\r\n    </cac:AllowanceCharge>\r\n    <cac:TaxTotal>\r\n        <cbc:TaxAmount currencyID=\"SEK\">100</cbc:TaxAmount>\r\n    </cac:TaxTotal>\r\n    <cac:AnticipatedMonetaryTotal>\r\n        <cbc:LineExtensionAmount currencyID=\"SEK\">6225</cbc:LineExtensionAmount>\r\n        <cbc:AllowanceTotalAmount currencyID=\"SEK\">100</cbc:AllowanceTotalAmount>\r\n        <cbc:ChargeTotalAmount currencyID=\"SEK\">100</cbc:ChargeTotalAmount>\r\n        <cbc:PayableAmount currencyID=\"SEK\">6225</cbc:PayableAmount>\r\n    </cac:AnticipatedMonetaryTotal>\r\n    <cac:OrderLine>\r\n        <cbc:Note>Freetext note on line 1</cbc:Note>\r\n        <cac:LineItem>\r\n            <cbc:ID>1</cbc:ID>\r\n            <cbc:Quantity unitCode=\"LTR\">120</cbc:Quantity>\r\n            <cbc:LineExtensionAmount currencyID=\"SEK\">6000</cbc:LineExtensionAmount>\r\n            <cbc:TotalTaxAmount currencyID=\"SEK\">10</cbc:TotalTaxAmount>\r\n            <cbc:PartialDeliveryIndicator>false</cbc:PartialDeliveryIndicator>\r\n            <cbc:AccountingCostCode>ProjectID123</cbc:AccountingCostCode>\r\n            <cac:Delivery>\r\n                <cac:RequestedDeliveryPeriod>\r\n                    <cbc:StartDate>2010-02-10</cbc:StartDate>\r\n                    <cbc:EndDate>2010-02-25</cbc:EndDate>\r\n                </cac:RequestedDeliveryPeriod>\r\n            </cac:Delivery>\r\n            <cac:OriginatorParty>\r\n                <cac:PartyIdentification>\r\n                    <cbc:ID schemeAgencyID=\"ZZZ\" schemeID=\"ZZZ\">EmployeeXXX</cbc:ID>\r\n                </cac:PartyIdentification>\r\n                <cac:PartyName>\r\n                    <cbc:Name>Josef K.</cbc:Name>\r\n                </cac:PartyName>\r\n            </cac:OriginatorParty>\r\n            <cac:Price>\r\n                <cbc:PriceAmount currencyID=\"SEK\">50</cbc:PriceAmount>\r\n                <cbc:BaseQuantity unitCode=\"LTR\">1</cbc:BaseQuantity>\r\n            </cac:Price>\r\n            <cac:Item>\r\n                <cbc:Description>Red paint</cbc:Description>\r\n                <cbc:Name>Falu Rödfärg</cbc:Name>\r\n                <cac:SellersItemIdentification>\r\n                    <cbc:ID>SItemNo001</cbc:ID>\r\n                </cac:SellersItemIdentification>\r\n                <cac:StandardItemIdentification>\r\n                    <cbc:ID schemeAgencyID=\"6\" schemeID=\"GTIN\">1234567890123</cbc:ID>\r\n                </cac:StandardItemIdentification>\r\n                <cac:AdditionalItemProperty>\r\n                    <cbc:Name>Paint type</cbc:Name>\r\n                    <cbc:Value>Acrylic</cbc:Value>\r\n                </cac:AdditionalItemProperty>\r\n                <cac:AdditionalItemProperty>\r\n                    <cbc:Name>Solvant</cbc:Name>\r\n                    <cbc:Value>Water</cbc:Value>\r\n                </cac:AdditionalItemProperty>\r\n            </cac:Item>\r\n        </cac:LineItem>\r\n    </cac:OrderLine>\r\n    <cac:OrderLine>\r\n        <cbc:Note>Freetext note on line 2</cbc:Note>\r\n        <cac:LineItem>\r\n            <cbc:ID>2</cbc:ID>\r\n            <cbc:Quantity unitCode=\"C62\">15</cbc:Quantity>\r\n            <cbc:LineExtensionAmount currencyID=\"SEK\">225</cbc:LineExtensionAmount>\r\n            <cbc:TotalTaxAmount currencyID=\"SEK\">10</cbc:TotalTaxAmount>\r\n            <cbc:PartialDeliveryIndicator>false</cbc:PartialDeliveryIndicator>\r\n            <cbc:AccountingCostCode>ProjectID123</cbc:AccountingCostCode>\r\n            <cac:Delivery>\r\n                <cac:RequestedDeliveryPeriod>\r\n                    <cbc:StartDate>2010-02-10</cbc:StartDate>\r\n                    <cbc:EndDate>2010-02-25</cbc:EndDate>\r\n                </cac:RequestedDeliveryPeriod>\r\n            </cac:Delivery>\r\n            <cac:OriginatorParty>\r\n                <cac:PartyIdentification>\r\n                    <cbc:ID schemeAgencyID=\"ZZZ\" schemeID=\"ZZZ\">EmployeeXXX</cbc:ID>\r\n                </cac:PartyIdentification>\r\n                <cac:PartyName>\r\n                    <cbc:Name>Josef K.</cbc:Name>\r\n                </cac:PartyName>\r\n            </cac:OriginatorParty>\r\n            <cac:Price>\r\n                <cbc:PriceAmount currencyID=\"SEK\">15</cbc:PriceAmount>\r\n                <cbc:BaseQuantity unitCode=\"C62\">1</cbc:BaseQuantity>\r\n            </cac:Price>\r\n            <cac:Item>\r\n                <cbc:Description>Very good pencils for red paint.</cbc:Description>\r\n                <cbc:Name>Pensel 20 mm</cbc:Name>\r\n                <cac:SellersItemIdentification>\r\n                    <cbc:ID>SItemNo011</cbc:ID>\r\n                </cac:SellersItemIdentification>\r\n                <cac:StandardItemIdentification>\r\n                    <cbc:ID schemeAgencyID=\"6\" schemeID=\"GTIN\">123452340123</cbc:ID>\r\n                </cac:StandardItemIdentification>\r\n                <cac:AdditionalItemProperty>\r\n                    <cbc:Name>Hair color</cbc:Name>\r\n                    <cbc:Value>Black</cbc:Value>\r\n                </cac:AdditionalItemProperty>\r\n                <cac:AdditionalItemProperty>\r\n                    <cbc:Name>Width</cbc:Name>\r\n                    <cbc:Value>20mm</cbc:Value>\r\n                </cac:AdditionalItemProperty>\r\n            </cac:Item>\r\n        </cac:LineItem>\r\n    </cac:OrderLine>\r\n</Orde","options":{"raw":{"language":"xml"}}},"url":"https://apigw.transalis.com/documents/xml"},"status":"Bad Request","code":400,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 14 Apr 2022 11:23:18 GMT"},{"key":"Content-Type","value":"application/xml","description":"","type":"text"},{"key":"Content-Length","value":"372"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-headers","value":"*"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"OPTIONS,POST,GET"},{"key":"Apigw-Requestid","value":"QkWVzhoMLPEEMNg="}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xml xml:lang=\"en-GB\" payloadID=\"1649935104920.bf11fb07-b036-46c5-9531-96b18bddff89@transalis.com\" timestamp=\"2022-04-14T11:18:24.920Z\">\n    <Response>\n        <Status xml:lang=\"en-GB\" code=\"400\" text=\"ERROR\">Invalid XML</Status>\n    </Response>\n</xml>"}],"_postman_id":"f2a99480-de79-4d60-a3cd-ed70eba64ea4"}],"id":"56d04e64-dde5-4e89-9f2f-c9822223ca37","description":"<p>The XML endpoint will receive any valid XML document.</p>\n<p>Please refer to <a href=\"https://www.w3.org/TR/xml/\">https://www.w3.org/TR/xml/</a> for the XML 1.0 specification.</p>\n<p>All responses from the XML endpoint are valid JSON.</p>\n","_postman_id":"56d04e64-dde5-4e89-9f2f-c9822223ca37","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}},{"name":"Post ANY","item":[{"name":"Post ANY file","id":"8f00d5cf-ee5b-46d8-8773-f283b368694b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"{{url}}/documents/any?token=","description":"<p>StartFragment</p>\n<p>A request to the ANY endpoint on the <strong>Production Environment</strong> of Transalis API.</p>\n","urlObject":{"path":["documents","any"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Basic auth access token (an alternative to using Authorization header)</p>\n","type":"text/plain"},"key":"token","value":""}],"variable":[]}},"response":[{"id":"d5831111-2911-44b8-8103-3f32c61f252b","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"Hello world!"},"url":{"raw":"https://apigw.transalis.com/documents/any","protocol":"https","host":["apigw","transalis","com"],"path":["documents","any"],"query":[{"key":"token","value":"{{token}}","description":"Basic auth access token (an alternative to using Authorization header)","type":"text","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 05 Jan 2023 15:51:42 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Apigw-Requestid","value":"eRrBxhC8LPEEJig="}],"cookie":[],"responseTime":null,"body":null},{"id":"1c9bd2f2-68e3-4462-bb1d-a3d91a205073","name":"201 Created (GZIP)","originalRequest":{"method":"POST","header":[{"key":"Content-Encoding","value":"gzip","type":"text"}],"body":{"mode":"raw","raw":"H4sIAAAAAAAAA/NIzcnJVyjPL8pJUQQAlRmFGwwAAAA="},"url":{"raw":"https://apigw.transalis.com/documents/any","protocol":"https","host":["apigw","transalis","com"],"path":["documents","any"],"query":[{"key":"token","value":"{{token}}","description":"Basic auth access token (an alternative to using Authorization header)","type":"text","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 05 Jan 2023 15:51:42 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Apigw-Requestid","value":"eRrBxhC8LPEEJig="}],"cookie":[],"responseTime":null,"body":null},{"id":"375fce32-a410-4d87-8688-ae8a266ded4e","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"https://apigw.transalis.com/documents/any"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Jan 2023 15:52:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"30"},{"key":"Connection","value":"keep-alive"},{"key":"Apigw-Requestid","value":"eRrLVikxrPEEJ9A="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Empty request body\"\n}"}],"_postman_id":"8f00d5cf-ee5b-46d8-8773-f283b368694b"}],"id":"53abd1f8-a4ff-4798-8c11-55a8201de190","description":"<p>The ANY endpoint will receive any plain-text format.</p>\n","_postman_id":"53abd1f8-a4ff-4798-8c11-55a8201de190","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}},{"name":"Reports API","item":[{"name":"Create Document Report","id":"84d49a7e-ffa0-402f-9af5-64f65ccfea4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"startDate\": \"2023-11-01T00:00:00.000Z\",\r\n    \"endDate\": \"2023-11-01T00:00:00.000Z\",\r\n    \"limit\": 200,\r\n    \"offset\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/documents/report/create","description":"<p>Creates an async document report based on the filters below</p>\n<p>Supported filters:</p>\n<ul>\n<li><p>startDate (required)</p>\n</li>\n<li><p>endDate (required)</p>\n</li>\n<li><p>limit (required) - max number of documents to return, by defualt is set to 20.</p>\n</li>\n<li><p>offset (required) - use this to get the next page, e.g. page 1 (offset 0, limit 200), page 2 (offset 200, limit 200), etc.</p>\n</li>\n<li><p>messageType (optional) - use this to filter on document message type, e.g. ORDERS = ORDERS, INVOICES = INVOIC, Shipping Notifications = DESADV, Shipping Labels = IFTMBC</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}},"urlObject":{"path":["documents","report","create"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"57ed83f8-4af4-4e2c-b3d1-fd87cf090768","name":"202","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"startDate\": \"2023-11-01T00:00:00.000Z\",\r\n    \"endDate\": \"2023-11-01T00:00:00.000Z\",\r\n    \"limit\": 200,\r\n    \"offset\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apigw.transalis.com/documents/report/create"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"reportId\": \"70718dc3-e0d9-4ba9-81bf-9dc95efb5155\"\n}"},{"id":"8f1e7080-cda1-4173-b51d-e78cd849bb7f","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"startDate\": \"2023-11-01T10:00:00.000Z\",\r\n    \"endDate\": \"2023-11-01T00:00:00.000Z\",\r\n    \"limit\": 200,\r\n    \"offset\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apigw.transalis.com/documents/report/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"ValidationError: startDate > endDate\"\n}"}],"_postman_id":"84d49a7e-ffa0-402f-9af5-64f65ccfea4d"},{"name":"Get Document Report Result (TEST)","id":"fa3a2be2-7e6b-41a8-bd16-553a522c74df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dev-transalis-api.s3.eu-west-2.amazonaws.com/reports/:reportId.json","description":"<p>This is an example of what the results look like  </p>\n<p>The URL is a S3 presigned URL which you can simply call GET without needing any authentication. It lasts up to 5 minutes before expiring (you will need to resend another report request).</p>\n<p>You can expect documents in the report to always be structured in this way, with <code>datafinal</code> containing the document base64 encoded.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}},"urlObject":{"protocol":"https","path":["reports",":reportId.json"],"host":["dev-transalis-api","s3","eu-west-2","amazonaws","com"],"query":[],"variable":[{"type":"any","value":"","key":"reportId"}]}},"response":[{"id":"c3a47068-6b93-4304-811a-25e3fbe93c76","name":"Get Document Report Result","originalRequest":{"method":"GET","header":[],"url":"https://dev-transalis-api.s3.eu-west-2.amazonaws.com/reports/{{reportId}}.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-252-26287-3\",\n    \"messagereference\": \"978-0-18-943604-3\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T08:02:44.073Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-82363-120-6\",\n    \"messagereference\": \"978-1-115-84808-4\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T06:23:13.490Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-4549-9730-6\",\n    \"messagereference\": \"978-1-4287-1046-7\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T05:24:35.537Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-86014-388-5\",\n    \"messagereference\": \"978-1-56466-737-3\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T05:06:00.274Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-304-40986-7\",\n    \"messagereference\": \"978-1-212-66089-3\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T23:01:18.684Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-945829-05-5\",\n    \"messagereference\": \"978-1-83344-763-7\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T22:20:42.408Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-150-50813-4\",\n    \"messagereference\": \"978-0-623-91641-4\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T20:42:11.891Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-0-89119-343-2\",\n    \"messagereference\": \"978-0-87230-390-4\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T15:12:31.298Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-0-242-06159-5\",\n    \"messagereference\": \"978-0-87049-448-2\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T14:05:10.717Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-82369-764-6\",\n    \"messagereference\": \"978-1-78348-505-5\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T13:10:08.669Z\"\n  }\n]"}],"_postman_id":"fa3a2be2-7e6b-41a8-bd16-553a522c74df"},{"name":"Get Document Report Result (PRODUCTION)","id":"d8349f60-a66c-4bfe-9b71-cfd4e2290ecb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://prod-transalis-api.s3.eu-west-2.amazonaws.com/reports/:reportId.json","description":"<p>This is an example of what the results look like  </p>\n<p>The URL is a S3 presigned URL which you can simply call GET without needing any authentication. It lasts up to 5 minutes before expiring (you will need to resend another report request).</p>\n<p>You can expect documents in the report to always be structured in this way, with <code>datafinal</code> containing the document base64 encoded.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}},"urlObject":{"protocol":"https","path":["reports",":reportId.json"],"host":["prod-transalis-api","s3","eu-west-2","amazonaws","com"],"query":[],"variable":[{"type":"any","value":"","key":"reportId"}]}},"response":[{"id":"6e7b7571-cbe3-4e24-a233-16cf930dce15","name":"Get Document Report Result","originalRequest":{"method":"GET","header":[],"url":"https://prod-transalis-api.s3.eu-west-2.amazonaws.com/reports/{{reportId}}.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-252-26287-3\",\n    \"messagereference\": \"978-0-18-943604-3\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T08:02:44.073Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-82363-120-6\",\n    \"messagereference\": \"978-1-115-84808-4\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T06:23:13.490Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-4549-9730-6\",\n    \"messagereference\": \"978-1-4287-1046-7\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T05:24:35.537Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-86014-388-5\",\n    \"messagereference\": \"978-1-56466-737-3\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-10T05:06:00.274Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-304-40986-7\",\n    \"messagereference\": \"978-1-212-66089-3\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T23:01:18.684Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-945829-05-5\",\n    \"messagereference\": \"978-1-83344-763-7\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T22:20:42.408Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-150-50813-4\",\n    \"messagereference\": \"978-0-623-91641-4\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T20:42:11.891Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-0-89119-343-2\",\n    \"messagereference\": \"978-0-87230-390-4\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T15:12:31.298Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-0-242-06159-5\",\n    \"messagereference\": \"978-0-87049-448-2\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T14:05:10.717Z\"\n  },\n  {\n    \"id\": \"b9e0f8c0-da5e-40d3-ab01-2ee6c533441a\",\n    \"sender\": \"demosender\",\n    \"receiver\": \"demoreceiver\",\n    \"documentreference\": \"978-1-82369-764-6\",\n    \"messagereference\": \"978-1-78348-505-5\",\n    \"messagetype\": \"ORDERS\",\n    \"datafinal\": \"ewogICAgICAib3JkZXJfaWQiOiAiMTIzNDUiLAogICAgICAiY3VzdG9tZXJfbmFtZSI6ICJKb2huIERvZSIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAicHJvZHVjdF9pZCI6ICJQMTAxIiwKICAgICAgICAgICJxdWFudGl0eSI6IDIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJwcm9kdWN0X2lkIjogIlAyMDIiLAogICAgICAgICAgInF1YW50aXR5IjogMwogICAgICAgIH0KICAgICAgXSwKICAgICAgInRvdGFsX2Ftb3VudCI6IDE1MC4wLAogICAgICAib3JkZXJfZGF0ZSI6ICIyMDIzLTA4LTExVDEwOjMwOjAwWiIKICAgIH0=\",\n    \"created_at\": \"2023-11-09T13:10:08.669Z\"\n  }\n]"}],"_postman_id":"d8349f60-a66c-4bfe-9b71-cfd4e2290ecb"},{"name":"Get Document Report","id":"1dc87584-b7f3-468d-a597-28f07d6b80e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/documents/report/:reportId","description":"<p>Get the status and result of document report from the report id.</p>\n<p>If status is <code>SUCCEEDED</code> and there's more than 0 results, you will receive a presigned s3 URL to an JSON object containing the document report results. This URL only lasts up to 5 minutes after the GET request was made.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}},"urlObject":{"path":["documents","report",":reportId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>a UUID of the document report</p>\n","type":"text/plain"},"type":"any","value":"","key":"reportId"}]}},"response":[{"id":"3749b58a-3e78-4387-92d1-3b1018dcbf8e","name":"PENDING","originalRequest":{"method":"GET","header":[],"url":"https://apigw.transalis.com/documents/report/6833c992-bd4d-49c2-844e-bfe989efaf96"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"reportId\": \"6833c992-bd4d-49c2-844e-bfe989efaf96\",\n    \"status\": \"QUEUED\"\n}"},{"id":"d8d20f26-6c7d-4180-9514-88c79282da95","name":"RUNNING","originalRequest":{"method":"GET","header":[],"url":"https://apigw.transalis.com/documents/report/6833c992-bd4d-49c2-844e-bfe989efaf96"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"reportId\": \"6833c992-bd4d-49c2-844e-bfe989efaf96\",\n    \"status\": \"RUNNING\"\n}"},{"id":"127ed6ee-f403-4ac0-8319-14a64d5b3f25","name":"SUCCEEDED with results","originalRequest":{"method":"GET","header":[],"url":"https://apigw.transalis.com/documents/report/6833c992-bd4d-49c2-844e-bfe989efaf96"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"reportId\": \"6833c992-bd4d-49c2-844e-bfe989efaf96\",\n    \"status\": \"SUCCEEDED\",\n    \"result\": {\n        \"total\": 200,\n        \"url\": \"https://prod-transalis-api.s3.eu-west-2.amazonaws.com/reports/6833c992-bd4d-49c2-844e-bfe989efaf96.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=ASIA6O5XXQYQZWUYNHEU%2F20231106%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20231106T142124Z&X-Amz-Expires=300&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFcaCWV1LXdlc3QtMiJHMEUCIQCu7NfLe1IxO3Tb48vGXdE8QyZR7lJpS44Hs3Y9LkZQIAIgUL%2BvPuLbK%2BqMfp44YAb2oP%2FrMsqBqwW3yxuOY0yDNKwqwgMIj%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARADGgw5OTQxMzMzNzg1OTMiDCoiHxgVfx5SOsKlESqWA0OwjdQVGnK3gk8xOn7GXMUaWr2R8OzpBR6KrAqoh28zkErmFFGWL25l6bR6DtKIFftuQDKUmdEuufEH0XSWdTSftmPL7AQTGlMPyKRbu5XSkoa1IgrK9kUHE7NDIuTuWBizHVB8c9g%2BpdkIpkD4jgL9tgQLybZSHPjNaOnYBHkY6wTnsfLINWtny%2BbIakkHw0fEnwEz5ZyTfsJP0XVXRdGKpDjeC%2FSfQ9cy%2FH%2FnsNCmpRil0pbt%2B2lFDDtEUfGchsDKXtvehOsWpEqUkqpjV9o521ua1BuEWwcosbzvQLi5AsJDIyCBhSRwriTzqIV6XdLXf6WjVidFuXXAqho%2BCPfM%2FQOTGzaqdIWWlGTI2Ours7wNUK1D1mxvk0tnnFB4E74%2BnIxRNZ7TCR2gX7hjUOtLyGrIUXTRI%2FM2jVXJQimYmNF8k8zfTewZSvPAzfmaiFm5RWxJ8tsuV8kFaxXfaSDOueuoR1d%2ByiFWn74zoQjpca9Ci80M%2BKxM13LzBGLV17CSMctEdRma0VAsYwswyOyjqgY6ngH0EgwSgXHvErisT8CZyQ5P6YKd3P53E179MpnSP9A5cL5Bmzr0uAnZTmX4DjByM2II6DFfdAmIhZFm%2FGyiN4rqv%2BCsAktg7tghD2wqnTBHpx6NFO4AR09qT4hSd5o2R8ZZf91992RGGwR8DLAGDKnLjotkOKiJ7aD0mNuGZMh2QXLBzjtGl%2FoPQPLM7KjSmCV%2BusBTFoZhBVGgzXxPTQ%3D%3D&X-Amz-Signature=8d9cc077669ed40f4d264232204ff888f3c52f4d912a322aaf211535b4d0f4cd&X-Amz-SignedHeaders=host&x-id=GetObject\",\n        \"exp\": 300\n    }\n}"},{"id":"8eacc142-6b35-43f9-acfd-9c92d1630593","name":"SUCCEEDED with no results","originalRequest":{"method":"GET","header":[],"url":"https://apigw.transalis.com/documents/report/6833c992-bd4d-49c2-844e-bfe989efaf96"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"reportId\": \"6833c992-bd4d-49c2-844e-bfe989efaf96\",\n    \"status\": \"SUCCEEDED\",\n    \"result\": {\n        \"total\": 0\n    }\n}"},{"id":"9cee47d5-42f9-4d74-95f9-dcd41ec320df","name":"FAILED","originalRequest":{"method":"GET","header":[],"url":"https://apigw.transalis.com/documents/report/6833c992-bd4d-49c2-844e-bfe989efaf96"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"reportId\": \"6833c992-bd4d-49c2-844e-bfe989efaf96\",\n    \"status\": \"FAILED\",\n    \"error\": \"Internal Server Error\"\n}"}],"_postman_id":"1dc87584-b7f3-468d-a597-28f07d6b80e5"}],"id":"5c4c1eb8-ed3a-433d-863a-a29662f5f527","description":"<p>The reports API is a virtual gateway from which you can search and retrieve your documents. You can only retreive documents sent to this gateway belonging to your organisation.</p>\n<p>Example document message types include, orders (ORDER), invoices (INVOIC), order responses (ORDRSP), despatches (DESADV), shipping labels (IFTMBC), etc.</p>\n<h2 id=\"recommended-usage\">Recommended usage</h2>\n<p>Below is a rough flowchart on how it's used.</p>\n<img src=\"https://content.pstmn.io/eaf1ecaa-4a6c-4de4-921c-50f20fbdca29/aW1hZ2UucG5n\" width=\"600\" height=\"543\" />\n\n<p>On receipt of the reportId, the status of the report is initially set PENDING. While PENDING you will need to check the status again until SUCCEEDED or FAILED. Once status is SUCCEEDED, the result is available from a pre-authenticated URL.</p>\n<p>To fetch the 'next' page, simply create another report with a new offset, repeat until there's no results left, i.e. total is 0.</p>\n","_postman_id":"5c4c1eb8-ed3a-433d-863a-a29662f5f527","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}}],"id":"f8dd5611-f24e-4cea-9125-700d5fd995da","description":"<p>The Documents Service provides endpoints for users to upload any EDI type in four main formats:</p>\n<ul>\n<li><p>JSON</p>\n</li>\n<li><p>XML</p>\n</li>\n<li><p>cXML</p>\n</li>\n<li><p>any (plain-text)</p>\n</li>\n</ul>\n<h3 id=\"gzip-compression-support\">Gzip compression support</h3>\n<p>You can only send up to 10MB payload in the request body to any of the POST endpoints. To send more than 10MB, please compress the request body payload with gzip and set <code>Content-Encoding: gzip</code> in the request headers.</p>\n","_postman_id":"f8dd5611-f24e-4cea-9125-700d5fd995da","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","id":"7e688fdc-5f62-4ab0-b1cb-a3447f686f96","name":"Transalis API v1.3.1","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"refreshTokenUrl","value":"<refresh-token-url>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"clientId","value":"{{clientId}}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"tokenName","value":"<token-name>"},{"key":"scope","value":"<scope>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"useBrowser","value":"<use-browser>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]}},"event":[{"listen":"prerequest","script":{"id":"4f450647-7dbc-4369-b394-0ce48b4a8d74","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"a6bf7733-6b05-46ee-be53-6c8ddbefd482","type":"text/javascript","packages":{},"exec":[""]}}]}