{"info":{"_postman_id":"2ac7795f-aaf0-4dda-84c3-c1b5e41ef1cb","name":"Styldod Order API - 2.0","description":"<html><head></head><body><p>The Styldod Order APIs are designed to provide seamless integration and functionality for developers. Our APIs follow a RESTful architecture, offering predictable and resource-oriented URLs for easy navigation and interaction. Request bodies are encoded using the standard form-encoded format, and responses are returned in JSON, making data manipulation and interpretation straightforward. This API also allows you to place orders programmatically, and these orders will be visible on the Styldod user dashboard as well.</p>\n<p>Authentication and security are paramount, and our API employs standard HTTP response codes, authentication mechanisms, and HTTP verbs to ensure secure and reliable communication. We currently support an API key-based authentication method for API requests.</p>\n<p>For any help regarding the API, please contact us at <a href=\"https://mailto:help@styldod.com\">help@styldod.com</a>.</p>\n<h1 id=\"service-endpoint\">Service endpoint</h1>\n<hr>\n<p>The service endpoint for all Styldod Order APIs and all URLs mentioned in this document are relative to these service endpoint:</p>\n<p><strong>Production URL</strong>:</p>\n<blockquote>\n<p><code>BASE_URL: https://orderapi.styldod.com</code> </p>\n</blockquote>\n<p>For testing purpose, please use the UAT (User Acceptance Testing) URL</p>\n<blockquote>\n<p><code>BASE_URL: https://uat-orderapi.styldod.com</code> </p>\n</blockquote>\n<h1 id=\"authentication\">Authentication</h1>\n<hr>\n<p>The Styldod Order APIs utilize API keys for authentication purposes. These API keys act as a secure means of verifying and authorizing requests made to the API.</p>\n<p>It is very important to handle your API keys with care and keep them secure at all times.</p>\n<p>API keys grant access to API calls that may retrieve or change your data and/or may lead to incurring significant charges. It is therefore important that these keys keep them secured at all times to prevent them from being used by unauthorized users. Avoid sharing your Styldod Order API keys in publicly accessible areas such as version control repositories like GitHub or client-side code that can be accessed by others.</p>\n<p>To authenticate your API requests, include the API key in the header as follows:</p>\n<p><code>api-key : {{API-KEY}}</code></p>\n<h1 id=\"rate-limit\">Rate Limit</h1>\n<hr>\n<p>All Styldod Order APIs have a rate limit of 20 requests per second. Exceeding this rate limit will result in 429 (Too Many Requests) HTTP errors.</p>\n<h1 id=\"status-codes-and-errors\">Status Codes and Errors</h1>\n<hr>\n<p>Styldod Order APIs uses common HTTP response status codes to indicate the success or failure of these API requests.</p>\n<p>Following is the list of HTTP status codes:</p>\n<h3 id=\"table\">Table</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Summary</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Success</td>\n<td>Your request was successful.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad request</td>\n<td>Your request was not successful due to missing or invalid parameters.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Invalid Authentication Token</td>\n<td>Your API Key is invalid, expired, or not provided.</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n<td>Your request parameters were valid, but your account does not have adequate permission for the requests.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found</td>\n<td>The requested resource does not exist.</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method Not Allowed</td>\n<td>The requested HTTP is not allowed for the given resource.</td>\n</tr>\n<tr>\n<td>422</td>\n<td>Unprocessable Entity</td>\n<td>Your request could not be processed properly due to invalid data. Some of the required parameters might be missing.</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too Many Requests</td>\n<td>Too many requests within a given amount of time, exceeding the allowed Rate Limit. Refer to the <strong>Rate Limit</strong> section of this document to know about the limits.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n<td>The request was not successful due to server errors.</td>\n</tr>\n<tr>\n<td>504</td>\n<td>Gateway Timeout</td>\n<td>The gateway or server did not get a response in time from the underlying resources needed to complete the request.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"uploading-images-with-pre-signed-urls\">Uploading Images with pre-signed URLs</h1>\n<hr>\n<p>If you don't have your own storage you can upload binary image files to our S3 bucket on AWS. Before placing an order, you must upload the images you want to edit. This is done using the <strong>Get Upload URLs API</strong>:</p>\n<ol>\n<li><p><strong>Get Pre-Signed URLs:</strong></p>\n<ul>\n<li><p>Start by calling the <strong>Get Upload URLs API</strong> to obtain pre-signed URLs for your images.</p>\n</li>\n<li><p>The API will return a set of secure, time-limited pre-signed URLs, which are valid for 4 hours.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Upload Images:</strong></p>\n<ul>\n<li><p>Use these pre-signed URLs to upload your images directly to the storage. Each URL corresponds to a specific image.</p>\n</li>\n<li><p>Ensure all images are successfully uploaded before proceeding to create the order.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Use the Uploaded Image URLs:</strong></p>\n<ul>\n<li>In the Create Order API request, use the URLs provided after the image upload in the <code>image_urls</code> field under <code>image_list</code>.</li>\n</ul>\n</li>\n</ol>\n<h1 id=\"webhook\">Webhook</h1>\n<hr>\n<p>During the order placement process or while creating an API key in the global configuration, you can specify a webhook URL, where you want to receive updates once your order is processed.</p>\n<h4 id=\"how-it-works\">How It Works</h4>\n<p>After processing your order, our system will send a POST request to the webhook URL you provided. This request will contain the order details, including order status, output image URLs, event, orderID and any relevant metadata.</p>\n<h4 id=\"webhook-events\">Webhook Events</h4>\n<p>Below are webhook events for orders</p>\n<p><code>order.completed</code><br><code>order.pre_processing</code><br><code>order.post_processing</code><br><code>order.expert_assigned</code><br><code>order.error</code></p>\n<h4 id=\"webhook-requirements\">Webhook Requirements</h4>\n<ul>\n<li><p><strong>URL</strong>: The webhook URL must be provided during order placement.</p>\n</li>\n<li><p><strong>HTTP Method</strong>: POST</p>\n</li>\n<li><p><strong>Response</strong>: The webhook must return a success response with an HTTP status code of 200 upon receiving the request. This confirms that the webhook has successfully processed the order details.</p>\n</li>\n</ul>\n<h4 id=\"example-webhook-payload\">Example Webhook Payload</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"event\": \"order.completed\",\n  \"orderID\":\"1675563636373\",\n  \"data\": {\n    \"image_list\": [\n      {\n        \"client_image_id\": \"IMG#111\",\n        \"image_status\": \"completed\",\n        \"output_url\": \"https://www.example.com/image1.jpg\",\n        \"sequence\": 1\n      },\n      {\n        \"client_image_id\": \"IMG#222\",\n        \"image_status\": \"completed\",\n        \"output_url\": \"https://www.example.com/image2.jpg\",\n        \"sequence\": 2\n      },\n      {\n        \"client_image_id\": \"IMG#333\",\n        \"image_status\": \"error\"\n      },\n      {\n        \"client_image_id\": \"IMG#444\",\n        \"image_status\": \"completed\",\n        \"output_url\": \"https://www.example.com/image3.jpg\",\n        \"sequence\": 3\n      }\n    ],\n    \"order_status\": \"completed\",\n    \"createdAt\": \"2024-08-21T09:13:48.156Z\",\n    \"updatedAt\": \"2024-08-21T09:17:50.248Z\"\n  }\n}\n\n</code></pre>\n<h4 id=\"retry-logic\">Retry Logic</h4>\n<p>If the webhook fails to return a 200 status code, our system will retry the request up to 3 times at increasing intervals. If the webhook still does not respond successfully after these attempts, the order update may be considered failed.</p>\n<p>Ensure that your webhook endpoint is correctly configured to handle the incoming POST request and respond with a 200 status code to avoid failed notifications.</p>\n<h1 id=\"global-configuration-and-options-precedence\">Global Configuration and Options Precedence</h1>\n<hr>\n<p>Global config defines default settings for orders placed using the API. These settings are configured at the time of creating the API key and serve as the baseline configuration for all orders. The settings in this object are applied with the lowest precedence, meaning they can be overridden by settings specified at the order or individual image level.</p>\n<p>These settings include default image properties, webhook configurations, and contact information.</p>\n<p>Users can specify various options to orders at multiple levels, which are applied with different precedence. The options can be set in the following ways:</p>\n<ol>\n<li><p><strong>Global Configuration:</strong> These are default settings configured when creating the API key. If a options are set at this level, it will automatically apply to all requests unless overridden by the user.</p>\n</li>\n<li><p><strong>Apply to All (Order Level):</strong> Users can specify options that should apply to all images within a specific order with <code>apply_to_all</code> option. This is a convenient way to set common options for multiple images. However, these settings can be overridden at the image level.</p>\n</li>\n<li><p><strong>Image Level:</strong> Options can be specified individually for each image within the <code>image_list</code>. This level has the highest precedence. If a option is set here, it will override both the global configuration and the <code>apply_to_all</code> settings.</p>\n</li>\n</ol>\n<h3 id=\"precedence-order\">Precedence Order:</h3>\n<ol>\n<li><p><strong>Image Level:</strong> The highest priority. If a option is specified at this level, it takes precedence over any other settings.</p>\n</li>\n<li><p><strong>Apply to All:</strong> The second level of precedence. Options set here apply to all images unless overridden at the image level.</p>\n</li>\n<li><p><strong>Global Configuration:</strong> The default settings that apply if no overrides are provided at the <code>apply_to_all</code> or image levels.</p>\n</li>\n</ol>\n<h3 id=\"example\">Example:</h3>\n<p>Consider the following scenario:</p>\n<ul>\n<li><p>The <code>basic_editing</code> option is set to <code>true</code> in the global configuration (API key level).</p>\n</li>\n<li><p>In the <code>apply_to_all</code> section of the request body, <code>basic_editing</code> is set to <code>false</code>.</p>\n</li>\n<li><p>For a specific image in the <code>image_list</code>, <code>basic_editing</code> is set to <code>true</code>.</p>\n</li>\n</ul>\n<p>In this case:</p>\n<ul>\n<li><p>For the specific image, <code>basic_editing</code> will be <code>true</code> (image level takes precedence).</p>\n</li>\n<li><p>For any other image where <code>basic_editing</code> is not explicitly set, it will be <code>false</code> (from <code>apply_to_all</code>).</p>\n</li>\n<li><p>If neither image level nor <code>apply_to_all</code> specifies <code>basic_editing</code>, it would default to <code>true</code> as per the global configuration.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Service endpoint","slug":"service-endpoint"},{"content":"Authentication","slug":"authentication"},{"content":"Rate Limit","slug":"rate-limit"},{"content":"Status Codes and Errors","slug":"status-codes-and-errors"},{"content":"Uploading Images with pre-signed URLs","slug":"uploading-images-with-pre-signed-urls"},{"content":"Webhook","slug":"webhook"},{"content":"Global Configuration and Options Precedence","slug":"global-configuration-and-options-precedence"}],"owner":"26391041","collectionId":"2ac7795f-aaf0-4dda-84c3-c1b5e41ef1cb","publishedId":"2sA3s7jpG5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"67a110"},"publishDate":"2024-09-11T12:13:29.000Z"},"item":[{"name":"Image Editing","item":[{"name":"Place Order","id":"ce91d023-8e3e-4dca-b5ff-b2babc9be93b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"project_name\": \"My Project\",\n    \"image_list\": [\n        {\n            \"image_urls\": [\n                \"https://example.com/image1.png\",\n                \"https://example.com/image1.png\",\n                \"https://example.com/image1.png\",\n                \"https://example.com/image1.png\"\n            ],\n            \"client_image_id\": \"1234567\",\n            \"comment\": \"test order\",\n            \"basic_editing\": false,\n            \"hdr_merge\": true,\n            \"sky_replacement\": true,\n            \"lawn_replacement\": true,\n            \"tv_screen_replacement\": true,\n            \"add_fire_in_fireplace\": false,\n            \"remove_snow\": false,\n            \"blurring\": false,\n            \"object_removal\": true,\n            \"occupied_to_vacant\": false,\n            \"day_to_dusk\": true,\n            \"virtual_staging\": false\n        },\n        {\n            \"image_urls\": [\n                \"https://example.com/image2.png\",\n                \"https://example.com/image2.png\",\n                \"https://example.com/image2.png\"\n            ],\n            \"client_image_id\": \"8934567\",\n            \"basic_editing\": false,\n            \"hdr_merge\": true,\n            \"sky_replacement\": true,\n            \"lawn_replacement\": true,\n            \"tv_screen_replacement\": true,\n            \"add_fire_in_fireplace\": false,\n            \"remove_snow\": false,\n            \"blurring\": false,\n            \"object_removal\": true,\n            \"occupied_to_vacant\": false,\n            \"day_to_dusk\": true,\n            \"virtual_staging\": false\n        }\n    ],\n    \"deliver_to_client\":true,\n    \"client_info\":{\n        \"client_name\":\"John\",\n        \"client_email\":\"john.doe@gmail.com\"\n    },\n    \"payment\": {\n        \"amount\": 15.01,\n        \"currency\": \"INR\",\n        \"status\": \"pending\",\n       \"date\": \"2024-08-27T00:00:00Z\"\n    },\n    \"apply_to_all\": {\n        \"basic_editing\": false,\n        \"hdr_merge\": true,\n        \"sky_replacement\": true,\n        \"lawn_replacement\": true,\n        \"tv_screen_replacement\": true,\n        \"add_fire_in_fireplace\": false,\n        \"remove_snow\": false,\n        \"blurring\": false,\n        \"object_removal\": true,\n        \"occupied_to_vacant\": false,\n        \"day_to_dusk\": true,\n        \"virtual_staging\": false\n    },\n    \"webhook_url\": \"https://example.com/webhook\"\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/image_editing","description":"<p>This API is used to place a new order for image editing. To successfully place an order, you need to provide the necessary details in the request payload, including project information, image URLs, editing options, and delivery details.</p>\n<h2 id=\"attributes\"><strong>Attributes</strong></h2>\n<hr />\n<ul>\n<li><p><strong>project_name (</strong><em><strong>required</strong></em><strong>):</strong> string<br />  The name of the project.<br />  <em>maximum allowed 256 characters</em></p>\n</li>\n<li><p><strong>webhook_url (optional):</strong> string<br />  optional webhook callback URL, which can be used for receiving the final response when the job is completed or error details when it fails.</p>\n</li>\n<li><p><strong>image_list (required):</strong> array<br />  An array of objects each containing image URLs and editing options.<br />  <em>minimum required 1 image</em></p>\n<ul>\n<li><p><strong>image_urls (required):</strong> array<br />  An array of URLs pointing to the images of different exposures to be merged.<br />  <em>minimum required 1 image</em></p>\n</li>\n<li><p><strong>client_image_id (optional):</strong> string<br />  A unique identifier for each image from the client side. This can be used by the client only for tracking the images. We will not use this for any other purpose.</p>\n</li>\n<li><p><strong>comment (optional):</strong> string<br />  A text field where the user can provide any additional instructions or comments for the editor. This could include specific requests or details to consider during the editing process. <em>maximum allowed 1000 characters</em></p>\n</li>\n<li><p><strong>basic_editing (optional):</strong> boolean<br />  Flag indicating whether basic editing is applied.</p>\n</li>\n<li><p><strong>hdr_merge (optional):</strong> boolean<br />  Flag indicating whether HDR merging is applied.</p>\n</li>\n<li><p><strong>sky_replacement (optional):</strong> boolean<br />  Flag indicating whether sky replacement is applied.</p>\n</li>\n<li><p><strong>lawn_replacement (optional):</strong> boolean<br />  Flag indicating whether lawn replacement is applied.</p>\n</li>\n<li><p><strong>tv_screen_replacement (optional):</strong> boolean<br />  Flag indicating whether to replace the TV screen in the image with a different display or content.</p>\n</li>\n<li><p><strong>add_fire_in_fireplace (optional):</strong> boolean<br />  Flag indicating whether to digitally add a fire to the fireplace in the image.</p>\n</li>\n<li><p><strong>remove_snow (optional):</strong> boolean<br />  Flag indicating whether to remove snow from the image, making it appear as if the scene is snow-free.</p>\n</li>\n<li><p><strong>blurring (optional):</strong> boolean<br />  Flag indicating whether to apply a blurring effect to specific areas of the image, such as backgrounds or personal details.</p>\n</li>\n<li><p><strong>object_removal (optional):</strong> boolean<br />  Flag indicating whether to remove unwanted objects from the image.</p>\n</li>\n<li><p><strong>occupied_to_vacant (optional):</strong> boolean<br />  Flag indicating whether to digitally remove furniture and other items to make the space appear vacant.</p>\n</li>\n<li><p><strong>day_to_dusk (optional):</strong> boolean<br />  Flag indicating whether to transform a daytime image into a dusk or evening scene.</p>\n</li>\n<li><p><strong>virtual_staging (optional):</strong> boolean<br />  Flag indicating whether to add virtual furniture or décor to an empty or minimally furnished space in the image.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>deliver_to_client (optional):</strong> boolean<br />  Determines whether the final output should be delivered directly to the client. If set to <code>true</code>, the processed images or order details will be sent to the client's email specified in <code>client_info</code>.</p>\n</li>\n<li><p><strong>client_info (optional):</strong> object<br />  An object containing the client's contact information. This field is required if <code>deliver_to_client</code> is set to <code>true</code></p>\n<ul>\n<li><p><strong>client_name (optional):</strong> string<br />  The name of the client. Optional but recommended for personalized delivery.<br />  <em>maximum allowed 256 characters</em></p>\n</li>\n<li><p><strong>client_email (required):</strong> string<br />  The email address of the client. This is required for delivering the final output if <code>deliver_to_client</code> is set to <code>true</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>payment (optional):</strong> object<br />  An object containing the order's payment information.</p>\n<ul>\n<li><p><strong>amount (required):</strong> number<br />  The total amount of the payment.</p>\n</li>\n<li><p><strong>currency (required):</strong> string<br />  The currency in which the payment is made. It should follow the ISO 4217 standard. Example: <code>INR</code> (Indian Rupee)</p>\n</li>\n<li><p><strong>status (optional):</strong> string<br />  The current status of the payment.</p>\n</li>\n<li><p><strong>date (optional):</strong> string<br />  The date and time of the payment.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>apply_to_all (optional):</strong> object<br />  An object specifying default editing options to be applied to all images.</p>\n<ul>\n<li><p><strong>basic_editing (optional):</strong> boolean<br />  Flag indicating whether basic editing is applied.</p>\n</li>\n<li><p><strong>hdr_merge (optional):</strong> boolean<br />  Flag indicating whether HDR merging is applied.</p>\n</li>\n<li><p><strong>sky_replacement (optional):</strong> boolean<br />  Flag indicating whether sky replacement is applied.</p>\n</li>\n<li><p><strong>lawn_replacement (optional):</strong> boolean<br />  Flag indicating whether lawn replacement is applied.</p>\n</li>\n<li><p><strong>tv_screen_replacement (optional):</strong> boolean<br />  Flag indicating whether to replace the TV screen in the image with a different display or content.</p>\n</li>\n<li><p><strong>add_fire_in_fireplace (optional):</strong> boolean<br />  Flag indicating whether to digitally add a fire to the fireplace in the image.</p>\n</li>\n<li><p><strong>remove_snow (optional):</strong> boolean<br />  Flag indicating whether to remove snow from the image, making it appear as if the scene is snow-free.</p>\n</li>\n<li><p><strong>blurring (optional):</strong> boolean<br />  Flag indicating whether to apply a blurring effect to specific areas of the image, such as backgrounds or personal details.</p>\n</li>\n<li><p><strong>object_removal (optional):</strong> boolean<br />  Flag indicating whether to remove unwanted objects from the image.</p>\n</li>\n<li><p><strong>occupied_to_vacant (optional):</strong> boolean<br />  Flag indicating whether to digitally remove furniture and other items to make the space appear vacant.</p>\n</li>\n<li><p><strong>day_to_dusk (optional):</strong> boolean<br />  Flag indicating whether to transform a daytime image into a dusk or evening scene.</p>\n</li>\n<li><p><strong>virtual_staging (optional):</strong> boolean<br />  Flag indicating whether to add virtual furniture or décor to an empty or minimally furnished space in the image.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["v2","order","image_editing"],"host":["https://orderapi.styldod.com"],"query":[],"variable":[]}},"response":[{"id":"e3a76a17-b008-40bf-b37d-647ebd73e7f5","name":"Place Order","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"project_name\": \"My Project\",\n    \"image_list\": [\n        {\n            \"image_urls\": [\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\"\n            ],\n            \"client_image_id\": \"1234567\",\n            \"comment\": \"test order\",\n            \"basic_editing\": false,\n            \"hdr_merge\": true,\n            \"sky_replacement\": true,\n            \"lawn_replacement\": true,\n            \"tv_screen_replacement\": true,\n            \"add_fire_in_fireplace\": false,\n            \"remove_snow\": false,\n            \"blurring\": false,\n            \"object_removal\": true,\n            \"occupied_to_vacant\": false,\n            \"day_to_dusk\": true,\n            \"virtual_staging\": false\n        },\n        {\n            \"image_urls\": [\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\"\n            ],\n            \"client_image_id\": \"8934567\",\n            \"basic_editing\": false,\n            \"hdr_merge\": true,\n            \"sky_replacement\": true,\n            \"lawn_replacement\": true,\n            \"tv_screen_replacement\": true,\n            \"add_fire_in_fireplace\": false,\n            \"remove_snow\": false,\n            \"blurring\": false,\n            \"object_removal\": true,\n            \"occupied_to_vacant\": false,\n            \"day_to_dusk\": true,\n            \"virtual_staging\": false\n        }\n    ],\n    \"deliver_to_client\":true,\n    \"client_info\":{\n        \"client_name\":\"john\",\n        \"client_email\":\"john.doe@gmail.com\"\n    },\n    \"payment\": {\n        \"amount\": 15.01,\n        \"currency\": \"INR\",\n        \"status\": \"pending\",\n       \"date\": \"2024-08-27T00:00:00Z\"\n    },\n    \"apply_to_all\": {\n        \"basic_editing\": false,\n        \"hdr_merge\": true,\n        \"sky_replacement\": true,\n        \"lawn_replacement\": true,\n        \"tv_screen_replacement\": true,\n        \"add_fire_in_fireplace\": false,\n        \"remove_snow\": false,\n        \"blurring\": false,\n        \"object_removal\": true,\n        \"occupied_to_vacant\": false,\n        \"day_to_dusk\": true,\n        \"virtual_staging\": false\n    },\n    \"webhook_url\": \"https://example.com/webhook\"\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/image_editing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"84"},{"key":"ETag","value":"W/\"54-fxk64nPWgeMelD6tcJC9J1077KQ\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 28 Aug 2024 10:22:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"order_status\": \"placed\",\n        \"orderID\": \"17248405514331335\"\n    }\n}"},{"id":"4a66ee58-5396-464b-9f3f-389a69df1fac","name":"Place Order","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"615a78fd-ce9d-411a-92bb-80b6b3dd0263","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"project_name\": \"My Prj\",\n    \"image_list\": [\n        {\n            \"image_urls\": [\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\"\n            ],\n            \"basic_editing\": true,\n            \"hdr_merge\": true,\n            \"straighten\": true,\n            \"crop\": true,\n            \"perspective_correction\": true,\n            \"sky_replacement\": true,\n            \"lawn_replacement\": true,\n            \"client_image_id\": \"56e623evgwsvf\"\n        },\n        {\n            \"image_urls\": [\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\"\n            ],\n            \"hdr_merge\": true,\n            \"basic_editing\": false,\n            \"perspective_correction\": false,\n            \"client_image_id\": \"hjdvuh676762\"\n        }\n    ],\n    \"deliver_to\": {\n        \"name\": \"Deepak\",\n        \"email\": \"user@example.com\"\n    },\n    \"apply_to_all\": {\n        \"basic_editing\": true,\n        \"hdr_merge\": true,\n        \"straighten\": true,\n        \"crop\": true,\n        \"perspective_correction\": true,\n        \"sky_replacement\": true,\n        \"lawn_replacement\": true\n    },\n    \"webhook\": \"https://styldod.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/image_editing"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"93"},{"key":"ETag","value":"W/\"5d-fqSBvdA29ZuS2QqyqC2n/YGvOj0\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Tue, 20 Aug 2024 06:00:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 403,\n    \"request_id\": \"9ff02a30-3bde-4129-bf9f-f613d70a1c2b\",\n    \"message\": \"Invalid API key.\"\n}"},{"id":"ebe568a4-4588-4159-b7bc-5d1d09a7ca2e","name":"Place Order","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"project_name\": \"My Project\",\n    \"image_list\": [\n        {\n            \"image_urls\": [\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\"\n            ],\n            \"basic_editing\": \"fvee\",\n            \"hdr_merge\": true,\n            \"straighten\": true,\n            \"crop\": true,\n            \"perspective_correction\": true,\n            \"sky_replacement\": true,\n            \"lawn_replacement\": true,\n            \"client_image_id\": \"56e623evgwsvf\"\n        },\n        {\n            \"image_urls\": [\n                \"https://example.com/image.png\",\n                \"https://example.com/image.png\"\n            ],\n            \"hdr_merge\": true,\n            \"basic_editing\": false,\n            \"perspective_correction\": false,\n            \"client_image_id\": \"hjdvuh676762\"\n        }\n    ],\n    \"deliver_to\": {\n        \"name\": \"deepak\",\n        \"email\": \"user@styldod.com\"\n    },\n    \"apply_to_all\": {\n        \"basic_editing\": true,\n        \"hdr_merge\": true,\n        \"straighten\": true,\n        \"crop\": true,\n        \"perspective_correction\": true,\n        \"sky_replacement\": true,\n        \"lawn_replacement\": true\n    },\n    \"webhook\": \"https://styldod.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/image_editing"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"112"},{"key":"ETag","value":"W/\"70-r8Mm3UBHcbj9ZtmysiOOMcqV6Sk\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 21 Aug 2024 05:20:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 400,\n    \"request_id\": \"554eb405-d4ca-4d7f-921f-abe44881f2f5\",\n    \"message\": \"\\\"basic_editing\\\" must be a boolean\"\n}"}],"_postman_id":"ce91d023-8e3e-4dca-b5ff-b2babc9be93b"},{"name":"Update Order","id":"dce6b8db-e6d0-42e5-b827-9cd65f07dd96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"project_name\": \"Project Test\",\r\n    \"image_list\": [\r\n        {\r\n            \"image_urls\": [\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\"\r\n            ],\r\n            \"basic_editing\": true,\r\n            \"hdr_merge\": true,\r\n            \"client_image_id\": \"123456789\",\r\n            \"comment\":\"Test order\"\r\n        },\r\n        {\r\n            \"image_urls\": [\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\"\r\n            ],\r\n            \"client_image_id\": \"888856789\",\r\n            \"basic_editing\": false,\r\n            \"hdr_merge\": true,\r\n            \"sky_replacement\": true,\r\n            \"lawn_replacement\": true,\r\n            \"tv_screen_replacement\": true,\r\n            \"add_fire_in_fireplace\": false,\r\n            \"remove_snow\": false,\r\n            \"blurring\": false,\r\n            \"object_removal\": true,\r\n            \"occupied_to_vacant\": false,\r\n            \"day_to_dusk\": true,\r\n            \"virtual_staging\": false\r\n        }\r\n    ],\r\n    \"deliver_to_client\":true,\r\n    \"client_info\":{\r\n        \"client_name\":\"john\",\r\n        \"client_email\":\"john.doe@gmail.com\"\r\n    },\r\n    \"payment\": {\r\n        \"amount\": 15.01,\r\n        \"currency\": \"INR\",\r\n        \"status\": \"pending\",\r\n       \"date\": \"2024-08-27T00:00:00Z\"\r\n    },\r\n    \"apply_to_all\": {\r\n        \"basic_editing\": false,\r\n        \"hdr_merge\": true,\r\n        \"sky_replacement\": true,\r\n        \"lawn_replacement\": true,\r\n        \"occupied_to_vacant\": false,\r\n        \"day_to_dusk\": true,\r\n        \"virtual_staging\": false\r\n    },\r\n    \"webhook_url\": \"https://example.com/webhook\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/image_editing/:{orderID}","description":"<p>This API allows you to update an existing order by replacing it with the new data provided in the request payload. The entire resource is overwritten with the new values, so all necessary fields must be included. The API identifies the resource to be updated based on a orderID and replaces the current resource with the updated data.</p>\n<p><em>Note: Order can be only updated till order_status is</em> <code>placed</code>. Once the order progresses beyond this status, updates are no longer permitted.</p>\n<h2 id=\"attributes\"><strong>Attributes</strong></h2>\n<hr />\n<ul>\n<li><p><strong>orderID</strong> (required): string<br />  The orderID that was received in response to your place order API's request.</p>\n</li>\n<li><p><strong>project_name (</strong><em><strong>required</strong></em><strong>):</strong> string<br />  The name of the project.<br />  <em>maximum allowed 256 characters</em></p>\n</li>\n<li><p><strong>webhook_url (optional):</strong> string<br />  optional webhook callback URL, which can be used for receiving the final response when the job is completed or error details when it fails.</p>\n</li>\n<li><p><strong>image_list (required):</strong> array<br />  An array of objects each containing image URLs and editing options.<br />  <em>minimum required 1 image</em></p>\n<ul>\n<li><p><strong>image_urls (required):</strong> array<br />  An array of URLs pointing to the images of different exposures to be merged.<br />  <em>minimum required 1 image</em></p>\n</li>\n<li><p><strong>client_image_id (optional):</strong> string<br />  A unique identifier for each image from the client side. This can be used by the client only for tracking the images. We will not use this for any other purpose.</p>\n</li>\n<li><p><strong>comment (optional):</strong> string<br />  A text field where the user can provide any additional instructions or comments for the editor. This could include specific requests or details to consider during the editing process. <em>maximum allowed 1000 characters</em></p>\n</li>\n<li><p><strong>basic_editing (optional):</strong> boolean<br />  Flag indicating whether basic editing is applied.</p>\n</li>\n<li><p><strong>hdr_merge (optional):</strong> boolean<br />  Flag indicating whether HDR merging is applied.</p>\n</li>\n<li><p><strong>sky_replacement (optional):</strong> boolean<br />  Flag indicating whether sky replacement is applied.</p>\n</li>\n<li><p><strong>lawn_replacement (optional):</strong> boolean<br />  Flag indicating whether lawn replacement is applied.</p>\n</li>\n<li><p><strong>tv_screen_replacement (optional):</strong> boolean<br />  Flag indicating whether to replace the TV screen in the image with a different display or content.</p>\n</li>\n<li><p><strong>add_fire_in_fireplace (optional):</strong> boolean<br />  Flag indicating whether to digitally add a fire to the fireplace in the image.</p>\n</li>\n<li><p><strong>remove_snow (optional):</strong> boolean<br />  Flag indicating whether to remove snow from the image, making it appear as if the scene is snow-free.</p>\n</li>\n<li><p><strong>blurring (optional):</strong> boolean<br />  Flag indicating whether to apply a blurring effect to specific areas of the image, such as backgrounds or personal details.</p>\n</li>\n<li><p><strong>object_removal (optional):</strong> boolean<br />  Flag indicating whether to remove unwanted objects from the image.</p>\n</li>\n<li><p><strong>occupied_to_vacant (optional):</strong> boolean<br />  Flag indicating whether to digitally remove furniture and other items to make the space appear vacant.</p>\n</li>\n<li><p><strong>day_to_dusk (optional):</strong> boolean<br />  Flag indicating whether to transform a daytime image into a dusk or evening scene.</p>\n</li>\n<li><p><strong>virtual_staging (optional):</strong> boolean<br />  Flag indicating whether to add virtual furniture or décor to an empty or minimally furnished space in the image.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>deliver_to_client (optional):</strong> boolean<br />  Determines whether the final output should be delivered directly to the client. If set to <code>true</code>, the processed images or order details will be sent to the client's email specified in <code>client_info</code>.</p>\n</li>\n<li><p><strong>client_info (optional):</strong> object<br />  An object containing the client's contact information. This field is required if <code>deliver_to_client</code> is set to <code>true</code></p>\n<ul>\n<li><p><strong>client_name (optional):</strong> string<br />  The name of the client. Optional but recommended for personalized delivery.<br />  <em>maximum allowed 256 characters</em></p>\n</li>\n<li><p><strong>client_email (required):</strong> string<br />  The email address of the client. This is required for delivering the final output if <code>deliver_to_client</code> is set to <code>true</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>payment (optional):</strong> object<br />  An object containing the order's payment information.</p>\n<ul>\n<li><p><strong>amount (required):</strong> number<br />  The total amount of the payment.</p>\n</li>\n<li><p><strong>currency (required):</strong> string<br />  The currency in which the payment is made. It should follow the ISO 4217 standard. Example: <code>INR</code> (Indian Rupee)</p>\n</li>\n<li><p><strong>status (optional):</strong> string<br />  The current status of the payment.</p>\n</li>\n<li><p><strong>date (optional):</strong> string<br />  The date and time of the payment.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>apply_to_all (optional):</strong> object<br />  An object specifying default editing options to be applied to all images.</p>\n<ul>\n<li><p><strong>basic_editing (optional):</strong> boolean<br />  Flag indicating whether basic editing is applied.</p>\n</li>\n<li><p><strong>hdr_merge (optional):</strong> boolean<br />  Flag indicating whether HDR merging is applied.</p>\n</li>\n<li><p><strong>sky_replacement (optional):</strong> boolean<br />  Flag indicating whether sky replacement is applied.</p>\n</li>\n<li><p><strong>lawn_replacement (optional):</strong> boolean<br />  Flag indicating whether lawn replacement is applied.</p>\n</li>\n<li><p><strong>tv_screen_replacement (optional):</strong> boolean<br />  Flag indicating whether to replace the TV screen in the image with a different display or content.</p>\n</li>\n<li><p><strong>add_fire_in_fireplace (optional):</strong> boolean<br />  Flag indicating whether to digitally add a fire to the fireplace in the image.</p>\n</li>\n<li><p><strong>remove_snow (optional):</strong> boolean<br />  Flag indicating whether to remove snow from the image, making it appear as if the scene is snow-free.</p>\n</li>\n<li><p><strong>blurring (optional):</strong> boolean<br />  Flag indicating whether to apply a blurring effect to specific areas of the image, such as backgrounds or personal details.</p>\n</li>\n<li><p><strong>object_removal (optional):</strong> boolean<br />  Flag indicating whether to remove unwanted objects from the image.</p>\n</li>\n<li><p><strong>occupied_to_vacant (optional):</strong> boolean<br />  Flag indicating whether to digitally remove furniture and other items to make the space appear vacant.</p>\n</li>\n<li><p><strong>day_to_dusk (optional):</strong> boolean<br />  Flag indicating whether to transform a daytime image into a dusk or evening scene.</p>\n</li>\n<li><p><strong>virtual_staging (optional):</strong> boolean<br />  Flag indicating whether to add virtual furniture or décor to an empty or minimally furnished space in the image.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["v2","order","image_editing",":{orderID}"],"host":["https://orderapi.styldod.com"],"query":[],"variable":[{"type":"any","value":"17242316281412837","key":"{orderID}"}]}},"response":[{"id":"49756ed5-714c-4dca-a184-c6ca0f2ad8f2","name":"Update Order","originalRequest":{"method":"PUT","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"project_name\": \"Project Test\",\r\n    \"image_list\": [\r\n        {\r\n            \"image_urls\": [\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\"\r\n            ],\r\n            \"basic_editing\": true,\r\n            \"hdr_merge\": true,\r\n            \"client_image_id\": \"123456789\",\r\n            \"comment\":\"Test order\"\r\n        },\r\n        {\r\n            \"image_urls\": [\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\",\r\n                \"https://example.com/image.png\"\r\n            ],\r\n            \"client_image_id\": \"888856789\",\r\n            \"basic_editing\": false,\r\n            \"hdr_merge\": true,\r\n            \"sky_replacement\": true,\r\n            \"lawn_replacement\": true,\r\n            \"tv_screen_replacement\": true,\r\n            \"add_fire_in_fireplace\": false,\r\n            \"remove_snow\": false,\r\n            \"blurring\": false,\r\n            \"object_removal\": true,\r\n            \"occupied_to_vacant\": false,\r\n            \"day_to_dusk\": true,\r\n            \"virtual_staging\": false\r\n        }\r\n    ],\r\n    \"deliver_to_client\":true,\r\n    \"client_info\":{\r\n        \"client_name\":\"john\",\r\n        \"client_email\":\"john.doe@gmail.com\"\r\n    },\r\n    \"payment\": {\r\n        \"amount\": 15.01,\r\n        \"currency\": \"INR\",\r\n        \"status\": \"pending\",\r\n       \"date\": \"2024-08-27T00:00:00Z\"\r\n    },\r\n    \"apply_to_all\": {\r\n        \"basic_editing\": false,\r\n        \"hdr_merge\": true,\r\n        \"sky_replacement\": true,\r\n        \"lawn_replacement\": true,\r\n        \"occupied_to_vacant\": false,\r\n        \"day_to_dusk\": true,\r\n        \"virtual_staging\": false\r\n    },\r\n    \"webhook_url\": \"https://example.com/webhook\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/image_editing/{orderID}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"85"},{"key":"ETag","value":"W/\"55-jO/oyPHCgJTcpupeob1VRklLcgE\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 28 Aug 2024 10:23:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"message\": \"order updated\",\n        \"orderID\": \"17230167715323663\"\n    }\n}"}],"_postman_id":"dce6b8db-e6d0-42e5-b827-9cd65f07dd96"}],"id":"f4044db0-88cd-422b-b7bf-3e3df58422ba","_postman_id":"f4044db0-88cd-422b-b7bf-3e3df58422ba","description":""},{"name":"Get Upload URLs","id":"0c932db6-7a5f-4678-a0d5-e4de41a52551","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"files_list\": [\r\n        {\r\n            \"file_name\": \"922A4846.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4832.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4818.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4809.CR2\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/get_upload_urls","description":"<p>This API provides a presigned URL for each image, allowing secure and temporary access for uploading images directly to cloud storage. The presigned URL is valid for a limited time, ensuring that only authorized uploads occur. Use this URL to upload the image data directly to the specified storage location.</p>\n<h2 id=\"attributes\">A<strong>ttributes</strong></h2>\n<hr />\n<ul>\n<li><p><strong>files_list (required)</strong><br />  An array of objects, each representing a file to be processed.</p>\n</li>\n<li><p><strong>file_name (required)</strong><br />  The name of the file, including its extension, that is to be uploaded or processed.</p>\n</li>\n</ul>\n","urlObject":{"path":["v2","order","get_upload_urls"],"host":["https://orderapi.styldod.com"],"query":[],"variable":[]}},"response":[{"id":"28fecbbb-b216-4d53-97f0-7536c88ee7a5","name":"Get Upload URLs","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"files_list\": [\r\n        {\r\n            \"file_name\": \"922A4846.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4832.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4818.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4809.CR2\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/get_upload_urls"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Aug 2024 16:14:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1399"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"08cd05e0-e380-4377-aaca-9d4b755f16d0"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"expect-ct","value":"max-age=0"},{"key":"content-encoding","value":"gzip"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"dLQzxGFLPHcER2w="},{"key":"vary","value":"Accept-Encoding"},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"15f9-aIFOU7uEAcar2R3wqPkd5grv3HI\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-66cdfb4b-1c6fe7f4574e03102419120a;Parent=2d55a4e91394a9f7;Sampled=0;lineage=b4a40177:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"file_name\": \"922A4846.CR2\",\n            \"upload_url\": \"https://magicstore.s3.us-west-2.amazonaws.com/magicstore/image-editing/922A4846-8183d10f-a011-4f81-9532-d08e96fd5649.CR2?Content-Type=image%2F%2A&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATCWJH5P5S7UJL7OV%2F20240827%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240827T161403Z&X-Amz-Expires=7200&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEAAaCXVzLXdlc3QtMiJHMEUCIQDd1ypeJT6cGA7F59DSfy2%2BGNRz%2FZaFMoQKiZNfGL1feQIgIuEE1%2F6Tqt0V05Syc9OPnczkkahpfhvxkcS1gg0I%2BuAq%2FgIIGRABGgwyMTE5NDkxODYwNDMiDKxoC%2FTx%2BF0t7Z6cXCrbAkIPmimPp9hctZsqq4bDXusOFml3w4B7%2FpsqBvp0R95uUJjWDuGfYKrMAVaDm5pWm3dW2cjqB7XCmhr81JKV%2FoI4fzEzGIwmG0ulwK%2BStoEWJPVwbK7eVEZPeYjdRPWPwoHCndRKEDmCldYdhPBwJGMrq6L5ER3lXBmvVZ6ibvJFR%2BqHkAunpaMPTMvbmnyyYiQgEP%2F04RB2yeRhklyIM%2FlLLX6Uppv74otl3h33Uzkvch%2Bwqxsl40GIhocLi993cDrLU14vPjriNlcQ0sZDNX8PWBqwMbXrED6ORPXROs4JI8jw2ctfF1E6oWFkaxjG85X6%2F7lBThhj%2BO%2FC0r5KDhRvFNNRqZRKlOMMq%2FqzpPzWhWu5ePTvSeLIPtjTK7TciUIYSGE3JJCOq9rf7JTpsyS56lmTCwtDb96l6mhyQyw%2BGg0Fks7ME0UqZVTt%2BBxeVGklzRPZZe3d6LJkMKbyt7YGOp4Bac5mnT%2BSxnz4nYySRnIpHT57yvpJA%2FueuA5y2srVeBIxcZ2HbLr0XKpVT7j6RItqLc22brMPzKjr%2FvXlqedUvQ62sSDbHtO8u5zRy6wDhFzmzOT5sV%2F1ETmZoVf2MnYNs27eJr8UtplUCqHqwMUjLzXg1Ddbgf8HbnkygmZMoRFgti4GCWchNMaizbQpBNDhdckLKLcysRqTGgQ1l%2Fs%3D&X-Amz-Signature=1f78f522c65cbe4a2e6fe04d640a5b7be78e8bba714302a1843c5c7cc0502f01&X-Amz-SignedHeaders=host\"\n        },\n        {\n            \"file_name\": \"922A4832.CR2\",\n            \"upload_url\": \"https://magicstore.s3.us-west-2.amazonaws.com/magicstore/image-editing/922A4832-ab122df5-fd7c-4161-a253-1b2b7cce2340.CR2?Content-Type=image%2F%2A&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATCWJH5P5S7UJL7OV%2F20240827%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240827T161403Z&X-Amz-Expires=7200&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEAAaCXVzLXdlc3QtMiJHMEUCIQDd1ypeJT6cGA7F59DSfy2%2BGNRz%2FZaFMoQKiZNfGL1feQIgIuEE1%2F6Tqt0V05Syc9OPnczkkahpfhvxkcS1gg0I%2BuAq%2FgIIGRABGgwyMTE5NDkxODYwNDMiDKxoC%2FTx%2BF0t7Z6cXCrbAkIPmimPp9hctZsqq4bDXusOFml3w4B7%2FpsqBvp0R95uUJjWDuGfYKrMAVaDm5pWm3dW2cjqB7XCmhr81JKV%2FoI4fzEzGIwmG0ulwK%2BStoEWJPVwbK7eVEZPeYjdRPWPwoHCndRKEDmCldYdhPBwJGMrq6L5ER3lXBmvVZ6ibvJFR%2BqHkAunpaMPTMvbmnyyYiQgEP%2F04RB2yeRhklyIM%2FlLLX6Uppv74otl3h33Uzkvch%2Bwqxsl40GIhocLi993cDrLU14vPjriNlcQ0sZDNX8PWBqwMbXrED6ORPXROs4JI8jw2ctfF1E6oWFkaxjG85X6%2F7lBThhj%2BO%2FC0r5KDhRvFNNRqZRKlOMMq%2FqzpPzWhWu5ePTvSeLIPtjTK7TciUIYSGE3JJCOq9rf7JTpsyS56lmTCwtDb96l6mhyQyw%2BGg0Fks7ME0UqZVTt%2BBxeVGklzRPZZe3d6LJkMKbyt7YGOp4Bac5mnT%2BSxnz4nYySRnIpHT57yvpJA%2FueuA5y2srVeBIxcZ2HbLr0XKpVT7j6RItqLc22brMPzKjr%2FvXlqedUvQ62sSDbHtO8u5zRy6wDhFzmzOT5sV%2F1ETmZoVf2MnYNs27eJr8UtplUCqHqwMUjLzXg1Ddbgf8HbnkygmZMoRFgti4GCWchNMaizbQpBNDhdckLKLcysRqTGgQ1l%2Fs%3D&X-Amz-Signature=ff1cf9f0100fc5a0c06e0dbfe5faf89b001aef7a150c68e44e11187965f07fa8&X-Amz-SignedHeaders=host\"\n        },\n        {\n            \"file_name\": \"922A4818.CR2\",\n            \"upload_url\": \"https://magicstore.s3.us-west-2.amazonaws.com/magicstore/image-editing/922A4818-3cbf5100-3ef8-4c54-a49e-2b333fd6e89d.CR2?Content-Type=image%2F%2A&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATCWJH5P5S7UJL7OV%2F20240827%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240827T161403Z&X-Amz-Expires=7200&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEAAaCXVzLXdlc3QtMiJHMEUCIQDd1ypeJT6cGA7F59DSfy2%2BGNRz%2FZaFMoQKiZNfGL1feQIgIuEE1%2F6Tqt0V05Syc9OPnczkkahpfhvxkcS1gg0I%2BuAq%2FgIIGRABGgwyMTE5NDkxODYwNDMiDKxoC%2FTx%2BF0t7Z6cXCrbAkIPmimPp9hctZsqq4bDXusOFml3w4B7%2FpsqBvp0R95uUJjWDuGfYKrMAVaDm5pWm3dW2cjqB7XCmhr81JKV%2FoI4fzEzGIwmG0ulwK%2BStoEWJPVwbK7eVEZPeYjdRPWPwoHCndRKEDmCldYdhPBwJGMrq6L5ER3lXBmvVZ6ibvJFR%2BqHkAunpaMPTMvbmnyyYiQgEP%2F04RB2yeRhklyIM%2FlLLX6Uppv74otl3h33Uzkvch%2Bwqxsl40GIhocLi993cDrLU14vPjriNlcQ0sZDNX8PWBqwMbXrED6ORPXROs4JI8jw2ctfF1E6oWFkaxjG85X6%2F7lBThhj%2BO%2FC0r5KDhRvFNNRqZRKlOMMq%2FqzpPzWhWu5ePTvSeLIPtjTK7TciUIYSGE3JJCOq9rf7JTpsyS56lmTCwtDb96l6mhyQyw%2BGg0Fks7ME0UqZVTt%2BBxeVGklzRPZZe3d6LJkMKbyt7YGOp4Bac5mnT%2BSxnz4nYySRnIpHT57yvpJA%2FueuA5y2srVeBIxcZ2HbLr0XKpVT7j6RItqLc22brMPzKjr%2FvXlqedUvQ62sSDbHtO8u5zRy6wDhFzmzOT5sV%2F1ETmZoVf2MnYNs27eJr8UtplUCqHqwMUjLzXg1Ddbgf8HbnkygmZMoRFgti4GCWchNMaizbQpBNDhdckLKLcysRqTGgQ1l%2Fs%3D&X-Amz-Signature=ee7137f5b4ba185b4637331462375c0e4a88308b4c00416b4dcb24f5a3ca5ff0&X-Amz-SignedHeaders=host\"\n        },\n        {\n            \"file_name\": \"922A4809.CR2\",\n            \"upload_url\": \"https://magicstore.s3.us-west-2.amazonaws.com/magicstore/image-editing/922A4809-17b76997-cb03-4a2f-93c5-e809b7ed6cc6.CR2?Content-Type=image%2F%2A&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATCWJH5P5S7UJL7OV%2F20240827%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240827T161403Z&X-Amz-Expires=7200&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEAAaCXVzLXdlc3QtMiJHMEUCIQDd1ypeJT6cGA7F59DSfy2%2BGNRz%2FZaFMoQKiZNfGL1feQIgIuEE1%2F6Tqt0V05Syc9OPnczkkahpfhvxkcS1gg0I%2BuAq%2FgIIGRABGgwyMTE5NDkxODYwNDMiDKxoC%2FTx%2BF0t7Z6cXCrbAkIPmimPp9hctZsqq4bDXusOFml3w4B7%2FpsqBvp0R95uUJjWDuGfYKrMAVaDm5pWm3dW2cjqB7XCmhr81JKV%2FoI4fzEzGIwmG0ulwK%2BStoEWJPVwbK7eVEZPeYjdRPWPwoHCndRKEDmCldYdhPBwJGMrq6L5ER3lXBmvVZ6ibvJFR%2BqHkAunpaMPTMvbmnyyYiQgEP%2F04RB2yeRhklyIM%2FlLLX6Uppv74otl3h33Uzkvch%2Bwqxsl40GIhocLi993cDrLU14vPjriNlcQ0sZDNX8PWBqwMbXrED6ORPXROs4JI8jw2ctfF1E6oWFkaxjG85X6%2F7lBThhj%2BO%2FC0r5KDhRvFNNRqZRKlOMMq%2FqzpPzWhWu5ePTvSeLIPtjTK7TciUIYSGE3JJCOq9rf7JTpsyS56lmTCwtDb96l6mhyQyw%2BGg0Fks7ME0UqZVTt%2BBxeVGklzRPZZe3d6LJkMKbyt7YGOp4Bac5mnT%2BSxnz4nYySRnIpHT57yvpJA%2FueuA5y2srVeBIxcZ2HbLr0XKpVT7j6RItqLc22brMPzKjr%2FvXlqedUvQ62sSDbHtO8u5zRy6wDhFzmzOT5sV%2F1ETmZoVf2MnYNs27eJr8UtplUCqHqwMUjLzXg1Ddbgf8HbnkygmZMoRFgti4GCWchNMaizbQpBNDhdckLKLcysRqTGgQ1l%2Fs%3D&X-Amz-Signature=239531adfd2bbd6baa479aa00347c75432be285dd80c8b3b63100a935d50e973&X-Amz-SignedHeaders=host\"\n        }\n    ]\n}"},{"id":"caf5aac8-3a94-4641-8472-e8e3da50bbcd","name":"Get Upload URLs","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"files_listt\": [\r\n        {\r\n            \"file_name\": \"922A4846.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4832.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4818.CR2\"\r\n        },\r\n        {\r\n            \"file_name\": \"922A4809.CR2\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://orderapi.styldod.com/v2/order/get_upload_urls"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"83"},{"key":"ETag","value":"W/\"53-QpEdx0jPMS7VPG4EAPym0YvAmrM\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Tue, 20 Aug 2024 06:06:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 400,\n    \"message\": \"\\\"files_list\\\" is required, \\\"files_listt\\\" is not allowed\"\n}"}],"_postman_id":"0c932db6-7a5f-4678-a0d5-e4de41a52551"},{"name":"Get All Orders","id":"01675402-88a6-44da-bbc1-75b492e62a43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/get_all_orders?limit=5&sort_by=createdAt&order_status=placed&order_type=image_editing&start_date=2024-08-27&end_date=2024-08-28&skip=0","description":"<p>This API retrieves a list of all orders, with optional filtering and pagination.</p>\n<p>Users can pass various query parameters to refine the results.</p>\n<h2 id=\"attributes\">A<strong>ttributes</strong></h2>\n<hr />\n<ul>\n<li><p><strong>limit (optional):</strong> Specifies the maximum number of orders to return. The default is 10 if not provided, and the maximum allowed is 100.</p>\n</li>\n<li><p><strong>skip (optional):</strong> Specifies the number of orders to skip for paginated results.</p>\n</li>\n<li><p><strong>sort_by (optional):</strong> Defines the sorting order of the results. Only the following fields are allowed: createdAt, updatedAt, orderID, payment_date, and their descending counterparts prefixed with - (e.g., -createdAt to sort by creation date in descending order).</p>\n</li>\n<li><p><strong>start_date (optional):</strong> Filters the results to include only the orders created on or after the specified start_date. The date should be in the format YYYY-MM-DD (e.g., 2024-08-22).</p>\n</li>\n<li><p><strong>end_date (optional):</strong> Filters the results to include only the orders created up to and including the specified end_date. The end_date is inclusive, meaning records created on the specified end_date will be included in the results.<br />  The date should be in the format YYYY-MM-DD.</p>\n</li>\n<li><p><strong>order_status (optional):</strong> Filters orders by their status. Allowed statuses are: created, processing, post_processing, done, and error.</p>\n</li>\n<li><p><strong>order_type (optional):</strong> Filters orders by type, e.g., <code>image_editing</code>.</p>\n</li>\n<li><p><strong>project_name (optional):</strong> Filters orders by project_name. The project_name corresponds to the name of the project provided by the user when placing the order.</p>\n</li>\n</ul>\n<p><em>Note: In one API call, the user can retrieve up to 100 orders. If the</em> <code>limit</code> <em>is not specified in the query, a default of 10 orders will be applied.</em></p>\n","urlObject":{"path":["v2","order","get_all_orders"],"host":["https://orderapi.styldod.com"],"query":[{"key":"limit","value":"5"},{"key":"sort_by","value":"createdAt"},{"key":"order_status","value":"placed"},{"key":"order_type","value":"image_editing"},{"key":"start_date","value":"2024-08-27"},{"key":"end_date","value":"2024-08-28"},{"key":"skip","value":"0"}],"variable":[]}},"response":[{"id":"1a377e93-8490-44be-92c0-3bb14e0cc2e6","name":"Get All Orders","originalRequest":{"method":"GET","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"https://orderapi.styldod.com/v2/order/get_all_orders?limit=2&page=1&sort_by=-createdAt&order_status=done&order_type=image_editing&start_date=2024-08-22&end_date=2024-08-22","host":["https://orderapi.styldod.com"],"path":["v2","order","get_all_orders"],"query":[{"key":"limit","value":"2"},{"key":"page","value":"1"},{"key":"sort_by","value":"-createdAt"},{"key":"order_status","value":"done"},{"key":"order_type","value":"image_editing"},{"key":"start_date","value":"2024-08-22"},{"key":"end_date","value":"2024-08-22"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e01-4o6Gjfes9TbMmolMOKTk6d6iHco\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 22 Aug 2024 06:08:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"results\": [\n            {\n                \"image_list\": [\n                    {\n                        \"image_urls\": [\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\"\n                        ],\n                        \"client_image_id\": \"clientId\",\n                        \"image_status\":\"completed\",\n                        \"basic_editing\": false,\n                        \"hdr_merge\": true,\n                        \"sky_replacement\": true,\n                        \"lawn_replacement\": true,\n                        \"tv_screen_replacement\": true,\n                        \"add_fire_in_fireplace\": false,\n                        \"remove_snow\": false,\n                        \"blurring\": false,\n                        \"object_removal\": true,\n                        \"occupied_to_vacant\": false,\n                        \"day_to_dusk\": true,\n                        \"virtual_staging\": false\n                    },\n                    {\n                        \"image_urls\": [\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\"\n                        ],\n                        \"image_status\":\"completed\",\n                        \"client_image_id\": \"clientId\",\n                        \"add_fire_in_fireplace\": false,\n                        \"remove_snow\": false,\n                        \"blurring\": false,\n                        \"object_removal\": true,\n                        \"occupied_to_vacant\": false,\n                        \"day_to_dusk\": true,\n                        \"virtual_staging\": false\n                    }\n                ],\n                \"order_status\": \"completed\",\n                \"additional_comment\": [],\n                \"project_name\": \"My Project\",\n                \"apply_to_all\": {\n                    \"basic_editing\": false,\n                    \"hdr_merge\": true,\n                    \"sky_replacement\": true,\n                    \"lawn_replacement\": true,\n                    \"tv_screen_replacement\": true,\n                    \"add_fire_in_fireplace\": false,\n                    \"remove_snow\": false,\n                    \"blurring\": false,\n                    \"object_removal\": true,\n                    \"occupied_to_vacant\": false,\n                    \"day_to_dusk\": true,\n                    \"virtual_staging\": false\n                },\n                \"orderID\": \"17243009579811129\",\n                \"number_of_img\": \"2\",\n                \"order_type\": \"image_editing\",\n                \"createdAt\": \"2024-08-22T04:29:17.985Z\",\n                \"updatedAt\": \"2024-08-22T04:30:04.001Z\"\n            },\n            {\n                \"image_list\": [\n                    {\n                        \"image_urls\": [\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\"\n                        ],\n                        \"image_status\":\"completed\",\n                        \"client_image_id\": \"clientId\",\n                        \"basic_editing\": false,\n                        \"tv_screen_replacement\": true,\n                        \"add_fire_in_fireplace\": false,\n                        \"remove_snow\": false,\n                        \"blurring\": false,\n                        \"object_removal\": true,\n                        \"occupied_to_vacant\": false,\n                        \"day_to_dusk\": true,\n                        \"virtual_staging\": false\n                    },\n                    {\n                        \"image_urls\": [\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\",\n                            \"https://example.com/image.png\"\n                        ],\n                        \"image_status\":\"completed\",\n                        \"client_image_id\": \"clientId\",\n                        \"basic_editing\": false,\n                        \"hdr_merge\": true,\n                        \"object_removal\": true,\n                        \"occupied_to_vacant\": false,\n                        \"day_to_dusk\": true,\n                        \"virtual_staging\": false\n                    }\n                ],\n                \"order_status\": \"completed\",\n                \"additional_comment\": [],\n                \"project_name\": \"My Project2\",\n                \"apply_to_all\": {\n                    \"hdr_merge\": true,\n                    \"sky_replacement\": true,\n                    \"lawn_replacement\": true,\n                    \"tv_screen_replacement\": true,\n                    \"add_fire_in_fireplace\": false,\n                    \"remove_snow\": false,\n                    \"blurring\": false,\n                    \"object_removal\": true,\n                    \"occupied_to_vacant\": false,\n                    \"day_to_dusk\": true,\n                    \"virtual_staging\": false\n                },\n                \"orderID\": \"17243005328598543\",\n                \"number_of_img\": \"2\",\n                \"order_type\": \"image_editing\",\n                \"createdAt\": \"2024-08-22T04:22:12.889Z\",\n                \"updatedAt\": \"2024-08-22T04:22:59.785Z\"\n            }\n        ],\n        \"skip\": 1,\n        \"limit\": 2,\n        \"totalResults\": 6\n    }\n}"},{"id":"80d1035c-e4f7-4f3c-94d1-90686aa3a9f5","name":"Get All Orders","originalRequest":{"method":"GET","header":[{"key":"api-key","value":"615a78fd-ce9d-411a-92bb-80b6b3dd0264","type":"text"}],"url":{"raw":"https://orderapi.styldod.com/v2/order/get_all_orders?limit=2&page=1&sort_by=-createdAt&order_status=done&order_type=image_editing","host":["https://orderapi.styldod.com"],"path":["v2","order","get_all_orders"],"query":[{"key":"limit","value":"2"},{"key":"page","value":"1"},{"key":"sort_by","value":"-createdAt"},{"key":"order_status","value":"done"},{"key":"order_type","value":"image_editing"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e03-/7U8wpD6z/LjuZaj3GW1KqGNndk\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 22 Aug 2024 06:05:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"results\": [\n            {\n                \"image_list\": [\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6204.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6205.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6206.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6207.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6208.NEF\"\n                        ],\n                        \"hdr_merge\": true,\n                        \"basic_editing\": false,\n                        \"perspective_correction\": false,\n                        \"image_id\": \"17243009579822363\"\n                    },\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6204.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6205.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6206.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6207.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6208.NEF\"\n                        ],\n                        \"hdr_merge\": true,\n                        \"basic_editing\": false,\n                        \"perspective_correction\": false,\n                        \"image_id\": \"17243009579828799\",\n                        \"image_analysis\": {\n                            \"image_type\": \"interior\",\n                            \"natural_light\": true,\n                            \"wooden_flooring\": true,\n                            \"furnished\": true,\n                            \"has_windows\": true,\n                            \"snow_covered\": false,\n                            \"blue_sky\": false,\n                            \"green_lawn\": false,\n                            \"color_temperature\": \"neutral\"\n                        },\n                        \"merged_url\": \"https://magicstore.styldod.com/image-editing/17243009579811129/17243009579828799/merged.jpeg\",\n                        \"thumbnail_url\": \"https://magicstore.styldod.com/image-editing/17243009579811129/17243009579828799/512x512.webp\"\n                    }\n                ],\n                \"order_status\": \"completed\",\n                \"additional_comment\": [],\n                \"project_name\": \"My Prj\",\n                \"apply_to_all\": {\n                    \"hdr_merge\": true,\n                    \"basic_editing\": false,\n                    \"perspective_correction\": false\n                },\n                \"orderID\": \"17243009579811129\",\n                \"number_of_img\": \"2\",\n                \"order_type\": \"image_editing\",\n                \"createdAt\": \"2024-08-22T04:29:17.985Z\",\n                \"updatedAt\": \"2024-08-22T04:30:04.001Z\"\n            },\n            {\n                \"image_list\": [\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6204.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6205.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6206.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6207.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6208.NEF\"\n                        ],\n                        \"hdr_merge\": true,\n                        \"basic_editing\": false,\n                        \"perspective_correction\": false,\n                        \"image_id\": \"17243005328618605\",\n                        \"image_analysis\": {\n                            \"image_type\": \"interior\",\n                            \"natural_light\": true,\n                            \"wooden_flooring\": true,\n                            \"furnished\": true,\n                            \"has_windows\": true,\n                            \"snow_covered\": false,\n                            \"blue_sky\": false,\n                            \"green_lawn\": false,\n                            \"color_temperature\": \"warm\"\n                        },\n                        \"merged_url\": \"https://magicstore.styldod.com/image-editing/17243005328598543/17243005328618605/merged.jpeg\",\n                        \"thumbnail_url\": \"https://magicstore.styldod.com/image-editing/17243005328598543/17243005328618605/512x512.webp\"\n                    },\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6204.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6205.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6206.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6207.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6208.NEF\"\n                        ],\n                        \"hdr_merge\": true,\n                        \"basic_editing\": false,\n                        \"perspective_correction\": false,\n                        \"image_id\": \"17243005328619977\"\n                    }\n                ],\n                \"order_status\": \"completed\",\n                \"additional_comment\": [],\n                \"project_name\": \"My Prj\",\n                \"apply_to_all\": {\n                    \"hdr_merge\": true,\n                    \"basic_editing\": false,\n                    \"perspective_correction\": false\n                },\n                \"orderID\": \"17243005328598543\",\n                \"number_of_img\": \"2\",\n                \"order_type\": \"image_editing\",\n                \"createdAt\": \"2024-08-22T04:22:12.889Z\",\n                \"updatedAt\": \"2024-08-22T04:22:59.785Z\"\n            }\n        ],\n        \"page\": 1,\n        \"limit\": 2,\n        \"totalPages\": 25,\n        \"totalResults\": 50\n    }\n}"},{"id":"32f53879-8211-4414-8018-352fc07b2e3e","name":"Get All Orders","originalRequest":{"method":"GET","header":[{"key":"api-key","value":"615a78fd-ce9d-411a-92bb-80b6b3dd0264","type":"text"}],"url":{"raw":"https://orderapi.styldod.com/v2/order/get_all_orders?limit=2&page=1&sortBy=-createdAt","host":["https://orderapi.styldod.com"],"path":["v2","order","get_all_orders"],"query":[{"key":"limit","value":"2"},{"key":"page","value":"1"},{"key":"sortBy","value":"-createdAt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b51-4SG/lTmA8ng3R92MYMchVx2758E\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 20 Aug 2024 05:57:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"results\": [\n            {\n                \"image_list\": [\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6219.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6220.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6221.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6222.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6223.NEF\"\n                        ],\n                        \"basic_editing\": true,\n                        \"hdr_merge\": true,\n                        \"straighten\": true,\n                        \"crop\": true,\n                        \"perspective_correction\": true,\n                        \"client_image_id\": \"dbi3242\",\n                        \"image_id\": \"17240585111801736\"\n                    },\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6219.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6220.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6221.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6222.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6223.NEF\"\n                        ],\n                        \"hdr_merge\": true,\n                        \"basic_editing\": false,\n                        \"perspective_correction\": false,\n                        \"client_image_id\": \"deepjnio94\",\n                        \"image_id\": \"17240585111806155\"\n                    }\n                ],\n                \"status\": \"placed\",\n                \"additional_comment\": [],\n                \"project_name\": \"Project Test\",\n                \"deliver_to\": {\n                    \"name\": \"deepak\",\n                    \"email\": \"deepak.pandey@styldod.com\"\n                },\n                \"apply_to_all\": {\n                    \"hdr_merge\": false\n                },\n                \"orderID\": \"17240552273720776\",\n                \"number_of_img\": \"2\",\n                \"orderType\": \"image_editing\",\n                \"createdAt\": {},\n                \"updatedAt\": {}\n            },\n            {\n                \"image_list\": [\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6219.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6220.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6221.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6222.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6223.NEF\"\n                        ],\n                        \"basic_editing\": true,\n                        \"hdr_merge\": true,\n                        \"straighten\": true,\n                        \"crop\": true,\n                        \"perspective_correction\": true,\n                        \"sky_replacement\": true,\n                        \"lawn_replacement\": true,\n                        \"client_image_id\": \"56e623evgwsvf\",\n                        \"image_id\": \"17240550545541872\"\n                    },\n                    {\n                        \"image_urls\": [\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6219.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6220.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6221.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6222.NEF\",\n                            \"https://magicstore.styldod.com/image-editing/ORIGINAL-DSC_6223.NEF\"\n                        ],\n                        \"hdr_merge\": true,\n                        \"basic_editing\": false,\n                        \"perspective_correction\": false,\n                        \"client_image_id\": \"hjdvuh676762\",\n                        \"image_id\": \"17240550545548508\"\n                    }\n                ],\n                \"status\": \"placed\",\n                \"additional_comment\": [],\n                \"project_name\": \"My Prj\",\n                \"deliver_to\": {\n                    \"name\": \"deepak\",\n                    \"email\": \"deepak.pandey@styldod.com\"\n                },\n                \"apply_to_all\": {\n                    \"basic_editing\": true,\n                    \"hdr_merge\": true,\n                    \"straighten\": true,\n                    \"crop\": true,\n                    \"perspective_correction\": true,\n                    \"sky_replacement\": true,\n                    \"lawn_replacement\": true\n                },\n                \"orderID\": \"17240550545547342\",\n                \"number_of_img\": \"2\",\n                \"orderType\": \"image_editing\",\n                \"createdAt\": {},\n                \"updatedAt\": {}\n            }\n        ],\n        \"page\": 1,\n        \"limit\": 2,\n        \"totalPages\": 72,\n        \"totalResults\": 144\n    }\n}"}],"_postman_id":"01675402-88a6-44da-bbc1-75b492e62a43"},{"name":"Delete Order","id":"cd5b0741-3cc5-4e43-96aa-4afa2ce8a293","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/:{orderID}","description":"<p>This API allows you to delete an existing order. The API identifies the resource to be deleted based on a orderID and deletes the order.</p>\n<p><em>Note: Order can be only deleted till order_status is</em> <code>placed</code><em>. Once the order progresses beyond this status, deletion are no longer permitted.</em></p>\n<h2 id=\"attributes\"><strong>Attributes</strong></h2>\n<hr />\n<ul>\n<li><strong>orderID</strong> (required): string<br />  The orderID that was received in response to your place order API's request.</li>\n</ul>\n","urlObject":{"path":["v2","order",":{orderID}"],"host":["https://orderapi.styldod.com"],"query":[],"variable":[{"type":"any","value":"17230167715323663","key":"{orderID}"}]}},"response":[{"id":"d8e80be8-f3d7-4585-b7d3-7cab600b61ec","name":"Delete Order","originalRequest":{"method":"DELETE","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/17241336513043471"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"46"},{"key":"ETag","value":"W/\"2e-sD7qVgqsFWz/7EPDYVi3BxDHOF4\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Tue, 20 Aug 2024 06:16:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Order deleted\"\n}"},{"id":"f45e3ab4-ed9b-4c04-90b1-630cda5debe6","name":"Delete Order","originalRequest":{"method":"DELETE","header":[{"key":"api-key","value":"615a78fd-ce9d-411a-92bb-80b6b3dd0264","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/17241336513043472"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"92"},{"key":"ETag","value":"W/\"5c-pJ2lDTjbfWKHeuzwPYz82aiPZSE\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Tue, 20 Aug 2024 06:16:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 404,\n    \"request_id\": \"6d1c50a9-f7cd-4fdc-bec8-1169ddc819fe\",\n    \"message\": \"Order not found\"\n}"}],"_postman_id":"cd5b0741-3cc5-4e43-96aa-4afa2ce8a293"},{"name":"Get order","id":"350d5bf0-86d9-4897-9930-d795ca5615a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/:{orderID}","description":"<p>Use this API to retrieve the details of the order. You will need to provide the orderID that was received in response to your place order API's request.</p>\n<h2 id=\"attributes\">A<strong>ttributes</strong></h2>\n<hr />\n<ul>\n<li><strong>orderID</strong> (<em>required</em>)<strong>:</strong> string<br />  The orderID that was received in response to your place order API's request.</li>\n</ul>\n","urlObject":{"path":["v2","order",":{orderID}"],"host":["https://orderapi.styldod.com"],"query":[],"variable":[{"type":"any","value":"17236372483759063","key":"{orderID}"}]}},"response":[{"id":"6c6b8373-0b86-45d3-a5ac-1f205f28c922","name":"Get order","originalRequest":{"method":"GET","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/17236372483759063"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"553-wk67FMFRBHzjIUWI1BQTfUyTyzE\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 22 Aug 2024 06:06:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"image_list\": [\n            {\n                \"image_urls\": [\n                    \"https://example.com/image1.jpg\",\n                    \"https://example.com/image1.jpg\",\n                    \"https://example.com/image1.jpg\"\n                ],\n                \"output_url\": \"https://example.com/image1.jpg\",\n                \"image_status\": \"completed\",\n                \"client_image_id\": \"IMG#111\",\n                \"basic_editing\": false,\n                \"hdr_merge\": true,\n                \"day_to_dusk\": true,\n                \"virtual_staging\": false\n            },\n            {\n                \"image_urls\": [\n                    \"https://example.com/image2.jpg\",\n                    \"https://example.com/image2.jpg\",\n                    \"https://example.com/image2.jpg\",\n                    \"https://example.com/image2.jpg\",\n                    \"https://example.com/image2.jpg\"\n                ],\n                \"hdr_merge\": true,\n                \"basic_editing\": false,\n                \"output_url\": \"https://example.com/image2.jpg\",\n                \"image_status\": \"completed\",\n                \"client_image_id\": \"IMG#222\"\n            }\n        ],\n        \"order_status\": \"completed\",\n        \"project_name\": \"My Project\",\n        \"orderID\": \"17236372483759063\",\n        \"createdAt\": \"2024-08-14T12:07:28.382Z\",\n        \"updatedAt\": \"2024-08-14T12:17:18.003Z\"\n    }\n}"}],"_postman_id":"350d5bf0-86d9-4897-9930-d795ca5615a4"},{"name":"Get order status","id":"de560c8b-0d79-4484-bdfe-3d7fbb20d324","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-key","value":"{{API_KEY}}","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/get_status/:{orderID}","description":"<p>Use this API to retrieve the status and details of the order. You will need to provide the orderID that was received in response to your place order API's request.</p>\n<p>The possible values of order_status are <em><strong>placed</strong></em>, <em><strong>pre_processing,</strong></em> <em><strong>post_processing,</strong></em> <em><strong>delivered,</strong></em> and <em><strong>error</strong></em>.</p>\n<ul>\n<li><p><strong>placed</strong>: When you initiate a job for processing, the initial status is \"placed.\" This indicates that the job has been successfully queued and is awaiting processing.</p>\n</li>\n<li><p><strong>pre_processing</strong>: Once your job reaches the front of the queue, our server begins processing it. At this stage, the status will be \"pre_processing.\"</p>\n</li>\n<li><p><strong>post_processing</strong>: After the initial processing is complete, we perform some additional steps before marking the job as \"done.\" This phase is denoted as \"post_processing.\"</p>\n</li>\n<li><p><strong>expert_assigned:</strong> This indicates that a human expert has taken over the task. The status will be updated to \"expert_assigned.\"</p>\n</li>\n<li><p><strong>completed</strong>: Once the entire process is finished and the job has been successfully completed, the status changes to \"completed.\" The output is now available to the user.</p>\n</li>\n<li><p><strong>error</strong>: In the event that a job cannot be processed, it will be marked as \"error.\"</p>\n</li>\n</ul>\n<h2 id=\"attributes\">A<strong>ttributes</strong></h2>\n<hr />\n<ul>\n<li><strong>orderID</strong> (<em>required</em>)<strong>:</strong> string<br />  The orderID that was received in response to your place order API's request.</li>\n</ul>\n","urlObject":{"path":["v2","order","get_status",":{orderID}"],"host":["https://orderapi.styldod.com"],"query":[],"variable":[{"type":"any","value":"17242316281412837","key":"{orderID}"}]}},"response":[{"id":"2c614895-bd59-48d8-8c06-a0ef8c9ddeca","name":"Get order status","originalRequest":{"method":"GET","header":[{"key":"api-key","value":"615a78fd-ce9d-411a-92bb-80b6b3dd0264","type":"text"}],"url":"https://orderapi.styldod.com/v2/order/status/17242316281412837"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"215"},{"key":"ETag","value":"W/\"d7-xj8+waKn/WQCDVES+bNv6DvtC9M\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Thu, 22 Aug 2024 06:07:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n\t\"status\": \"success\",\n\t\"data\": {\n\t\t\"image_list\": [\n\t\t\t{\n\t\t\t\t\"client_image_id\": \"IMG#111\",\n\t\t\t\t\"image_status\": \"completed\",\n\t\t\t\t\"output_url\": \"https://www.example.com/image1.jpg\",\n\t\t\t\t\"sequence\": 1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"client_image_id\": \"IMG#222\",\n\t\t\t\t\"image_status\": \"completed\",\n\t\t\t\t\"output_url\": \"https://www.example.com/image2.jpg\",\n\t\t\t\t\"sequence\": 2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"client_image_id\": \"IMG#333\",\n\t\t\t\t\"image_status\": \"error\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"client_image_id\": \"IMG#444\",\n\t\t\t\t\"image_status\": \"completed\",\n\t\t\t\t\"output_url\": \"https://www.example.com/image4.jpg\",\n\t\t\t\t\"sequence\": 3\n\t\t\t}\n\t\t],\n\t\t\"order_status\": \"completed\",\n\t\t\"createdAt\": \"2024-08-21T09:13:48.156Z\",\n\t\t\"updatedAt\": \"2024-08-21T09:17:50.248Z\"\n\t}\n}"}],"_postman_id":"de560c8b-0d79-4484-bdfe-3d7fbb20d324"},{"name":"Health check","id":"c0d10130-59ed-48e2-a7fb-96dd62caf158","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://orderapi.styldod.com/v2/public/healthCheck","description":"<p>The Health Check API is designed to verify the operational status of the system. It allows you to quickly determine if the API and its underlying services are functioning correctly.</p>\n","urlObject":{"path":["v2","public","healthCheck"],"host":["https://orderapi.styldod.com"],"query":[],"variable":[]}},"response":[{"id":"7909fd7b-d5f4-4a86-856c-14326432fddd","name":"Health check","originalRequest":{"method":"GET","header":[],"url":"https://orderapi.styldod.com/v2/public/healthCheck"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"74"},{"key":"ETag","value":"W/\"4a-Iyh9MY1j6KbMlrO5pigyturVG2k\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 28 Aug 2024 09:47:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"mesaage\": \"Server is running\",\n        \"version\": \"v2\"\n    }\n}"}],"_postman_id":"c0d10130-59ed-48e2-a7fb-96dd62caf158"}]}