{"info":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","description":"<html><head></head><body><p>Welcome to the REST API documentation for the Mister-James CRM software. Our API allows you to seamlessly integrate the powerful features of our CRM solution into your own applications.</p>\n<p>This API is designed to provide developers with maximum flexibility and efficiency. Whether you're building custom integrations, synchronizing data, or generating advanced reports, our API is built to meet your needs. In this documentation, you'll find detailed information about the available endpoints, authentication options, and best practices for a successful implementation.</p>\n<p>The Mister James RESTful API is available at the following endpoint:</p>\n<p><a href=\"https://hello.mister-james.com/_utalic_release/api/v1\">https://hello.mister-james.com/_utalic_release/api/v1</a></p>\n<h3 id=\"oauth-20-authentication\">OAuth 2.0 Authentication</h3>\n<p>To use the <strong>Mister James</strong> API, we provide OAuth 2.0 for secure authentication. Our implementation supports both PKCE (Proof Key for Code Exchange) and non-PKCE authentication, with two grant types: <code>authorization_code</code> and <code>token</code>.</p>\n<p>We <strong>highly recommend</strong> using the <code>authorization_code</code> grant type with PKCE for enhanced security, especially for single-page applications (SPA). If you prefer using the <code>token</code> grant type, this must be explicitly enabled in your app settings.</p>\n<h4 id=\"steps-to-authenticate\">Steps to Authenticate</h4>\n<ol>\n<li><p><strong>Register a Client App</strong>:<br> Before using OAuth, you must first create a client app within your <strong>Mister James</strong> account. This can be done in the <strong>API</strong> section under <strong>Settings</strong>. Here you will receive:</p>\n<ul>\n<li><p><code>client_id</code>: A unique identifier for your app.</p>\n</li>\n<li><p><code>client_secret</code>: A secret key used for server-side authentication (required for non-PKCE flow).</p>\n</li>\n<li><p><code>redirect_uri</code>: The URI(s) where the authorization server will redirect after the authorization process is completed.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Authorization Endpoint</strong>:<br> The endpoint for initiating the OAuth flow is:<br> <code>https://hello.mister-james.com/_utalic_release/oauth/v2.0/authorize</code></p>\n</li>\n<li><p><strong>Token Endpoint</strong>:<br> After authorization, exchange the authorization code or refresh token using this token endpoint:<br> <code>https://hello.mister-james.com/_utalic_release/oauth/v2.0/token</code><br> This endpoint supports both <code>authorization_code</code> and <code>refresh_token</code> grant types.</p>\n</li>\n</ol>\n<h4 id=\"pkce-flow-recommended-for-spas\">PKCE Flow (Recommended for SPAs)</h4>\n<p>PKCE is a security enhancement to OAuth 2.0, designed for public clients (such as single-page applications) that cannot securely store a <code>client_secret</code>.</p>\n<ol>\n<li><p>Generate a <code>code_verifier</code> (a cryptographically random string).</p>\n</li>\n<li><p>Derive a <code>code_challenge</code> from the <code>code_verifier</code> using SHA-256.</p>\n</li>\n<li><p>Send the <code>code_challenge</code> with your authorization request to the <code>/authorize</code> endpoint.</p>\n</li>\n<li><p>After the user authorizes the app, you will receive an authorization code.</p>\n</li>\n<li><p>Exchange this code at the <code>/token</code> endpoint, including the <code>code_verifier</code>, to obtain access tokens.</p>\n</li>\n</ol>\n<h4 id=\"grant-types\">Grant Types</h4>\n<ul>\n<li><p><strong>Authorization Code Grant</strong> (<code>grant_type=authorization_code</code>):<br>  This is the most secure method and is recommended for server-side and public clients. It supports PKCE and provides an authorization code that is exchanged for an access token.</p>\n</li>\n<li><p><strong>Token Grant</strong> (<code>grant_type=token</code>):<br>  This method provides an access token directly without an intermediate authorization code. It is less secure and should be used only when necessary. This grant type must be enabled explicitly in your app settings.</p>\n</li>\n</ul>\n<h4 id=\"redirect-uri\">Redirect URI</h4>\n<p>When registering your app, make sure to define the <code>redirect_uri</code>, where users will be redirected after completing the authorization. This URI must match exactly with the one provided in the authorization request to avoid errors.</p>\n<h3 id=\"oauth-20-authorization-and-token-endpoints\">OAuth 2.0 Authorization and Token Endpoints</h3>\n<h4 id=\"authorization-endpoint\">Authorization Endpoint</h4>\n<p>The Authorization Endpoint is where the user is authenticated and grants permission to the application. This is the starting point of the OAuth flow, where the user is redirected to provide consent.</p>\n<p><strong>URL:</strong><br><code>https://hello.mister-james.com/_utalic_release/oauth/v2.0/authorize</code></p>\n<p><strong>Required Query Parameters:</strong></p>\n<ul>\n<li><p><strong>response_type</strong>:<br>  Must be set to <code>code</code> to initiate the Authorization Code Flow.<br>  <em>Example</em>: <code>response_type=code</code></p>\n</li>\n<li><p><strong>client_id</strong>:<br>  This is the unique identifier of your application, which you received when registering the client app in the Mister James settings.<br>  <em>Example</em>: <code>client_id=YOUR_CLIENT_ID</code></p>\n</li>\n<li><p><strong>redirect_uri</strong>:<br>  The URL where the user will be redirected after successful authorization. This must be preconfigured in the app settings.<br>  <em>Example</em>: <code>redirect_uri=https://your-app.com/callback</code></p>\n</li>\n<li><p><strong>scope</strong> (optional):<br>  Defines the permissions your application is requesting. Scopes control the resources the user grants access to.<br>  <em>Example</em>: <code>scope=read write</code></p>\n</li>\n<li><p><strong>state</strong> (optional):<br>  A random value to prevent CSRF attacks. You will receive this value in the response and can use it to verify the legitimacy of the request.<br>  <em>Example</em>: <code>state=random_state_value</code></p>\n</li>\n<li><p><strong>code_challenge and code_challenge_method</strong> (for PKCE, optional but recommended):<br>  If you're using PKCE, send the <code>code_challenge</code> (derived from a <code>code_verifier</code>) along with the hash algorithm (usually <code>S256</code>).<br>  <em>Example</em>: <code>code_challenge=CODE_CHALLENGE</code> and <code>code_challenge_method=S256</code></p>\n</li>\n</ul>\n<p><strong>Example of a complete URL:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://hello.mister-james.com/_utalic_release/oauth/v2.0/authorize?response_type=code&amp;client_id=YOUR_CLIENT_ID&amp;redirect_uri=https://your-app.com/callback&amp;scope=read write&amp;state=random_state_value&amp;code_challenge=CODE_CHALLENGE&amp;code_challenge_method=S256\n\n</code></pre><p>After the user completes the authorization process, they will be redirected to the specified <code>redirect_uri</code>. The server will append the <strong>Authorization Code</strong> as a query parameter <code>code</code> to the URL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://your-app.com/callback?code=AUTHORIZATION_CODE&amp;state=random_state_value\n\n</code></pre><h4 id=\"token-endpoint\">Token Endpoint</h4>\n<p>After receiving the Authorization Code, you use the <strong>Token Endpoint</strong> to exchange it for an Access Token and a Refresh Token. This token allows your application to make requests to protected resources on behalf of the user.</p>\n<p><strong>URL:</strong><br><code>https://hello.mister-james.com/_utalic_release/oauth/v2.0/token</code></p>\n<p><strong>Request Type:</strong><br><code>POST</code></p>\n<p><strong>Required POST Parameters:</strong></p>\n<ul>\n<li><p><strong>grant_type</strong>:<br>  Must be set to <code>authorization_code</code> to complete the Authorization Code Flow. Alternatively, use <code>refresh_token</code> to renew an expired token.<br>  <em>Example</em>: <code>grant_type=authorization_code</code></p>\n</li>\n<li><p><strong>code</strong>:<br>  This is the Authorization Code that you received from the Authorization Endpoint.<br>  <em>Example</em>: <code>code=AUTHORIZATION_CODE</code></p>\n</li>\n<li><p><strong>redirect_uri</strong>:<br>  This must be the same URL that was used in the Authorization Endpoint.<br>  <em>Example</em>: <code>redirect_uri=https://your-app.com/callback</code></p>\n</li>\n<li><p><strong>client_id</strong>:<br>  Your application's unique Client ID.<br>  <em>Example</em>: <code>client_id=YOUR_CLIENT_ID</code></p>\n</li>\n<li><p><strong>client_secret</strong> (optional for PKCE, required without PKCE):<br>  The secret key you received when registering the app. If you're using PKCE, this field is not needed.<br>  <em>Example</em>: <code>client_secret=YOUR_CLIENT_SECRET</code></p>\n</li>\n<li><p><strong>code_verifier</strong> (required only for PKCE):<br>  The code that was originally generated and sent with the <code>code_challenge</code>.<br>  <em>Example</em>: <code>code_verifier=CODE_VERIFIER</code></p>\n</li>\n</ul>\n<p><strong>Example POST Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /_utalic_release/oauth/v2.0/token HTTP/1.1\nHost: hello.mister-james.com\nContent-Type: application/x-www-form-urlencoded\ngrant_type=authorization_code&amp;code=AUTHORIZATION_CODE&amp;redirect_uri=https://your-app.com/callback&amp;client_id=YOUR_CLIENT_ID&amp;client_secret=YOUR_CLIENT_SECRET\n\n</code></pre><p><strong>Token Endpoint Response:</strong></p>\n<p>The Token Endpoint returns a JSON response containing the Access Token and additional information like its expiration time and a Refresh Token:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"ACCESS_TOKEN\",\n  \"token_type\": \"Bearer\",\n  \"expires_in\": 3600,\n  \"refresh_token\": \"REFRESH_TOKEN\",\n  \"scope\": \"read write\"\n}\n\n</code></pre>\n<ul>\n<li><p><strong>access_token</strong>:<br>  The token your application will use to make requests to protected API endpoints on behalf of the user.</p>\n</li>\n<li><p><strong>token_type</strong>:<br>  Usually <code>Bearer</code>, meaning you will send the Access Token in the HTTP headers of your API requests as <code>Authorization: Bearer ACCESS_TOKEN</code>.</p>\n</li>\n<li><p><strong>expires_in</strong>:<br>  The lifetime of the Access Token in seconds. In this example, <code>3600</code> means the token is valid for one hour.</p>\n</li>\n<li><p><strong>refresh_token</strong>:<br>  This token can be used to request a new Access Token without having the user go through the authorization process again.</p>\n</li>\n</ul>\n<h4 id=\"renewing-the-token-with-the-refresh-token\">Renewing the Token with the Refresh Token</h4>\n<p>Once the Access Token expires, you can call the <strong>Token Endpoint</strong> again, using the <strong>Refresh Token</strong> to obtain a new Access Token. This allows the user to stay authenticated without re-authorizing.</p>\n<p><strong>Example POST Request with Refresh Token:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /_utalic_release/oauth/v2.0/token HTTP/1.1\nHost: hello.mister-james.com\nContent-Type: application/x-www-form-urlencoded\ngrant_type=refresh_token&amp;refresh_token=REFRESH_TOKEN&amp;client_id=YOUR_CLIENT_ID&amp;client_secret=YOUR_CLIENT_SECRET\n\n</code></pre><p><strong>Server Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"NEW_ACCESS_TOKEN\",\n  \"token_type\": \"Bearer\",\n  \"expires_in\": 3600,\n  \"refresh_token\": \"NEW_REFRESH_TOKEN\",\n  \"scope\": \"read write\"\n}\n\n</code></pre>\n<p>The new Access Token can then be used to make requests to the API, and the new Refresh Token can be stored for future token renewals.</p>\n<h3 id=\"revoking-tokens\">Revoking Tokens</h3>\n<p>If you need to invalidate a user's <code>access_token</code> or <code>refresh_token</code>, you can use the <strong>Revoke Endpoint</strong>. This is useful if a user logs out or if you want to manually revoke a token for security reasons. Once revoked, the token can no longer be used to access protected resources.</p>\n<p><strong>URL:</strong><br><code>https://hello.mister-james.com/_utalic_release/oauth/v2.0/revoke</code></p>\n<p><strong>Request Type:</strong><br><code>POST</code></p>\n<p><strong>Required POST Parameters:</strong></p>\n<ul>\n<li><p><strong>token</strong>:<br>  The token you wish to revoke. This can be either an <code>access_token</code> or a <code>refresh_token</code>.<br>  <em>Example</em>: <code>token=ACCESS_TOKEN</code> or <code>token=REFRESH_TOKEN</code></p>\n</li>\n<li><p><strong>client_id</strong>:<br>  Your application's unique Client ID.<br>  <em>Example</em>: <code>client_id=YOUR_CLIENT_ID</code></p>\n</li>\n<li><p><strong>client_secret</strong>:<br>  The secret key associated with your Client ID.<br>  <em>Example</em>: <code>client_secret=YOUR_CLIENT_SECRET</code></p>\n</li>\n</ul>\n<p><strong>Example POST Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /_utalic_release/oauth/v2.0/revoke HTTP/1.1\nHost: hello.mister-james.com\nContent-Type: application/x-www-form-urlencoded\ntoken=ACCESS_TOKEN_OR_REFRESH_TOKEN&amp;client_id=YOUR_CLIENT_ID&amp;client_secret=YOUR_CLIENT_SECRET\n\n</code></pre><p>Once the token is successfully revoked, it can no longer be used to access the API or refresh any tokens. If you are revoking an <code>access_token</code>, the user will need to re-authenticate to obtain a new one.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"33242434","collectionId":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","publishedId":"2sAXqqePBH","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-09-18T15:31:21.000Z"},"item":[{"name":"contacts","item":[{"name":"GET contacts","id":"743caf1d-b818-419f-8c0a-a39fd7f6f201","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts","description":"<p>Get all contacts</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contacts"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"1196f617-041d-4cd6-aba2-844ffa19fc68","name":"GET contacts","originalRequest":{"method":"GET","header":[],"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1190"},{"key":"etag","value":"W/\"4a6-C3p7kaVE2QHqhDLGeMq+LjuSDr0\""},{"key":"date","value":"Tue, 24 Sep 2024 14:17:46 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": 0,\n    \"pageSize\": 500,\n    \"isLastPage\": true,\n    \"data\": [\n        {\n            \"created_at\": \"datetime\",\n            \"contacts_id\": \"string\",\n            \"company\": \"string\",\n            \"firstname\": \"string\",\n            \"lastname\": \"string\",\n            \"address\": \"string\",\n            \"zip\": \"string\",\n            \"city\": \"string\",\n            \"country\": \"string\",\n            \"primary_email\": \"string\",\n            \"address2\": \"string\",\n            \"ghost_id\": \"string\",\n            \"last_action\": \"datetime\",\n            \"primary_phone\": \"string\",\n            \"title\": \"string\",\n            \"state\": \"string\",\n            \"iban\": \"string\",\n            \"bic\": \"string\",\n            \"bank_name\": \"string\",\n            \"account_owner\": \"string\",\n            \"avatar\": \"string\",\n            \"primary_url\": \"string\",\n            \"tags\": \"string\",\n            \"newfield\": \"string\",\n            \"ghost_conversion\": \"datetime\",\n            \"origin_campaign\": \"string\",\n            \"size\": \"string\",\n            \"description\": \"string\",\n            \"type\": \"string\",\n            \"associated_company\": \"string\",\n            \"founded\": \"string\",\n            \"linkedin_profile\": \"string\",\n            \"date_of_birth\": \"date\",\n            \"industry\": \"string\",\n            \"batch_id\": \"string\",\n            \"origin_media\": \"string\",\n            \"outbound_email\": \"integer\",\n            \"outbound_postal\": \"integer\",\n            \"primary_mobile\": \"string\",\n            \"job\": \"string\",\n            \"origin_source\": \"string\",\n            \"outbound_phone\": \"integer\",\n            \"facebook_profile\": \"string\",\n            \"instagram_profile\": \"string\",\n            \"x_profile\": \"string\",\n            \"thirdparty_id\": \"string\",\n            \"thirdparty_platform\": \"string\",\n            \"geo_lat\": \"string\",\n            \"geo_lng\": \"string\",\n            \"vat_id\": \"string\",\n            \"customer_number\": \"string\",\n            \"uuid\": \"string\"\n        }\n    ]\n}"}],"_postman_id":"743caf1d-b818-419f-8c0a-a39fd7f6f201"},{"name":"GET contacts with UUID","id":"7533455b-9cc8-4aac-8432-1205e27ada1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts/{{uuid}}","description":"<p>Get specific contacts by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contacts","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"369eb78e-0160-4934-8784-093ee1e88f9c","name":"GET contacts with UUID","originalRequest":{"method":"GET","header":[],"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts/{{uuid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"2125"},{"key":"etag","value":"W/\"84d-7pjhdX0ZZLmT/pORoLPt0793OrQ\""},{"key":"date","value":"Tue, 24 Sep 2024 14:25:44 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"created_at\": \"datetime\",\n        \"contacts_id\": \"string\",\n        \"company\": \"string\",\n        \"firstname\": \"string\",\n        \"lastname\": \"string\",\n        \"address\": \"string\",\n        \"zip\": \"string\",\n        \"city\": \"string\",\n        \"country\": \"string\",\n        \"primary_email\": \"string\",\n        \"address2\": \"string\",\n        \"ghost_id\": \"string\",\n        \"last_action\": \"datetime\",\n        \"primary_phone\": \"string\",\n        \"title\": \"string\",\n        \"state\": \"string\",\n        \"iban\": \"string\",\n        \"bic\": \"string\",\n        \"bank_name\": \"string\",\n        \"account_owner\": \"string\",\n        \"avatar\": \"string\",\n        \"primary_url\": \"string\",\n        \"tags\": \"string\",\n        \"newfield\": \"string\",\n        \"ghost_conversion\": \"datetime\",\n        \"origin_campaign\": \"string\",\n        \"size\": \"string\",\n        \"description\": \"string\",\n        \"type\": \"string\",\n        \"associated_company\": \"string\",\n        \"founded\": \"string\",\n        \"linkedin_profile\": \"string\",\n        \"date_of_birth\": \"date\",\n        \"industry\": \"string\",\n        \"batch_id\": \"string\",\n        \"origin_media\": \"string\",\n        \"outbound_email\": \"integer\",\n        \"outbound_postal\": \"integer\",\n        \"primary_mobile\": \"string\",\n        \"job\": \"string\",\n        \"origin_source\": \"string\",\n        \"outbound_phone\": \"integer\",\n        \"facebook_profile\": \"string\",\n        \"instagram_profile\": \"string\",\n        \"x_profile\": \"string\",\n        \"thirdparty_id\": \"string\",\n        \"thirdparty_platform\": \"string\",\n        \"geo_lat\": \"string\",\n        \"geo_lng\": \"string\",\n        \"vat_id\": \"string\",\n        \"customer_number\": \"string\",\n        \"uuid\": \"string\",\n        \"contact_activities\": [\n            {\n                \"created_at\": \"datetime\",\n                \"contacts_uuid\": \"string\",\n                \"activities_uuid\": \"string\",\n                \"uuid\": \"string\"\n            }\n        ],\n        \"feed\": [\n            {\n                \"created_at\": \"datetime\",\n                \"feed_date\": \"datetime\",\n                \"title\": \"string\",\n                \"description\": \"string\",\n                \"content_data\": \"string\",\n                \"feedtype\": \"string\",\n                \"author\": \"string\",\n                \"detailtype\": \"string\",\n                \"contacts_uuid\": \"string\",\n                \"pipeline_cards_uuid\": \"string\",\n                \"external_uuid\": \"string\",\n                \"is_outbound\": \"integer\",\n                \"calls_uuid\": \"string\",\n                \"emailings_uuid\": \"string\",\n                \"user_id\": \"integer\",\n                \"uuid\": \"string\"\n            }\n        ],\n        \"phone_numbers\": [\n            {\n                \"created_at\": \"datetime\",\n                \"purpose\": \"string\",\n                \"number\": \"string\",\n                \"contacts_uuid\": \"string\",\n                \"country\": \"string\",\n                \"uuid\": \"string\"\n            }\n        ],\n        \"contact_segments\": [\n            {\n                \"created_at\": \"datetime\",\n                \"segments_uuid\": \"string\",\n                \"contacts_uuid\": \"string\",\n                \"uuid\": \"string\"\n            }\n        ],\n        \"email_addresses\": [\n            {\n                \"created_at\": \"datetime\",\n                \"purpose\": \"string\",\n                \"email\": \"string\",\n                \"contacts_uuid\": \"string\",\n                \"uuid\": \"string\"\n            }\n        ],\n        \"web_urls\": [\n            {\n                \"created_at\": \"datetime\",\n                \"purpose\": \"string\",\n                \"url\": \"string\",\n                \"contacts_uuid\": \"string\",\n                \"uuid\": \"string\"\n            }\n        ]\n    }\n}"}],"_postman_id":"7533455b-9cc8-4aac-8432-1205e27ada1a"},{"name":"POST contacts","id":"59825e45-9c74-46eb-bba2-4e7870b20803","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"created_at\": \"datetime\",\n    \"contacts_id\": \"string\",\n    \"company\": \"string\",\n    \"firstname\": \"string\",\n    \"lastname\": \"string\",\n    \"address\": \"string\",\n    \"zip\": \"string\",\n    \"city\": \"string\",\n    \"country\": \"string\",\n    \"primary_email\": \"string\",\n    \"address2\": \"string\",\n    \"ghost_id\": \"string\",\n    \"last_action\": \"datetime\",\n    \"primary_phone\": \"string\",\n    \"title\": \"string\",\n    \"state\": \"string\",\n    \"iban\": \"string\",\n    \"bic\": \"string\",\n    \"bank_name\": \"string\",\n    \"account_owner\": \"string\",\n    \"avatar\": \"string\",\n    \"primary_url\": \"string\",\n    \"tags\": \"string\",\n    \"newfield\": \"string\",\n    \"ghost_conversion\": \"datetime\",\n    \"origin_campaign\": \"string\",\n    \"size\": \"string\",\n    \"description\": \"string\",\n    \"type\": \"string\",\n    \"associated_company\": \"string\",\n    \"founded\": \"string\",\n    \"linkedin_profile\": \"string\",\n    \"date_of_birth\": \"date\",\n    \"industry\": \"string\",\n    \"batch_id\": \"string\",\n    \"origin_media\": \"string\",\n    \"outbound_email\": \"integer\",\n    \"outbound_postal\": \"integer\",\n    \"primary_mobile\": \"string\",\n    \"job\": \"string\",\n    \"origin_source\": \"string\",\n    \"outbound_phone\": \"integer\",\n    \"facebook_profile\": \"string\",\n    \"instagram_profile\": \"string\",\n    \"x_profile\": \"string\",\n    \"thirdparty_id\": \"string\",\n    \"thirdparty_platform\": \"string\",\n    \"geo_lat\": \"string\",\n    \"geo_lng\": \"string\",\n    \"vat_id\": \"string\",\n    \"customer_number\": \"string\",\n    \"uuid\": \"string\"\n}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts","description":"<p>Create new contacts</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contacts"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"a4350281-f9d6-4e7d-a21b-d27680729abe","name":"POST contacts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"company\": \"Example Inc.\", \"primary_email\": \"primary@example.com\", \"primary_phone\": \"01234567\", \"address\": \"11 Example Road\", \"city\": \"Neverywhere\", \"zip\": \"CA-711221\", \"country\": \"USA\"}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1083"},{"key":"etag","value":"W/\"43b-Q5FIDqAsY/SiufqvOmo+2iqKITc\""},{"key":"date","value":"Wed, 18 Sep 2024 14:10:19 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record created successfully\",\n    \"data\": {\n        \"id\": 62,\n        \"created_at\": \"2024-09-18T14:10:19.960Z\",\n        \"contacts_id\": null,\n        \"company\": \"Example Inc.\",\n        \"firstname\": null,\n        \"lastname\": null,\n        \"address\": \"11 Example Road\",\n        \"zip\": \"CA-711221\",\n        \"city\": \"Neverywhere\",\n        \"country\": \"USA\",\n        \"primary_email\": \"primary@example.com\",\n        \"address2\": null,\n        \"ghost_id\": null,\n        \"last_action\": null,\n        \"$uuid\": \"bc440f13-c4ee-4f64-b159-84d10eec58dd\",\n        \"primary_phone\": \"01234567\",\n        \"title\": null,\n        \"state\": null,\n        \"iban\": null,\n        \"bic\": null,\n        \"bank_name\": null,\n        \"account_owner\": null,\n        \"avatar\": null,\n        \"primary_url\": null,\n        \"tags\": null,\n        \"newfield\": null,\n        \"ghost_conversion\": null,\n        \"origin_campaign\": null,\n        \"size\": null,\n        \"description\": null,\n        \"type\": null,\n        \"associated_company\": null,\n        \"founded\": null,\n        \"linkedin_profile\": null,\n        \"date_of_birth\": null,\n        \"industry\": null,\n        \"batch_id\": null,\n        \"origin_media\": null,\n        \"outbound_email\": 0,\n        \"outbound_postal\": 0,\n        \"primary_mobile\": null,\n        \"job\": null,\n        \"origin_source\": null,\n        \"outbound_phone\": null,\n        \"facebook_profile\": null,\n        \"instagram_profile\": null,\n        \"x_profile\": null,\n        \"thirdparty_id\": null,\n        \"thirdparty_platform\": null,\n        \"geo_lat\": null,\n        \"geo_lng\": null,\n        \"vat_id\": null,\n        \"customer_number\": null\n    }\n}"}],"_postman_id":"59825e45-9c74-46eb-bba2-4e7870b20803"},{"name":"PUT contacts with UUID","id":"50f876ef-8456-42d6-9c3d-936dcaa1b624","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"outbound_email\": 0, \"outbound_postal\": 0, \"date_of_birth\": \"YYYY-MM-DD\", \"last_action\": \"timestamp\", \"created_at\": \"now()\", \"primary_email\": \"string\", \"primary_phone\": \"string\", \"address\": \"string\", \"city\": \"string\", \"zip\": \"string\", \"country\": \"string\", \"$uuid\": \"generated UUID\"}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts/{{uuid}}","description":"<p>Update existing contacts by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contacts","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"91d0a439-755f-4cd5-8add-5cf8a46e0ded","name":"PUT contacts with UUID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"company\": \"New Example Inc.\"}","options":{"raw":{"language":"json"}}},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts/bc440f13-c4ee-4f64-b159-84d10eec58dd"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"41"},{"key":"etag","value":"W/\"29-hvE45RA5maf98wA3JJX7Gnlcvx4\""},{"key":"date","value":"Wed, 18 Sep 2024 14:13:37 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record updated successfully\"\n}"}],"_postman_id":"50f876ef-8456-42d6-9c3d-936dcaa1b624"},{"name":"DELETE contacts with UUID","id":"7eb21753-51b8-4f2a-9d98-18a236016efd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts/{{uuid}}","description":"<p>Delete contacts by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contacts","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"46091f27-d667-4592-9761-ce9e94e0c157","name":"DELETE contacts with UUID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contacts/bc440f13-c4ee-4f64-b159-84d10eec58dd"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"30"},{"key":"etag","value":"W/\"1e-AEuiJmu5BwTG8l6l2ONcbwZ5ITA\""},{"key":"date","value":"Wed, 18 Sep 2024 14:33:19 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"7eb21753-51b8-4f2a-9d98-18a236016efd"}],"id":"7f1bb487-2443-44b7-81c8-049420594b17","description":"<p>The <code>contacts</code> resource represents the contact database of Mister James. It includes all contacts stored within Mister James and should not be confused with the <code>deals</code> resource, which pertains to sales opportunities. Contacts in this context refer to individuals or organizations, while <code>deals</code> are linked to sales transactions or opportunities.</p>\n","_postman_id":"7f1bb487-2443-44b7-81c8-049420594b17","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"costs","item":[{"name":"GET costs","id":"83aea7b5-685d-4a1e-b9a3-8f141f846e04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/costs","description":"<p>Get all costs</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","costs"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"b8adc00b-b49e-4e93-8d29-fb53e549c9e8","name":"GET costs","originalRequest":{"method":"GET","header":[],"url":"https://hello.mister-james.com/_utalic_release/api/v1/costs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1597"},{"key":"etag","value":"W/\"63d-fcaGbxIgshkwS/AnzFGt7AUjGvM\""},{"key":"date","value":"Wed, 18 Sep 2024 14:59:14 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": 0,\n    \"pageSize\": 500,\n    \"isLastPage\": true,\n    \"data\": [\n        {\n            \"created_at\": \"datetime\",\n            \"contacts_uuid\": \"string\",\n            \"pipelines_uuid\": \"string\",\n            \"delivery_date\": \"date\",\n            \"date\": \"date\",\n            \"document_number\": \"string\",\n            \"contracts_uuid\": \"string\",\n            \"document_file\": \"string\",\n            \"title\": \"string\",\n            \"campaigns\": \"string\",\n            \"category\": \"string\",\n            \"preview_file\": \"string\",\n            \"thirdparty_id\": \"string\",\n            \"thirdparty_platform\": \"string\",\n            \"company\": \"string\",\n            \"firstname\": \"string\",\n            \"lastname\": \"string\",\n            \"address\": \"string\",\n            \"address2\": \"string\",\n            \"zip\": \"string\",\n            \"city\": \"string\",\n            \"country\": \"string\",\n            \"state\": \"string\",\n            \"amount_gross\": \"numeric\",\n            \"vat_height\": \"numeric\",\n            \"uuid\": \"string\"\n        }\n    ]\n}"}],"_postman_id":"83aea7b5-685d-4a1e-b9a3-8f141f846e04"},{"name":"GET costs with UUID","id":"43fbac92-e7a3-4c9f-aea1-3daba9ca6755","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/costs/{{uuid}}","description":"<p>Get specific costs by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","costs","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"beeaa26e-2e80-4366-b4bc-461d4bbb3442","name":"GET costs with UUID","originalRequest":{"method":"GET","header":[],"url":"https://hello.mister-james.com/_utalic_release/api/v1/costs/d3f1bb4a-2096-43de-8e08-8fb3c60c7e17"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1696"},{"key":"etag","value":"W/\"6a0-AW0L9hdXzFnfkc8C8n0Pdghj57A\""},{"key":"date","value":"Tue, 24 Sep 2024 15:19:41 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"created_at\": \"datetime\",\n        \"contacts_uuid\": \"string\",\n        \"pipelines_uuid\": \"string\",\n        \"delivery_date\": \"date\",\n        \"date\": \"date\",\n        \"document_number\": \"string\",\n        \"contracts_uuid\": \"string\",\n        \"document_file\": \"string\",\n        \"title\": \"string\",\n        \"campaigns\": \"string\",\n        \"category\": \"string\",\n        \"preview_file\": \"string\",\n        \"thirdparty_id\": \"string\",\n        \"thirdparty_platform\": \"string\",\n        \"company\": \"string\",\n        \"firstname\": \"string\",\n        \"lastname\": \"string\",\n        \"address\": \"string\",\n        \"address2\": \"string\",\n        \"zip\": \"string\",\n        \"city\": \"string\",\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"amount_gross\": \"numeric\",\n        \"vat_height\": \"numeric\",\n        \"uuid\": \"string\",\n        \"contact\": {\n            \"created_at\": \"datetime\",\n            \"contacts_id\": \"string\",\n            \"company\": \"string\",\n            \"firstname\": \"string\",\n            \"lastname\": \"string\",\n            \"address\": \"string\",\n            \"zip\": \"string\",\n            \"city\": \"string\",\n            \"country\": \"string\",\n            \"primary_email\": \"string\",\n            \"address2\": \"string\",\n            \"ghost_id\": \"string\",\n            \"last_action\": \"datetime\",\n            \"primary_phone\": \"string\",\n            \"title\": \"string\",\n            \"state\": \"string\",\n            \"iban\": \"string\",\n            \"bic\": \"string\",\n            \"bank_name\": \"string\",\n            \"account_owner\": \"string\",\n            \"avatar\": \"string\",\n            \"primary_url\": \"string\",\n            \"tags\": \"string\",\n            \"ghost_conversion\": \"datetime\",\n            \"origin_campaign\": \"string\",\n            \"size\": \"string\",\n            \"description\": \"string\",\n            \"type\": \"string\",\n            \"associated_company\": \"string\",\n            \"founded\": \"string\",\n            \"linkedin_profile\": \"string\",\n            \"date_of_birth\": \"date\",\n            \"industry\": \"string\",\n            \"batch_id\": \"string\",\n            \"origin_media\": \"string\",\n            \"outbound_email\": \"integer\",\n            \"outbound_postal\": \"integer\",\n            \"primary_mobile\": \"string\",\n            \"job\": \"string\",\n            \"origin_source\": \"string\",\n            \"outbound_phone\": \"integer\",\n            \"facebook_profile\": \"string\",\n            \"instagram_profile\": \"string\",\n            \"x_profile\": \"string\",\n            \"thirdparty_id\": \"string\",\n            \"thirdparty_platform\": \"string\",\n            \"geo_lat\": \"string\",\n            \"geo_lng\": \"string\",\n            \"vat_id\": \"string\",\n            \"customer_number\": \"string\",\n            \"uuid\": \"string\"\n        }\n    }\n}"}],"_postman_id":"43fbac92-e7a3-4c9f-aea1-3daba9ca6755"},{"name":"POST costs","id":"da74aa97-04e1-47f3-8af3-48e7b2895ac0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"created_at\": \"datetime\",\n    \"contacts_uuid\": \"string\",\n    \"pipelines_uuid\": \"string\",\n    \"delivery_date\": \"date\",\n    \"date\": \"date\",\n    \"document_number\": \"string\",\n    \"contracts_uuid\": \"string\",\n    \"document_file\": \"string\",\n    \"title\": \"string\",\n    \"campaigns\": \"string\",\n    \"category\": \"string\",\n    \"preview_file\": \"string\",\n    \"thirdparty_id\": \"string\",\n    \"thirdparty_platform\": \"string\",\n    \"company\": \"string\",\n    \"firstname\": \"string\",\n    \"lastname\": \"string\",\n    \"address\": \"string\",\n    \"address2\": \"string\",\n    \"zip\": \"string\",\n    \"city\": \"string\",\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"amount_gross\": \"numeric\",\n    \"vat_height\": \"numeric\",\n    \"uuid\": \"string\",\n    \"contact\": {\n        \"created_at\": \"datetime\",\n        \"contacts_id\": \"string\",\n        \"company\": \"string\",\n        \"firstname\": \"string\",\n        \"lastname\": \"string\",\n        \"address\": \"string\",\n        \"zip\": \"string\",\n        \"city\": \"string\",\n        \"country\": \"string\",\n        \"primary_email\": \"string\",\n        \"address2\": \"string\",\n        \"ghost_id\": \"string\",\n        \"last_action\": \"datetime\",\n        \"primary_phone\": \"string\",\n        \"title\": \"string\",\n        \"state\": \"string\",\n        \"iban\": \"string\",\n        \"bic\": \"string\",\n        \"bank_name\": \"string\",\n        \"account_owner\": \"string\",\n        \"avatar\": \"string\",\n        \"primary_url\": \"string\",\n        \"tags\": \"string\",\n        \"ghost_conversion\": \"datetime\",\n        \"origin_campaign\": \"string\",\n        \"size\": \"string\",\n        \"description\": \"string\",\n        \"type\": \"string\",\n        \"associated_company\": \"string\",\n        \"founded\": \"string\",\n        \"linkedin_profile\": \"string\",\n        \"date_of_birth\": \"date\",\n        \"industry\": \"string\",\n        \"batch_id\": \"string\",\n        \"origin_media\": \"string\",\n        \"outbound_email\": \"integer\",\n        \"outbound_postal\": \"integer\",\n        \"primary_mobile\": \"string\",\n        \"job\": \"string\",\n        \"origin_source\": \"string\",\n        \"outbound_phone\": \"integer\",\n        \"facebook_profile\": \"string\",\n        \"instagram_profile\": \"string\",\n        \"x_profile\": \"string\",\n        \"thirdparty_id\": \"string\",\n        \"thirdparty_platform\": \"string\",\n        \"geo_lat\": \"string\",\n        \"geo_lng\": \"string\",\n        \"vat_id\": \"string\",\n        \"customer_number\": \"string\",\n        \"uuid\": \"string\"\n    }\n}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/costs","description":"<p>Create new costs</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","costs"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"da74aa97-04e1-47f3-8af3-48e7b2895ac0"},{"name":"PUT costs with UUID","id":"51ec58c1-d2de-40fe-a1fa-a2da2988cb89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"date\": \"YYYY-MM-DD\", \"delivery_date\": \"YYYY-MM-DD\", \"amount_gross\": 0.0, \"vat_height\": 0.0, \"title\": \"string\", \"company\": \"string\", \"firstname\": \"string\", \"lastname\": \"string\", \"$uuid\": \"generated UUID\"}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/costs/{{uuid}}","description":"<p>Update existing costs by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","costs","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"51ec58c1-d2de-40fe-a1fa-a2da2988cb89"},{"name":"DELETE costs with UUID","id":"8f51cd82-f0d1-4e5b-9f76-bad6e13ff031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/costs/{{uuid}}","description":"<p>Delete costs by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","costs","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f51cd82-f0d1-4e5b-9f76-bad6e13ff031"}],"id":"691619ed-140c-495b-b234-ebaa49e574f0","description":"<p>The <code>costs</code> resource represents the expenses within the Mister James database. It encompasses all financial outlays recorded in Mister James, including various expenditures incurred during business operations.</p>\n","_postman_id":"691619ed-140c-495b-b234-ebaa49e574f0","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"campaigns","item":[{"name":"GET campaigns","id":"f2838071-effe-4cb2-8b60-5de40f4a66ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns","description":"<p>Get all campaigns</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","campaigns"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"0d6986b0-9af4-450b-9acd-185c02c51ab2","name":"GET campaigns","originalRequest":{"method":"GET","header":[],"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"190"},{"key":"etag","value":"W/\"be-8CcjAqDngnc2oNuaiFPpwpvIMmE\""},{"key":"date","value":"Tue, 24 Sep 2024 15:20:54 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": 0,\n    \"pageSize\": 500,\n    \"isLastPage\": true,\n    \"data\": [\n        {\n            \"created_at\": \"datetime\",\n            \"title\": \"string\",\n            \"slug\": \"string\",\n            \"weekly_goal\": \"numeric\",\n            \"archived\": \"numeric\",\n            \"muted\": \"numeric\",\n            \"uuid\": \"string\"\n        }\n    ]\n}"}],"_postman_id":"f2838071-effe-4cb2-8b60-5de40f4a66ea"},{"name":"GET campaigns with UUID","id":"88d3ce46-7086-4709-b0af-2011a88f904a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns/{{uuid}}","description":"<p>Get specific campaigns by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","campaigns","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"5c7fd48f-95fc-4f88-ac0f-45ce2d350ea0","name":"GET campaigns with UUID","originalRequest":{"method":"GET","header":[],"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns/36c7cec3-eda8-48f7-8d82-bfb1f1ca0ef8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"295"},{"key":"etag","value":"W/\"127-WrZJ8g6iawKjfAK8t6uzPqSfmqE\""},{"key":"date","value":"Tue, 24 Sep 2024 15:21:19 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"created_at\": \"datetime\",\n        \"title\": \"string\",\n        \"slug\": \"string\",\n        \"weekly_goal\": \"numeric\",\n        \"archived\": \"numeric\",\n        \"muted\": \"numeric\",\n        \"uuid\": \"string\",\n        \"stages\": [\n            {\n                \"created_at\": \"datetime\",\n                \"sorting\": \"numeric\",\n                \"caption\": \"string\",\n                \"icon\": \"string\",\n                \"color\": \"string\",\n                \"pipelines_id\": \"string\",\n                \"uuid\": \"string\"\n            }\n        ]\n    }\n}"}],"_postman_id":"88d3ce46-7086-4709-b0af-2011a88f904a"},{"name":"POST campaigns","id":"041767ee-4a4d-47bb-a21e-8febf59635bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"created_at\": \"datetime\",\n    \"title\": \"string\",\n    \"slug\": \"string\",\n    \"weekly_goal\": \"numeric\",\n    \"archived\": \"numeric\",\n    \"muted\": \"numeric\",\n    \"uuid\": \"string\"\n}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns","description":"<p>Create new campaign</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","campaigns"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"a3a76a44-68ef-4ab9-a2a0-caccb1deed52","name":"POST campaigns","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"title\": \"Spring Campaign\"}","options":{"raw":{"language":"json"}}},"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"230"},{"key":"etag","value":"W/\"e6-qmaAwc5X/cslH18wiRBZsSgeaBU\""},{"key":"date","value":"Wed, 18 Sep 2024 15:20:45 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record created successfully\",\n    \"data\": {\n        \"id\": 3,\n        \"$uuid\": \"9b978276-9395-45b0-a1bd-22d695215fec\",\n        \"created_at\": \"2024-09-18T15:20:45.578Z\",\n        \"title\": \"Spring Campaign\",\n        \"slug\": null,\n        \"weekly_goal\": null,\n        \"archived\": null,\n        \"muted\": null\n    }\n}"}],"_postman_id":"041767ee-4a4d-47bb-a21e-8febf59635bd"},{"name":"PUT campaigns with UUID","id":"edff3118-013f-461a-b307-721427cba608","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns/{{uuid}}","description":"<p>Update existing campaign by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","campaigns","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"70522b22-e2af-4f58-baf9-5ecfab7c4de2","name":"PUT campaigns with UUID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"title\": \"Summer Campaign\"}","options":{"raw":{"language":"json"}}},"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns/9b978276-9395-45b0-a1bd-22d695215fec"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"41"},{"key":"etag","value":"W/\"29-hvE45RA5maf98wA3JJX7Gnlcvx4\""},{"key":"date","value":"Wed, 18 Sep 2024 15:21:40 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record updated successfully\"\n}"}],"_postman_id":"edff3118-013f-461a-b307-721427cba608"},{"name":"DELETE campaigns with UUID","id":"664949cc-d8b4-42b0-8c03-044bd5659a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/campaigns/{{uuid}}","description":"<p>Delete campaigns by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","campaigns","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"664949cc-d8b4-42b0-8c03-044bd5659a34"}],"id":"a4002146-4be6-4856-b33c-5d9ff0b58c57","_postman_id":"a4002146-4be6-4856-b33c-5d9ff0b58c57","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"deals","item":[{"name":"GET deals","id":"6912214d-a8c1-413d-95cf-28d5dc414f67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/deals","description":"<p>Get all deals</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","deals"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"f454c206-6b13-4043-ad42-d03ce044538e","name":"GET deals","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://hello.mister-james.com/_utalic_release/api/v1/deals?doc_mode=1","protocol":"https","host":["hello","mister-james","com"],"path":["_utalic_release","api","v1","deals"],"query":[{"key":"doc_mode","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"478"},{"key":"etag","value":"W/\"1de-3/VFd6z/MoKuXy8AdG/PNf7U5Yo\""},{"key":"date","value":"Tue, 24 Sep 2024 15:22:44 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": 0,\n    \"pageSize\": 500,\n    \"isLastPage\": true,\n    \"data\": [\n        {\n            \"created_at\": \"datetime\",\n            \"title\": \"string\",\n            \"expected_revenue\": \"numeric\",\n            \"realized_revenue\": \"numeric\",\n            \"color_tags\": \"string\",\n            \"sorting\": \"integer\",\n            \"description\": \"string\",\n            \"expected_closing\": \"date\",\n            \"chance\": \"string\",\n            \"status\": \"numeric\",\n            \"next_followup\": \"date\",\n            \"last_featured\": \"date\",\n            \"closing_date\": \"date\",\n            \"user_id\": \"integer\",\n            \"batch_id\": \"string\",\n            \"campaigns_uuid\": \"string\",\n            \"deals_uuid\": \"string\",\n            \"contacts_uuid\": \"string\",\n            \"uuid\": \"string\"\n        }\n    ]\n}"}],"_postman_id":"6912214d-a8c1-413d-95cf-28d5dc414f67"},{"name":"GET deals with UUID","id":"0e063111-b0e2-47d8-8132-ce9b2bb8a43f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/deals/{{uuid}}","description":"<p>Get specific deals by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","deals","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[{"id":"bcf557ef-a7cb-4a23-8df0-7137feb84638","name":"GET deals with UUID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/deals/{{uuid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"access-control-allow-headers","value":"Content-Type, Authorization, X-Full-Refresh"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1562"},{"key":"etag","value":"W/\"61a-byMJLBSFVJ6r9dETqKDWXwFerg4\""},{"key":"date","value":"Tue, 24 Sep 2024 15:23:20 GMT"},{"key":"connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"created_at\": \"datetime\",\n        \"title\": \"string\",\n        \"expected_revenue\": \"numeric\",\n        \"realized_revenue\": \"numeric\",\n        \"color_tags\": \"string\",\n        \"sorting\": \"integer\",\n        \"description\": \"string\",\n        \"expected_closing\": \"date\",\n        \"chance\": \"string\",\n        \"status\": \"numeric\",\n        \"next_followup\": \"date\",\n        \"last_featured\": \"date\",\n        \"closing_date\": \"date\",\n        \"user_id\": \"integer\",\n        \"batch_id\": \"string\",\n        \"campaigns_uuid\": \"string\",\n        \"deals_uuid\": \"string\",\n        \"contacts_uuid\": \"string\",\n        \"uuid\": \"string\",\n        \"contact\": {\n            \"created_at\": \"datetime\",\n            \"contacts_id\": \"string\",\n            \"company\": \"string\",\n            \"firstname\": \"string\",\n            \"lastname\": \"string\",\n            \"address\": \"string\",\n            \"zip\": \"string\",\n            \"city\": \"string\",\n            \"country\": \"string\",\n            \"primary_email\": \"string\",\n            \"address2\": \"string\",\n            \"ghost_id\": \"string\",\n            \"last_action\": \"datetime\",\n            \"primary_phone\": \"string\",\n            \"title\": \"string\",\n            \"state\": \"string\",\n            \"iban\": \"string\",\n            \"bic\": \"string\",\n            \"bank_name\": \"string\",\n            \"account_owner\": \"string\",\n            \"avatar\": \"string\",\n            \"primary_url\": \"string\",\n            \"tags\": \"string\",\n            \"ghost_conversion\": \"datetime\",\n            \"origin_campaign\": \"string\",\n            \"size\": \"string\",\n            \"description\": \"string\",\n            \"type\": \"string\",\n            \"associated_company\": \"string\",\n            \"founded\": \"string\",\n            \"linkedin_profile\": \"string\",\n            \"date_of_birth\": \"date\",\n            \"industry\": \"string\",\n            \"batch_id\": \"string\",\n            \"origin_media\": \"string\",\n            \"outbound_email\": \"integer\",\n            \"outbound_postal\": \"integer\",\n            \"primary_mobile\": \"string\",\n            \"job\": \"string\",\n            \"origin_source\": \"string\",\n            \"outbound_phone\": \"integer\",\n            \"facebook_profile\": \"string\",\n            \"instagram_profile\": \"string\",\n            \"x_profile\": \"string\",\n            \"thirdparty_id\": \"string\",\n            \"thirdparty_platform\": \"string\",\n            \"geo_lat\": \"string\",\n            \"geo_lng\": \"string\",\n            \"vat_id\": \"string\",\n            \"customer_number\": \"string\",\n            \"uuid\": \"string\"\n        }\n    }\n}"}],"_postman_id":"0e063111-b0e2-47d8-8132-ce9b2bb8a43f"},{"name":"POST deals","id":"3255c5d0-ac79-487d-8e9e-667ec374cac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/deals","description":"<p>Create new deals</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","deals"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3255c5d0-ac79-487d-8e9e-667ec374cac4"},{"name":"PUT deals with UUID","id":"2b173550-140c-4600-a24a-c34e9064d1aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/deals/{{uuid}}","description":"<p>Update existing deals by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","deals","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b173550-140c-4600-a24a-c34e9064d1aa"},{"name":"DELETE deals with UUID","id":"de0661ac-be17-4fec-9ec0-9af7a22a4d1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/deals/{{uuid}}","description":"<p>Delete deals by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","deals","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"de0661ac-be17-4fec-9ec0-9af7a22a4d1a"}],"id":"d7e7708d-d806-4173-8239-88ba311e6434","_postman_id":"d7e7708d-d806-4173-8239-88ba311e6434","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"activities","item":[{"name":"GET activities","id":"2420cf21-ae03-49e4-a6b6-146f98d96092","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/activities","description":"<p>Get all activities</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","activities"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2420cf21-ae03-49e4-a6b6-146f98d96092"},{"name":"GET activities with UUID","id":"62e6fd95-4954-4a6f-8dab-94a02950c909","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/activities/{{uuid}}","description":"<p>Get specific activities by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","activities","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"62e6fd95-4954-4a6f-8dab-94a02950c909"},{"name":"POST activities","id":"2e22580f-f8c3-460f-8af8-9c6aefd46be8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/activities","description":"<p>Create new activities</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","activities"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e22580f-f8c3-460f-8af8-9c6aefd46be8"},{"name":"PUT activities with UUID","id":"69f976e8-1067-4a0b-a3db-d4ee4eb739d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/activities/{{uuid}}","description":"<p>Update existing activities by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","activities","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"69f976e8-1067-4a0b-a3db-d4ee4eb739d1"},{"name":"DELETE activities with UUID","id":"561ed6c8-9680-4d2b-8c63-b7e1a95415c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/activities/{{uuid}}","description":"<p>Delete activities by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","activities","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"561ed6c8-9680-4d2b-8c63-b7e1a95415c7"}],"id":"4e66c8bb-0a64-4da6-8921-98b79f3f50c5","_postman_id":"4e66c8bb-0a64-4da6-8921-98b79f3f50c5","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"calendar","item":[{"name":"GET calendar","id":"60aa9518-fca8-4e16-8e5c-7a2322d6844a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/calendar","description":"<p>Get all calendar</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","calendar"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"60aa9518-fca8-4e16-8e5c-7a2322d6844a"},{"name":"GET calendar with UUID","id":"8e17e76c-5126-465e-864d-c9c32e442201","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/calendar/{{uuid}}","description":"<p>Get specific calendar by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","calendar","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e17e76c-5126-465e-864d-c9c32e442201"},{"name":"POST calendar","id":"4a219595-cc7d-46f0-a7f1-cebd8ea5f2c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/calendar","description":"<p>Create new calendar</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","calendar"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a219595-cc7d-46f0-a7f1-cebd8ea5f2c2"},{"name":"PUT calendar with UUID","id":"f400561f-95ce-4dcd-832d-119c39ca17e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/calendar/{{uuid}}","description":"<p>Update existing calendar by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","calendar","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f400561f-95ce-4dcd-832d-119c39ca17e8"},{"name":"DELETE calendar with UUID","id":"e37b713a-bfdf-4c4d-8cf1-62bceb83f943","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/calendar/{{uuid}}","description":"<p>Delete calendar by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","calendar","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e37b713a-bfdf-4c4d-8cf1-62bceb83f943"}],"id":"5a7a5974-8b7c-4074-b2ec-c5d4c25e73eb","_postman_id":"5a7a5974-8b7c-4074-b2ec-c5d4c25e73eb","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"followups","item":[{"name":"GET followups","id":"cb29a266-8d82-4c07-9374-89f925e58876","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/followups","description":"<p>Get all followups</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","followups"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb29a266-8d82-4c07-9374-89f925e58876"},{"name":"GET followups with UUID","id":"31a6697a-73da-439d-8dbd-fcb50e75a427","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/followups/{{uuid}}","description":"<p>Get specific followups by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","followups","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"31a6697a-73da-439d-8dbd-fcb50e75a427"},{"name":"POST followups","id":"ff5b6f53-9d88-43fa-a066-77c125546eae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/followups","description":"<p>Create new followups</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","followups"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff5b6f53-9d88-43fa-a066-77c125546eae"},{"name":"PUT followups with UUID","id":"016ea617-f4f4-4cc7-b01f-5f584f6d816f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/followups/{{uuid}}","description":"<p>Update existing followups by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","followups","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"016ea617-f4f4-4cc7-b01f-5f584f6d816f"},{"name":"DELETE followups with UUID","id":"f8067735-b681-47ce-bd5b-8496f3848fa1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/followups/{{uuid}}","description":"<p>Delete followups by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","followups","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8067735-b681-47ce-bd5b-8496f3848fa1"}],"id":"a0562746-5067-4f65-aba1-2719db399194","_postman_id":"a0562746-5067-4f65-aba1-2719db399194","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"invoices","item":[{"name":"GET invoices","id":"5216a2a7-4ab9-4136-8185-41ed4b95354c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/invoices","description":"<p>Get all invoices</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","invoices"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5216a2a7-4ab9-4136-8185-41ed4b95354c"},{"name":"GET invoices with UUID","id":"b1927fa6-5045-4629-9fcc-8afb78c6266f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/invoices/{{uuid}}","description":"<p>Get specific invoices by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","invoices","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1927fa6-5045-4629-9fcc-8afb78c6266f"},{"name":"POST invoices","id":"1ad213a8-82b3-4ee7-8ec0-d4870b809eb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/invoices","description":"<p>Create new invoices</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","invoices"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ad213a8-82b3-4ee7-8ec0-d4870b809eb6"},{"name":"PUT invoices with UUID","id":"d99dbadf-9180-43bc-996f-b85b6425a4b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/invoices/{{uuid}}","description":"<p>Update existing invoices by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","invoices","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d99dbadf-9180-43bc-996f-b85b6425a4b3"},{"name":"DELETE invoices with UUID","id":"73d5a047-889a-429f-984e-85ed03924647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/invoices/{{uuid}}","description":"<p>Delete invoices by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","invoices","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"73d5a047-889a-429f-984e-85ed03924647"}],"id":"a1baac6c-ff70-4212-bee9-98bbd45fa5b3","_postman_id":"a1baac6c-ff70-4212-bee9-98bbd45fa5b3","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"offers","item":[{"name":"GET offers","id":"1d5df026-c2e3-40b8-aaa5-3aa056a46728","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/offers","description":"<p>Get all offers</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","offers"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d5df026-c2e3-40b8-aaa5-3aa056a46728"},{"name":"GET offers with UUID","id":"5a49cd23-4eea-4ff8-ab8f-ef833c553280","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/offers/{{uuid}}","description":"<p>Get specific offers by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","offers","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a49cd23-4eea-4ff8-ab8f-ef833c553280"},{"name":"POST offers","id":"eac34816-12b4-49b5-a088-dbe754841f01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/offers","description":"<p>Create new offers</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","offers"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"eac34816-12b4-49b5-a088-dbe754841f01"},{"name":"PUT offers with UUID","id":"e7a36187-e37b-44af-b5f7-d902f6fb1f5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/offers/{{uuid}}","description":"<p>Update existing offers by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","offers","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7a36187-e37b-44af-b5f7-d902f6fb1f5b"},{"name":"DELETE offers with UUID","id":"7bfc6e9b-dbd2-4913-b7c2-88de4c9bfaa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/offers/{{uuid}}","description":"<p>Delete offers by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","offers","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bfc6e9b-dbd2-4913-b7c2-88de4c9bfaa2"}],"id":"df78e904-08ad-4b6a-8d36-028ae8205543","_postman_id":"df78e904-08ad-4b6a-8d36-028ae8205543","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"order_responses","item":[{"name":"GET order_responses","id":"10801cc0-97db-4470-9791-265ba21606a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/order_responses","description":"<p>Get all order_responses</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","order_responses"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"10801cc0-97db-4470-9791-265ba21606a2"},{"name":"GET order_responses with UUID","id":"eb82f74d-b904-4fce-8f35-eaef9d47adee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/order_responses/{{uuid}}","description":"<p>Get specific order_responses by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","order_responses","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb82f74d-b904-4fce-8f35-eaef9d47adee"},{"name":"POST order_responses","id":"e4129243-6a66-4562-8964-59109806d6b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/order_responses","description":"<p>Create new order_responses</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","order_responses"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4129243-6a66-4562-8964-59109806d6b0"},{"name":"PUT order_responses with UUID","id":"ea2fd2f9-585b-42cf-886c-b63f17a9cdd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/order_responses/{{uuid}}","description":"<p>Update existing order_responses by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","order_responses","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea2fd2f9-585b-42cf-886c-b63f17a9cdd1"},{"name":"DELETE order_responses with UUID","id":"023c2179-3ae4-4801-adc8-b7b7559a2590","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/order_responses/{{uuid}}","description":"<p>Delete order_responses by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","order_responses","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"023c2179-3ae4-4801-adc8-b7b7559a2590"}],"id":"e6397f03-519f-442e-8567-e925f6e11a17","_postman_id":"e6397f03-519f-442e-8567-e925f6e11a17","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"packing_lists","item":[{"name":"GET packing_lists","id":"10565dd4-d7bc-4e8b-8e7f-2949d4f502aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/packing_lists","description":"<p>Get all packing_lists</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","packing_lists"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"10565dd4-d7bc-4e8b-8e7f-2949d4f502aa"},{"name":"GET packing_lists with UUID","id":"cc1e46b6-3cc9-4e9c-be61-79240228d8cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/packing_lists/{{uuid}}","description":"<p>Get specific packing_lists by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","packing_lists","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc1e46b6-3cc9-4e9c-be61-79240228d8cc"},{"name":"POST packing_lists","id":"669eabb4-bb90-442d-a454-4d7d985dacdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/packing_lists","description":"<p>Create new packing_lists</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","packing_lists"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"669eabb4-bb90-442d-a454-4d7d985dacdf"},{"name":"PUT packing_lists with UUID","id":"eae89fe8-6c48-430f-8fec-dafe7d11c457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/packing_lists/{{uuid}}","description":"<p>Update existing packing_lists by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","packing_lists","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"eae89fe8-6c48-430f-8fec-dafe7d11c457"},{"name":"DELETE packing_lists with UUID","id":"3f04ce58-5a77-4d82-a11f-7108bd438b24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/packing_lists/{{uuid}}","description":"<p>Delete packing_lists by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","packing_lists","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3f04ce58-5a77-4d82-a11f-7108bd438b24"}],"id":"d6979e8b-281f-4c61-aaa5-c21e2a1c50ab","_postman_id":"d6979e8b-281f-4c61-aaa5-c21e2a1c50ab","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"letters","item":[{"name":"GET letters","id":"1aec337a-da7a-4a61-b2a9-5634023fe054","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/letters","description":"<p>Get all letters</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","letters"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1aec337a-da7a-4a61-b2a9-5634023fe054"},{"name":"GET letters with UUID","id":"d46d26a2-f103-4219-a1d2-145fb53c5ed0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/letters/{{uuid}}","description":"<p>Get specific letters by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","letters","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d46d26a2-f103-4219-a1d2-145fb53c5ed0"},{"name":"POST letters","id":"b6d32bba-df04-4c9a-a33b-842100e2084c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/letters","description":"<p>Create new letters</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","letters"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6d32bba-df04-4c9a-a33b-842100e2084c"},{"name":"PUT letters with UUID","id":"3706122d-b214-4eb5-809c-21fd7082cca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/letters/{{uuid}}","description":"<p>Update existing letters by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","letters","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3706122d-b214-4eb5-809c-21fd7082cca6"},{"name":"DELETE letters with UUID","id":"8346033e-8a4b-48aa-9352-be94ab081934","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/letters/{{uuid}}","description":"<p>Delete letters by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","letters","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8346033e-8a4b-48aa-9352-be94ab081934"}],"id":"a8971e27-b873-41ab-a0c5-0b8657938fce","_postman_id":"a8971e27-b873-41ab-a0c5-0b8657938fce","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"cancellations","item":[{"name":"GET cancellations","id":"22c0c4d7-d004-4b7a-841b-c7e57e3e5f26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/cancellations","description":"<p>Get all cancellations</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","cancellations"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"22c0c4d7-d004-4b7a-841b-c7e57e3e5f26"},{"name":"GET cancellations with UUID","id":"10bc8e7f-bb25-4650-aed1-5442bb358ad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/cancellations/{{uuid}}","description":"<p>Get specific cancellations by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","cancellations","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"10bc8e7f-bb25-4650-aed1-5442bb358ad0"},{"name":"POST cancellations","id":"db88b867-4208-40ad-ab8e-19b24301df7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/cancellations","description":"<p>Create new cancellations</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","cancellations"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"db88b867-4208-40ad-ab8e-19b24301df7b"},{"name":"PUT cancellations with UUID","id":"ad5ce09c-44e1-4215-a2eb-e1a0b57962a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/cancellations/{{uuid}}","description":"<p>Update existing cancellations by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","cancellations","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad5ce09c-44e1-4215-a2eb-e1a0b57962a3"},{"name":"DELETE cancellations with UUID","id":"6b8136b9-0501-455a-96c4-b824817512c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/cancellations/{{uuid}}","description":"<p>Delete cancellations by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","cancellations","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b8136b9-0501-455a-96c4-b824817512c4"}],"id":"383eec3a-9f54-42c4-80ce-04566beab7d0","_postman_id":"383eec3a-9f54-42c4-80ce-04566beab7d0","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"transaction_chains","item":[{"name":"GET transaction_chains","id":"230b18c2-659b-43dc-aa5b-15ec7a285ca2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_chains","description":"<p>Get all transaction_chains</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_chains"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"230b18c2-659b-43dc-aa5b-15ec7a285ca2"},{"name":"GET transaction_chains with UUID","id":"67f216dc-6283-4d16-83d6-c229176ebd5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_chains/{{uuid}}","description":"<p>Get specific transaction_chains by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_chains","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"67f216dc-6283-4d16-83d6-c229176ebd5f"},{"name":"POST transaction_chains","id":"01cd2488-bd9b-49f0-95ed-a5ea85b33f40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_chains","description":"<p>Create new transaction_chains</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_chains"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"01cd2488-bd9b-49f0-95ed-a5ea85b33f40"},{"name":"PUT transaction_chains with UUID","id":"fbb64f87-8750-46df-be61-a2bf2fdcbc81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_chains/{{uuid}}","description":"<p>Update existing transaction_chains by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_chains","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fbb64f87-8750-46df-be61-a2bf2fdcbc81"},{"name":"DELETE transaction_chains with UUID","id":"40243f0c-db62-4dd4-a80f-c40f4bd009f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_chains/{{uuid}}","description":"<p>Delete transaction_chains by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_chains","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"40243f0c-db62-4dd4-a80f-c40f4bd009f0"}],"id":"826af1da-08f5-4499-99ff-7a1fcc02dd1c","_postman_id":"826af1da-08f5-4499-99ff-7a1fcc02dd1c","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"transaction_positions","item":[{"name":"GET transaction_positions","id":"f38f7c7a-aa7e-46cc-8ebe-d10be58969a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_positions","description":"<p>Get all transaction_positions</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_positions"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f38f7c7a-aa7e-46cc-8ebe-d10be58969a5"},{"name":"GET transaction_positions with UUID","id":"6a4bda4c-0d23-4ff7-b7e2-922e295847e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_positions/{{uuid}}","description":"<p>Get specific transaction_positions by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_positions","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a4bda4c-0d23-4ff7-b7e2-922e295847e7"},{"name":"POST transaction_positions","id":"7f2de77d-8ac2-4b6c-9703-a012a82f8c6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_positions","description":"<p>Create new transaction_positions</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_positions"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f2de77d-8ac2-4b6c-9703-a012a82f8c6a"},{"name":"PUT transaction_positions with UUID","id":"b08449fa-01fa-4323-a9fa-e7ea68b62a31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_positions/{{uuid}}","description":"<p>Update existing transaction_positions by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_positions","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b08449fa-01fa-4323-a9fa-e7ea68b62a31"},{"name":"DELETE transaction_positions with UUID","id":"a442a1c6-d1ba-4b3e-b2ba-3d22c82a479b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/transaction_positions/{{uuid}}","description":"<p>Delete transaction_positions by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","transaction_positions","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a442a1c6-d1ba-4b3e-b2ba-3d22c82a479b"}],"id":"7e4c5432-14e3-432c-aa8b-428bbb06038a","_postman_id":"7e4c5432-14e3-432c-aa8b-428bbb06038a","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"landingpages","item":[{"name":"GET landingpages","id":"e4cf2b1a-2f89-49b7-b801-d1a5ccd0e357","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/landingpages","description":"<p>Get all landingpages</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","landingpages"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4cf2b1a-2f89-49b7-b801-d1a5ccd0e357"},{"name":"GET landingpages with UUID","id":"efa00b0d-64fe-4db0-a972-70b9204d8279","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/landingpages/{{uuid}}","description":"<p>Get specific landingpages by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","landingpages","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"efa00b0d-64fe-4db0-a972-70b9204d8279"},{"name":"POST landingpages","id":"5b3d5eba-9d7d-426c-a1ed-7072e91f44b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/landingpages","description":"<p>Create new landingpages</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","landingpages"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b3d5eba-9d7d-426c-a1ed-7072e91f44b3"},{"name":"PUT landingpages with UUID","id":"89274ed2-eff4-45c6-a9f9-a94db3071f2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/landingpages/{{uuid}}","description":"<p>Update existing landingpages by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","landingpages","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"89274ed2-eff4-45c6-a9f9-a94db3071f2a"},{"name":"DELETE landingpages with UUID","id":"7efd6b6f-bf6c-4536-81ab-10780a4ec8dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/landingpages/{{uuid}}","description":"<p>Delete landingpages by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","landingpages","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7efd6b6f-bf6c-4536-81ab-10780a4ec8dd"}],"id":"4bc03eb6-895b-4f3c-a728-bd20db1b9a56","_postman_id":"4bc03eb6-895b-4f3c-a728-bd20db1b9a56","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"medias","item":[{"name":"GET medias","id":"6298d99e-90b3-495b-bcb1-c26d752a8a3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/medias","description":"<p>Get all medias</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","medias"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6298d99e-90b3-495b-bcb1-c26d752a8a3d"},{"name":"GET medias with UUID","id":"f24d43a9-23a9-482f-84a4-b228597d5d04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/medias/{{uuid}}","description":"<p>Get specific medias by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","medias","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f24d43a9-23a9-482f-84a4-b228597d5d04"},{"name":"POST medias","id":"16119b3c-a583-4294-8ca1-f1e03ab6d66b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/medias","description":"<p>Create new medias</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","medias"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"16119b3c-a583-4294-8ca1-f1e03ab6d66b"},{"name":"PUT medias with UUID","id":"0db18338-a8f2-4664-b0c2-39d13268a05f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/medias/{{uuid}}","description":"<p>Update existing medias by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","medias","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0db18338-a8f2-4664-b0c2-39d13268a05f"},{"name":"DELETE medias with UUID","id":"2050c131-6014-4437-b2e0-fee3de16e6dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/medias/{{uuid}}","description":"<p>Delete medias by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","medias","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2050c131-6014-4437-b2e0-fee3de16e6dd"}],"id":"acc9904e-f98a-4c8f-877f-172745f23d07","_postman_id":"acc9904e-f98a-4c8f-877f-172745f23d07","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"notes","item":[{"name":"GET notes","id":"17b3d12a-2afe-477f-94a6-b3f0038c8f91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/notes","description":"<p>Get all notes</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","notes"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"17b3d12a-2afe-477f-94a6-b3f0038c8f91"},{"name":"GET notes with UUID","id":"af0ad344-e454-4026-a55f-6205bd460f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/notes/{{uuid}}","description":"<p>Get specific notes by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","notes","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"af0ad344-e454-4026-a55f-6205bd460f27"},{"name":"POST notes","id":"7992abe9-aff3-41ad-a811-d15d5a481920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/notes","description":"<p>Create new notes</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","notes"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7992abe9-aff3-41ad-a811-d15d5a481920"},{"name":"PUT notes with UUID","id":"8d22d24e-fcea-49b2-8003-d62587b7fad9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/notes/{{uuid}}","description":"<p>Update existing notes by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","notes","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d22d24e-fcea-49b2-8003-d62587b7fad9"},{"name":"DELETE notes with UUID","id":"c29164b9-d7d7-4595-a68b-43c879c3b902","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/notes/{{uuid}}","description":"<p>Delete notes by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","notes","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c29164b9-d7d7-4595-a68b-43c879c3b902"}],"id":"8e0ed326-d8b5-49dc-96fd-71b11a2316d9","_postman_id":"8e0ed326-d8b5-49dc-96fd-71b11a2316d9","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"payment_methods","item":[{"name":"GET payment_methods","id":"6af410ef-6a6f-4fd1-ba91-cf83e0d89867","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/payment_methods","description":"<p>Get all payment_methods</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","payment_methods"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6af410ef-6a6f-4fd1-ba91-cf83e0d89867"},{"name":"GET payment_methods with UUID","id":"a93eaaef-c015-4825-895c-b556ea3885e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/payment_methods/{{uuid}}","description":"<p>Get specific payment_methods by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","payment_methods","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a93eaaef-c015-4825-895c-b556ea3885e6"},{"name":"POST payment_methods","id":"5f297fac-e19d-4d12-99cf-cb7d1caf16b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/payment_methods","description":"<p>Create new payment_methods</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","payment_methods"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f297fac-e19d-4d12-99cf-cb7d1caf16b0"},{"name":"PUT payment_methods with UUID","id":"b8d089bf-05f5-46ab-8e49-4891b016d7c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/payment_methods/{{uuid}}","description":"<p>Update existing payment_methods by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","payment_methods","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8d089bf-05f5-46ab-8e49-4891b016d7c5"},{"name":"DELETE payment_methods with UUID","id":"57f084ba-b9c3-47e9-8c50-344bfcb1f406","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/payment_methods/{{uuid}}","description":"<p>Delete payment_methods by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","payment_methods","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"57f084ba-b9c3-47e9-8c50-344bfcb1f406"}],"id":"0a903ce8-3e40-40df-9e21-512116b8c920","_postman_id":"0a903ce8-3e40-40df-9e21-512116b8c920","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"product_categories","item":[{"name":"GET product_categories","id":"3ff62576-84e7-4bd2-96ed-9273a57a5191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/product_categories","description":"<p>Get all product_categories</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","product_categories"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ff62576-84e7-4bd2-96ed-9273a57a5191"},{"name":"GET product_categories with UUID","id":"90a93370-2b1b-4c09-bbf4-a10bfff9c10d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/product_categories/{{uuid}}","description":"<p>Get specific product_categories by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","product_categories","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"90a93370-2b1b-4c09-bbf4-a10bfff9c10d"},{"name":"POST product_categories","id":"b9af5a63-2858-490b-9764-45ff4f8570b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/product_categories","description":"<p>Create new product_categories</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","product_categories"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9af5a63-2858-490b-9764-45ff4f8570b0"},{"name":"PUT product_categories with UUID","id":"b89172c1-5df8-4f6b-a955-db9ae07672fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/product_categories/{{uuid}}","description":"<p>Update existing product_categories by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","product_categories","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b89172c1-5df8-4f6b-a955-db9ae07672fd"},{"name":"DELETE product_categories with UUID","id":"4e90e9fa-542a-49f3-9611-0d77d3f49c0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/product_categories/{{uuid}}","description":"<p>Delete product_categories by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","product_categories","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e90e9fa-542a-49f3-9611-0d77d3f49c0d"}],"id":"0914d0e2-f25c-45b6-83ee-b327ffea7f72","_postman_id":"0914d0e2-f25c-45b6-83ee-b327ffea7f72","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"products","item":[{"name":"GET products","id":"7ea8fb04-eb3c-4114-8364-7d1745d3c61f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/products","description":"<p>Get all products</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","products"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ea8fb04-eb3c-4114-8364-7d1745d3c61f"},{"name":"GET products with UUID","id":"a28b55b8-b234-4f3b-a0ca-460d663c779c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/products/{{uuid}}","description":"<p>Get specific products by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","products","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a28b55b8-b234-4f3b-a0ca-460d663c779c"},{"name":"POST products","id":"1456695c-513f-480c-8eb8-bf1cb90bcd06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"title\": \"string\", \"description\": \"string\", \"price_net\": 0.0, \"price_gross\": 0.0, \"vat_type\": 0, \"purchase_price\": 0.0, \"quantity_unit\": \"string\", \"$uuid\": \"generated UUID\"}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/products","description":"<p>Create new products</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","products"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1456695c-513f-480c-8eb8-bf1cb90bcd06"},{"name":"PUT products with UUID","id":"370961b6-93df-4c15-8d19-ec044987a8ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"title\": \"string\", \"description\": \"string\", \"price_net\": 0.0, \"price_gross\": 0.0, \"vat_type\": 0, \"purchase_price\": 0.0, \"quantity_unit\": \"string\", \"$uuid\": \"generated UUID\"}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/products/{{uuid}}","description":"<p>Update existing products by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","products","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"370961b6-93df-4c15-8d19-ec044987a8ea"},{"name":"DELETE products with UUID","id":"e931ba85-7ad8-4277-8cb2-885372bb74f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/products/{{uuid}}","description":"<p>Delete products by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","products","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e931ba85-7ad8-4277-8cb2-885372bb74f5"}],"id":"528beaf6-656b-407e-81b4-59f7e1387071","_postman_id":"528beaf6-656b-407e-81b4-59f7e1387071","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"projects","item":[{"name":"GET projects","id":"42e43727-66cc-4191-883b-c1a2ca917425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/projects","description":"<p>Get all projects</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","projects"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"42e43727-66cc-4191-883b-c1a2ca917425"},{"name":"GET projects with UUID","id":"bed7eef6-883d-4c95-a3db-2e4e2df32a2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/projects/{{uuid}}","description":"<p>Get specific projects by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","projects","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bed7eef6-883d-4c95-a3db-2e4e2df32a2e"},{"name":"POST projects","id":"e01ca2ba-0f56-4492-abad-960817754c99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/projects","description":"<p>Create new projects</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","projects"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e01ca2ba-0f56-4492-abad-960817754c99"},{"name":"PUT projects with UUID","id":"f20d21e4-7b13-41e7-9660-adeacb173b19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/projects/{{uuid}}","description":"<p>Update existing projects by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","projects","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f20d21e4-7b13-41e7-9660-adeacb173b19"},{"name":"DELETE projects with UUID","id":"6212a49d-e449-4640-a94c-4cb5faba9e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/projects/{{uuid}}","description":"<p>Delete projects by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","projects","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6212a49d-e449-4640-a94c-4cb5faba9e7f"}],"id":"2e810f9e-6df8-4aa6-813b-931c2890692e","_postman_id":"2e810f9e-6df8-4aa6-813b-931c2890692e","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"ressources","item":[{"name":"GET ressources","id":"7ef9385b-0348-419a-9602-771a3a3a427a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressources","description":"<p>Get all ressources</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressources"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ef9385b-0348-419a-9602-771a3a3a427a"},{"name":"GET ressources with UUID","id":"c0b234cd-dad9-4701-9c30-e02c05ca5d72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressources/{{uuid}}","description":"<p>Get specific ressources by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressources","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0b234cd-dad9-4701-9c30-e02c05ca5d72"},{"name":"POST ressources","id":"f47a8eb2-ce91-45a3-8b26-48c32426a904","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressources","description":"<p>Create new ressources</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressources"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f47a8eb2-ce91-45a3-8b26-48c32426a904"},{"name":"PUT ressources with UUID","id":"eafea24f-387d-4bb0-8a28-6eebd504ff61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressources/{{uuid}}","description":"<p>Update existing ressources by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressources","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"eafea24f-387d-4bb0-8a28-6eebd504ff61"},{"name":"DELETE ressources with UUID","id":"4af2fd75-9068-46b9-9ce0-37e9692893d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressources/{{uuid}}","description":"<p>Delete ressources by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressources","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4af2fd75-9068-46b9-9ce0-37e9692893d1"}],"id":"01a734b6-407d-4bbe-b87d-bf315ea20da5","_postman_id":"01a734b6-407d-4bbe-b87d-bf315ea20da5","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"ressource_categories","item":[{"name":"GET ressource_categories","id":"9d52fdcd-5c54-4daa-b40b-b6b19790dbfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressource_categories","description":"<p>Get all ressource_categories</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressource_categories"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d52fdcd-5c54-4daa-b40b-b6b19790dbfe"},{"name":"GET ressource_categories with UUID","id":"39b32d46-159c-489d-a25d-0ab9ba167dad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressource_categories/{{uuid}}","description":"<p>Get specific ressource_categories by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressource_categories","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"39b32d46-159c-489d-a25d-0ab9ba167dad"},{"name":"POST ressource_categories","id":"9a4f7520-df95-4899-9dcb-ffa3ad48c814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressource_categories","description":"<p>Create new ressource_categories</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressource_categories"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a4f7520-df95-4899-9dcb-ffa3ad48c814"},{"name":"PUT ressource_categories with UUID","id":"ac982bfc-f4da-4835-be01-728b41046333","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressource_categories/{{uuid}}","description":"<p>Update existing ressource_categories by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressource_categories","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac982bfc-f4da-4835-be01-728b41046333"},{"name":"DELETE ressource_categories with UUID","id":"47cdc48c-9415-4e1c-ab82-68ebbccba6b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/ressource_categories/{{uuid}}","description":"<p>Delete ressource_categories by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","ressource_categories","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"47cdc48c-9415-4e1c-ab82-68ebbccba6b5"}],"id":"f9f7b0d2-6015-4e71-a45d-fe0f8e75737b","_postman_id":"f9f7b0d2-6015-4e71-a45d-fe0f8e75737b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"segments","item":[{"name":"GET segments","id":"cab319a5-3fc8-493c-a958-aee61b5adcfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/contact_segments","description":"<p>Get all contact_segments</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contact_segments"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cab319a5-3fc8-493c-a958-aee61b5adcfd"},{"name":"GET segments with UUID","id":"55d4041c-5bb1-43f1-96fa-8da3f06d9c20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/contact_segments/{{uuid}}","description":"<p>Get specific contact_segments by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contact_segments","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"55d4041c-5bb1-43f1-96fa-8da3f06d9c20"},{"name":"POST segments","id":"b6270868-87e6-4113-8046-989fbd478369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contact_segments","description":"<p>Create new contact_segments</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contact_segments"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6270868-87e6-4113-8046-989fbd478369"},{"name":"PUT segments with UUID","id":"b2a6dd23-83b2-438b-9f1c-348bf5f09ec5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contact_segments/{{uuid}}","description":"<p>Update existing contact_segments by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contact_segments","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2a6dd23-83b2-438b-9f1c-348bf5f09ec5"},{"name":"DELETE segments with UUID","id":"02123972-0ccd-4ebd-a364-3a220353c265","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/contact_segments/{{uuid}}","description":"<p>Delete contact_segments by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","contact_segments","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"02123972-0ccd-4ebd-a364-3a220353c265"}],"id":"465458f8-df0a-472c-ae8b-3280e09b91c3","_postman_id":"465458f8-df0a-472c-ae8b-3280e09b91c3","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"sources","item":[{"name":"GET sources","id":"56d48d08-fdef-44ae-9b65-979756f82593","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/sources","description":"<p>Get all sources</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","sources"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"56d48d08-fdef-44ae-9b65-979756f82593"},{"name":"GET sources with UUID","id":"a0b7f255-e98c-4d3c-9105-6f9961be2b18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/sources/{{uuid}}","description":"<p>Get specific sources by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","sources","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0b7f255-e98c-4d3c-9105-6f9961be2b18"},{"name":"POST sources","id":"23adf845-611a-4fd8-872b-575787bb45e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/sources","description":"<p>Create new sources</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","sources"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"23adf845-611a-4fd8-872b-575787bb45e3"},{"name":"PUT sources with UUID","id":"e803cae5-10a0-4fcc-aa1a-35f05080d137","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/sources/{{uuid}}","description":"<p>Update existing sources by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","sources","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e803cae5-10a0-4fcc-aa1a-35f05080d137"},{"name":"DELETE sources with UUID","id":"f50e54d5-5ce8-413d-952e-6dd01a0adf3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/sources/{{uuid}}","description":"<p>Delete sources by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","sources","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f50e54d5-5ce8-413d-952e-6dd01a0adf3d"}],"id":"66c1a6cb-ad8e-4351-a62b-37ad85c4e51d","_postman_id":"66c1a6cb-ad8e-4351-a62b-37ad85c4e51d","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"time_recordings","item":[{"name":"GET time_recordings","id":"a0862130-0895-4788-b452-fec7c75c7997","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/time_recordings","description":"<p>Get all time_recordings</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","time_recordings"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0862130-0895-4788-b452-fec7c75c7997"},{"name":"GET time_recordings with UUID","id":"6f5e01d8-2dfb-4e02-94ab-8f6241dde2b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/time_recordings/{{uuid}}","description":"<p>Get specific time_recordings by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","time_recordings","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f5e01d8-2dfb-4e02-94ab-8f6241dde2b2"},{"name":"POST time_recordings","id":"abc76f01-6e38-40e6-8480-08658c1d01ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/time_recordings","description":"<p>Create new time_recordings</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","time_recordings"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"abc76f01-6e38-40e6-8480-08658c1d01ca"},{"name":"PUT time_recordings with UUID","id":"be4a556a-ff07-4504-b88f-415de9c9ddf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/time_recordings/{{uuid}}","description":"<p>Update existing time_recordings by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","time_recordings","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"be4a556a-ff07-4504-b88f-415de9c9ddf0"},{"name":"DELETE time_recordings with UUID","id":"d00dd855-e396-4be3-8fac-139233c9d3b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/time_recordings/{{uuid}}","description":"<p>Delete time_recordings by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","time_recordings","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d00dd855-e396-4be3-8fac-139233c9d3b6"}],"id":"55b32ba1-bd2a-400d-9044-12d579e138d6","_postman_id":"55b32ba1-bd2a-400d-9044-12d579e138d6","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}},{"name":"teams","item":[{"name":"GET teams","id":"d46a5879-d83a-426c-a945-61727955a522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/teams","description":"<p>Get all time_recordings</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","teams"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d46a5879-d83a-426c-a945-61727955a522"},{"name":"GET team with UUID","id":"dba722ed-8879-42ac-9206-c2c8f85ad4f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://hello.mister-james.com/_utalic_release/api/v1/teams/{{uuid}}","description":"<p>Get specific time_recordings by UUID</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","teams","{{uuid}}"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dba722ed-8879-42ac-9206-c2c8f85ad4f7"},{"name":"POST teams","id":"0a5aae78-77ec-4ba7-9ea2-c38be9a2a79b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://hello.mister-james.com/_utalic_release/api/v1/teams","description":"<p>Create new time_recordings</p>\n","urlObject":{"protocol":"https","path":["_utalic_release","api","v1","teams"],"host":["hello","mister-james","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a5aae78-77ec-4ba7-9ea2-c38be9a2a79b"}],"id":"d5e4df79-a5ed-463c-bc93-1f5cd6a94e5b","_postman_id":"d5e4df79-a5ed-463c-bc93-1f5cd6a94e5b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]},"isInherited":true,"source":{"_postman_id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","id":"3d2d1930-f69e-44e8-8bd1-26db6dd045a2","name":"Mister James REST-API v1","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"grant_type","value":"<grant_type>"},{"key":"clientSecret","value":"{{Mister James client_secret}}"},{"key":"clientId","value":"{{Mister James client_id}}"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"scope","value":"<scope>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"tokenName","value":"<token-name>"},{"key":"useBrowser","value":"<use-browser>"}]}},"event":[{"listen":"prerequest","script":{"id":"b04f365d-ff15-4cd9-a37f-30c714ab9fbf","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"363e9685-46ef-4617-973f-0f6c0b27c977","type":"text/javascript","packages":{},"exec":[""]}}]}