### List Articles Request Example (Shell) Source: https://api.wisewand.ai/docs/index Provides an example of how to list articles using a GET request to the /v1/articles/ endpoint. It includes query parameters for filtering and pagination. ```shell curl 'https://api.wisewand.ai/v1/articles/?skip=0&take=9&search=&maker=&status=&projectId=&persona=&author=&category=&published=' ``` -------------------------------- ### Get Articles Output (Shell Curl) Source: https://api.wisewand.ai/docs/index This snippet demonstrates how to fetch article output using a cURL command. It requires the article ID and optionally accepts an output ID. The command sends a GET request to the specified API endpoint. ```shell curl 'https://api.wisewand.ai/v1/articles/{id}/output?outputId=' ``` -------------------------------- ### Content Generation Parameters Source: https://api.wisewand.ai/docs/index Defines core parameters for content generation, including target and secondary keywords, search intention, and language/country specifics. These inputs guide the AI in creating relevant and targeted content. ```json { "target_keyword": "string", "keywords_secondary": "string", "search_intention_answer": "string", "additional_information": "string", "avoid_information": "string", "lang": "fr", "country": "fr", "project_id": "123e4567-e89b-12d3-a456-426614174000" } ``` -------------------------------- ### Update Article Request Example (cURL) Source: https://api.wisewand.ai/docs/index This snippet demonstrates how to update an article using a cURL command. It includes the endpoint, HTTP method, content type, and a sample JSON payload for the request body. ```shell curl 'https://api.wisewand.ai/v1/articles/{id}' \ --request PATCH \ --header 'Content-Type: application/json' \ --data '{ "title": "", "type": "blog", "subject": "", "length": 1, "keep_title": true, "target_keyword": "", "keywords_secondary": "", "search_intention_answer": "", "additional_information": "", "avoid_information": "", "lang": "fr", "country": "fr", "project_id": "", "writing_style_mode": "auto", "persona_id": "", "use_cta": true, "ctas": [ { "anchor": "", "url": "" } ], "use_boldkeywords": true, "use_faq": true, "faq_questions": "", "use_toc": true, "use_image": true, "image_ratio": "landscape", "image_prompt": "", "image_use_palette": true, "image_primary_color": "", "image_secondary_color": "", "use_inlineimages": true, "inlineimages_count": 1, "inline_images_ratio": "landscape", "inline_images_use_palette": true, "inline_images_primary_color": "", "inline_images_secondary_color": "", "use_webhook": true, "webhook_connection_id": "", "use_internallinks": true, "use_indexed_pages_internal_links": true, "use_wp_internal_links": true, "use_app_internal_links": true, "use_list_internal_links": true, "internal_links_wp_status": [ "" ], "internal_links_list": "", "internal_links_wp_connection": "", "use_publishwordpress": true, "publishwordpress_date": "", "publishwordpress_status": "draft", "publishwordpress_category": 1, "publishwordpress_author": 1, "publishwordpress_connection": "", "use_infotable": true, "use_bulletlist": true, "use_externalsources": true, "use_audio": true, "audio_voice_id": "", "use_social": true, "social_networks": [ "" ], "information_search_only_from_subject_sources": true, "affiliation_product_name": "", "affiliation_product_review_urls": [ "" ], "affiliation_links": [ { "url": "", "anchor": "" } ], "affiliation_promo_code": "", "affiliation_promo_percentage": "", "affiliation_product_1_name": "", "affiliation_product_1_review_urls": [ "" ], "affiliation_links_product_1": [ { "url": "", "anchor": "" } ], "affiliation_promo_code_1": "", "affiliation_promo_percentage_1": "", "affiliation_product_2_name": "", "affiliation_product_2_review_urls": [ "" ], "affiliation_links_product_2": [ { "url": "", "anchor": "" } ], "affiliation_promo_code_2": "", "affiliation_promo_percentage_2": "", "affiliation_top_products": [ { "name": "", "urls": [ "" ], "affiliation_links": [ { "url": "", "anchor": "" } ], "promo_code": "", "promo_percentage": "" } ], "propertyName*": "anything" }' ``` -------------------------------- ### Get Article Cost using cURL Source: https://api.wisewand.ai/docs/index This snippet demonstrates how to use cURL to send a POST request to the WiseWand AI API to get the cost of creating an article. It includes various optional parameters for customizing the article generation. ```Shell curl https://api.wisewand.ai/v1/articles/cost \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "title": "", "type": "blog", "subject": "", "length": "auto", "keep_title": false, "target_keyword": "", "keywords_secondary": "", "search_intention_answer": "", "additional_information": "", "avoid_information": "", "lang": "fr", "country": "fr", "project_id": "", "writing_style_mode": "auto", "persona_id": "", "use_cta": false, "ctas": [ { "anchor": "", "url": "" } ], "use_boldkeywords": false, "use_faq": false, "faq_questions": "", "use_toc": false, "use_image": false, "image_ratio": "landscape", "image_prompt": "", "image_use_palette": true, "image_primary_color": "", "image_secondary_color": "", "use_inlineimages": false, "inlineimages_count": 1, "inline_images_ratio": "landscape", "inline_images_use_palette": true, "inline_images_primary_color": "", "inline_images_secondary_color": "", "use_webhook": false, "webhook_connection_id": "", "use_internallinks": false, "use_indexed_pages_internal_links": false, "use_wp_internal_links": false, "use_app_internal_links": false, "use_list_internal_links": false, "internal_links_wp_status": [ "publish" ], "internal_links_list": "", "internal_links_wp_connection": "", "use_publishwordpress": false, "publishwordpress_date": "", "publishwordpress_status": "draft", "publishwordpress_category": -2, "publishwordpress_author": 1, "publishwordpress_connection": "", "use_infotable": false, "use_bulletlist": false, "use_externalsources": false, "use_audio": false, "audio_voice_id": "jSrrwmj13CIlQAXPpk4X", "use_social": false, "social_networks": [ "instagram", "facebook", "x", "linkedin" ], "information_search_only_from_subject_sources": false, "affiliation_product_name": "", "affiliation_product_review_urls": [ "" ], "affiliation_links": [ { "url": "", "anchor": "" } ], "affiliation_promo_code": "", "affiliation_promo_percentage": "", "affiliation_product_1_name": "", "affiliation_product_1_review_urls": [ "" ], "affiliation_links_product_1": [ { "url": "", "anchor": "" } ], "affiliation_promo_code_1": "", "affiliation_promo_percentage_1": "", "affiliation_product_2_name": "", "affiliation_product_2_review_urls": [ "" ], "affiliation_links_product_2": [ { "url": "", "anchor": "" } ], "affiliation_promo_code_2": "", "affiliation_promo_percentage_2": "", "affiliation_top_products": [ { "name": "", "urls": [ "" ], "affiliation_links": [ { "url": "", "anchor": "" } ], "promo_code": "", "promo_percentage": "" } ], "propertyName*": "anything" }' ``` -------------------------------- ### Affiliation Product Settings Source: https://api.wisewand.ai/docs/index Configuration for affiliate marketing, specifying product details, review URLs, affiliate links, and promotional codes/percentages for individual products and a list of top products. This allows for dynamic integration of affiliate content. ```json { "affiliation_product_name": "string", "affiliation_product_review_urls": [ "string" ], "affiliation_links": [ { "url": "string", "anchor": "string" } ], "affiliation_promo_code": "string", "affiliation_promo_percentage": "string", "affiliation_product_1_name": "string", "affiliation_product_1_review_urls": [ "string" ], "affiliation_links_product_1": [ { "url": "string", "anchor": "string" } ], "affiliation_promo_code_1": "string", "affiliation_promo_percentage_1": "string", "affiliation_product_2_name": "string", "affiliation_product_2_review_urls": [ "string" ], "affiliation_links_product_2": [ { "url": "string", "anchor": "string" } ], "affiliation_promo_code_2": "string", "affiliation_promo_percentage_2": "string", "affiliation_top_products": [ { "name": "string", "urls": [ "string" ], "affiliation_links": [ { "url": "string", "anchor": "string" } ], "promo_code": "string", "promo_percentage": "string" } ] } ``` -------------------------------- ### Integration and Linking Settings Source: https://api.wisewand.ai/docs/index Options for integrating with external systems and managing internal/external links. Includes webhook configurations, internal linking strategies (WP, app, list), and WordPress publishing parameters. ```json { "use_webhook": false, "webhook_connection_id": "string", "use_internallinks": false, "use_indexed_pages_internal_links": false, "use_wp_internal_links": false, "use_app_internal_links": false, "use_list_internal_links": false, "internal_links_wp_status": [ "publish" ], "internal_links_list": "string", "internal_links_wp_connection": "string", "use_publishwordpress": false, "publishwordpress_date": "string", "publishwordpress_status": "draft", "publishwordpress_category": -2, "publishwordpress_author": 1, "publishwordpress_connection": "string" } ``` -------------------------------- ### GET /v1/articles/{id}/output Source: https://api.wisewand.ai/docs/index Retrieves the generated output for a specific article. If no outputId is provided, the latest output will be returned. ```APIDOC ## GET /v1/articles/{id}/output ### Description Retrieves the generated output for a specific article. If no outputId is provided, the latest output will be returned. ### Method GET ### Endpoint /v1/articles/{id}/output #### Path Parameters - **id** (string) - Required - The unique identifier of the article. #### Query Parameters - **outputId** (string) - Optional - The specific ID of the output to retrieve. ### Request Example ```shell curl 'https://api.wisewand.ai/v1/articles/{id}/output?outputId=' ``` ### Response #### Success Response (200) - **id** (string) - The unique identifier of the output. - **created_at** (string) - The timestamp when the output was created. - **updated_at** (string) - The timestamp when the output was last updated. - **all_outputs** (array) - A list of all available output IDs for the article. - **id** (string) - The ID of an output. - **created_at** (string) - The timestamp when the output was created. - **input** (object) - The input parameters used for generating the article. - **title** (string) - The title of the article. - **type** (string) - The type of content (e.g., "blog"). - **subject** (string) - The subject of the article. - **length** (string) - The desired length of the article (e.g., "auto"). - **keep_title** (boolean) - Whether to keep the provided title. - **target_keyword** (string) - The primary keyword for the article. - **keywords_secondary** (string) - Secondary keywords. - **search_intention_answer** (string) - Information related to search intent. - **additional_information** (string) - Additional information to include. - **avoid_information** (string) - Information to avoid. - **lang** (string) - The language of the article (e.g., "fr"). - **country** (string) - The target country (e.g., "fr"). - **project_id** (string) - The ID of the project this article belongs to. - **writing_style_mode** (string) - The writing style mode (e.g., "auto"). - **persona_id** (string) - The ID of the persona to use. - **use_cta** (boolean) - Whether to include a call to action. - **ctas** (array) - List of calls to action. - **anchor** (string) - The anchor text for the CTA. - **url** (string) - The URL for the CTA. - **use_boldkeywords** (boolean) - Whether to use bold keywords. - **use_faq** (boolean) - Whether to include a FAQ section. - **faq_questions** (string) - Questions for the FAQ section. - **use_toc** (boolean) - Whether to include a table of contents. - **use_image** (boolean) - Whether to include cover images. - **image_ratio** (string) - The aspect ratio for cover images (e.g., "landscape"). - **image_prompt** (string) - Prompt for generating cover images. - **image_use_palette** (boolean) - Whether to use a color palette for images. - **image_primary_color** (string) - Primary color for images. - **image_secondary_color** (string) - Secondary color for images. - **use_inlineimages** (boolean) - Whether to include inline images. - **inlineimages_count** (integer) - The number of inline images to include. - **inline_images_ratio** (string) - Aspect ratio for inline images. - **inline_images_use_palette** (boolean) - Whether to use a color palette for inline images. - **inline_images_primary_color** (string) - Primary color for inline images. - **inline_images_secondary_color** (string) - Secondary color for inline images. - **use_webhook** (boolean) - Whether to use webhooks. - **webhook_connection_id** (string) - The ID of the webhook connection. - **use_internallinks** (boolean) - Whether to use internal links. - **use_indexed_pages_internal_links** (boolean) - Whether to use internal links from indexed pages. - **use_wp_internal_links** (boolean) - Whether to use internal links from WordPress. - **use_app_internal_links** (boolean) - Whether to use internal links from the app. - **use_list_internal_links** (boolean) - Whether to use internal links from a list. - **internal_links_wp_status** (array) - WordPress post status for internal links. - **internal_links_list** (string) - A list of internal links. - **internal_links_wp_connection** (string) - WordPress connection for internal links. - **use_publishwordpress** (boolean) - Whether to publish to WordPress. - **publishwordpress_date** (string) - The publication date for WordPress. - **publishwordpress_status** (string) - The post status for WordPress (e.g., "draft"). - **publishwordpress_category** (integer) - The category ID for WordPress posts. - **publishwordpress_author** (integer) - The author ID for WordPress posts. - **publishwordpress_connection** (string) - WordPress connection for publishing. - **use_infotable** (boolean) - Whether to use an information table. - **use_bulletlist** (boolean) - Whether to use a bulleted list. - **use_externalsources** (boolean) - Whether to use external sources. - **use_audio** (boolean) - Whether to generate audio. - **audio_voice_id** (string) - The ID of the voice to use for audio generation. - **use_social** (boolean) - Whether to generate social media content. - **social_networks** (array) - List of social networks for content generation. - **information_search_only_from_subject_sources** (boolean) - Whether to search information only from subject sources. - **affiliation_product_name** (string) - Product name for affiliate marketing. - **affiliation_product_review_urls** (array) - URLs for product reviews. - **affiliation_links** (array) - Affiliate links. - **url** (string) - The URL of the affiliate link. - **anchor** (string) - The anchor text for the affiliate link. - **affiliation_promo_code** (string) - Promo code for affiliate marketing. - **affiliation_promo_percentage** (string) - Promo percentage for affiliate marketing. - **affiliation_product_1_name** (string) - Name of the first affiliate product. - **affiliation_product_1_review_urls** (array) - Review URLs for the first affiliate product. - **affiliation_links_product_1** (array) - Affiliate links for the first product. - **affiliation_promo_code_1** (string) - Promo code for the first affiliate product. - **affiliation_promo_percentage_1** (string) - Promo percentage for the first affiliate product. - **affiliation_product_2_name** (string) - Name of the second affiliate product. - **affiliation_product_2_review_urls** (array) - Review URLs for the second affiliate product. - **affiliation_links_product_2** (array) - Affiliate links for the second product. - **affiliation_promo_code_2** (string) - Promo code for the second affiliate product. - **affiliation_promo_percentage_2** (string) - Promo percentage for the second affiliate product. - **affiliation_top_products** (array) - List of top affiliate products. - **name** (string) - Name of the top product. - **urls** (array) - URLs for the top product. - **affiliation_links** (array) - Affiliate links for the top product. - **promo_code** (string) - Promo code for the top product. - **promo_percentage** (string) - Promo percentage for the top product. - **propertyName*** (string) - Any other properties. - **output** (object) - The generated output of the article. - **h1** (string) - The H1 heading of the article. - **content** (string) - The main content of the article. - **meta_title** (string) - The meta title for the article. - **meta_description** (string) - The meta description for the article. - **keywords_analysis** (array) - Analysis of keywords used in the article. - **keyword** (string) - The keyword. - **occurences_minimum_number** (integer) - Minimum occurrences. - **occurences_maximum_number** (integer) - Maximum occurrences. - **url** (string) - The URL of the generated article (if applicable). - **cover** (integer) - Index of the cover image. - **cover_image** (string) - URL of the cover image. - **cover_images** (array) - URLs of cover images. - **faq** (string) - The FAQ section content. - **information_search** (string) - Content derived from information search. - **social** (object) - Social media sharing content. - **id** (string) - Social media content ID. - **content** (string) - Text content for social media. - **facebook** (string) - Facebook specific content. - **x** (string) - X (Twitter) specific content. - **linkedin** (string) - LinkedIn specific content. - **instagram** (string) - Instagram specific content. - **root_id** (string) - Root ID for social media. - **user_id** (string) - User ID for social media. - **audio** (string) - URL of the generated audio file. - **propertyName*** (string) - Any other properties. - **status** (string) - The status of the article generation. #### Response Example ```json { "id": "string", "created_at": "string", "updated_at": "string", "all_outputs": [ { "id": "string", "created_at": "string" } ], "input": { "title": "string", "type": "blog", "subject": "string", "length": "auto", "keep_title": false, "target_keyword": "string", "keywords_secondary": "string", "search_intention_answer": "string", "additional_information": "string", "avoid_information": "string", "lang": "fr", "country": "fr", "project_id": "123e4567-e89b-12d3-a456-426614174000", "writing_style_mode": "auto", "persona_id": "123e4567-e89b-12d3-a456-426614174000", "use_cta": false, "ctas": [ { "anchor": "string", "url": "string" } ], "use_boldkeywords": false, "use_faq": false, "faq_questions": "string", "use_toc": false, "use_image": false, "image_ratio": "landscape", "image_prompt": "string", "image_use_palette": true, "image_primary_color": "string", "image_secondary_color": "string", "use_inlineimages": false, "inlineimages_count": 1, "inline_images_ratio": "landscape", "inline_images_use_palette": true, "inline_images_primary_color": "string", "inline_images_secondary_color": "string", "use_webhook": false, "webhook_connection_id": "string", "use_internallinks": false, "use_indexed_pages_internal_links": false, "use_wp_internal_links": false, "use_app_internal_links": false, "use_list_internal_links": false, "internal_links_wp_status": [ "publish" ], "internal_links_list": "string", "internal_links_wp_connection": "string", "use_publishwordpress": false, "publishwordpress_date": "string", "publishwordpress_status": "draft", "publishwordpress_category": -2, "publishwordpress_author": 1, "publishwordpress_connection": "string", "use_infotable": false, "use_bulletlist": false, "use_externalsources": false, "use_audio": false, "audio_voice_id": "jSrrwmj13CIlQAXPpk4X", "use_social": false, "social_networks": [ "instagram", "facebook", "x", "linkedin" ], "information_search_only_from_subject_sources": false, "affiliation_product_name": "string", "affiliation_product_review_urls": [ "string" ], "affiliation_links": [ { "url": "string", "anchor": "string" } ], "affiliation_promo_code": "string", "affiliation_promo_percentage": "string", "affiliation_product_1_name": "string", "affiliation_product_1_review_urls": [ "string" ], "affiliation_links_product_1": [ { "url": "string", "anchor": "string" } ], "affiliation_promo_code_1": "string", "affiliation_promo_percentage_1": "string", "affiliation_product_2_name": "string", "affiliation_product_2_review_urls": [ "string" ], "affiliation_links_product_2": [ { "url": "string", "anchor": "string" } ], "affiliation_promo_code_2": "string", "affiliation_promo_percentage_2": "string", "affiliation_top_products": [ { "name": "string", "urls": [ "string" ], "affiliation_links": [ { "url": "string", "anchor": "string" } ], "promo_code": "string", "promo_percentage": "string" } ], "propertyName*": "anything" }, "output": { "h1": "string", "content": "string", "meta_title": "string", "meta_description": "string", "keywords_analysis": [ { "keyword": "string", "occurences_minimum_number": 1, "occurences_maximum_number": 1 } ], "url": "string", "cover": 1, "cover_image": "string", "cover_images": [ "string" ], "faq": "string", "information_search": "string", "social": { "id": "string", "content": "string", "facebook": "string", "x": "string", "linkedin": "string", "instagram": "string", "root_id": "123e4567-e89b-12d3-a456-426614174000", "user_id": "123e4567-e89b-12d3-a456-426614174000" }, "audio": "string", "propertyName*": "anything" }, "status": "string" } ``` ``` -------------------------------- ### Product Pages API Source: https://api.wisewand.ai/docs/index Endpoints for managing product pages, including retrieval, creation, updates, and bulk operations. ```APIDOC ## GET /v1/productpages/ ### Description Retrieves a list of product pages. ### Method GET ### Endpoint /v1/productpages/ ### Query Parameters - **skip** (integer) - Optional - Number of records to skip. - **take** (integer) - Optional - Number of records to retrieve. ### Success Response (200) - **data** (array) - List of product page objects. - **total** (integer) - Total number of product pages. ### Response Example ```json { "data": [ { "id": "string", "name": "string" } ], "total": 100 } ``` ## POST /v1/productpages/ ### Description Creates a new product page. ### Method POST ### Endpoint /v1/productpages/ ### Request Body - **name** (string) - Required - The name of the product page. ### Request Example ```json { "name": "New Product Page" } ``` ### Success Response (200) - **id** (string) - The ID of the newly created product page. ### Response Example ```json { "id": "uuid-string" } ``` ## GET /v1/productpages/{id} ### Description Retrieves a specific product page by its ID. ### Method GET ### Endpoint /v1/productpages/{id} ### Path Parameters - **id** (string) - Required - The ID of the product page. ### Success Response (200) - **id** (string) - The ID of the product page. - **name** (string) - The name of the product page. ### Response Example ```json { "id": "uuid-string", "name": "Existing Product Page" } ``` ## PATCH /v1/productpages/{id} ### Description Updates an existing product page. ### Method PATCH ### Endpoint /v1/productpages/{id} ### Path Parameters - **id** (string) - Required - The ID of the product page to update. ### Request Body - **name** (string) - Optional - The updated name for the product page. ### Request Example ```json { "name": "Updated Product Page Name" } ``` ### Success Response (200) - **id** (string) - The ID of the updated product page. ### Response Example ```json { "id": "uuid-string" } ``` ## GET /v1/productpages/{id}/output ### Description Retrieves the output for a specific product page. ### Method GET ### Endpoint /v1/productpages/{id}/output ### Path Parameters - **id** (string) - Required - The ID of the product page. ### Success Response (200) - **output** (string) - The output content of the product page. ### Response Example ```json { "output": "..." } ``` ## PATCH /v1/productpages/{id}/output/{outputId} ### Description Updates the output for a specific product page. ### Method PATCH ### Endpoint /v1/productpages/{id}/output/{outputId} ### Path Parameters - **id** (string) - Required - The ID of the product page. - **outputId** (string) - Required - The ID of the output to update. ### Request Body - **output** (string) - Required - The updated output content. ### Request Example ```json { "output": "Updated Content" } ``` ### Success Response (200) - **id** (string) - The ID of the updated output. ### Response Example ```json { "id": "output-uuid-string" } ``` ## POST /v1/productpages/bulk ### Description Performs bulk operations on product pages. ### Method POST ### Endpoint /v1/productpages/bulk ### Request Body - **operations** (array) - Required - A list of operations to perform. ### Request Example ```json { "operations": [ { "method": "POST", "body": {"name": "Bulk Product 1"} }, { "method": "PATCH", "id": "existing-id", "body": {"name": "Updated Bulk Product"} } ] } ``` ### Success Response (200) - **results** (array) - Results of the bulk operations. ### Response Example ```json { "results": [ { "status": 200, "id": "uuid-string" } ] } ``` ## POST /v1/productpages/cost ### Description Calculates the cost for product page operations. ### Method POST ### Endpoint /v1/productpages/cost ### Request Body - **operations** (array) - Required - A list of operations to calculate cost for. ### Request Example ```json { "operations": [ {"method": "POST", "name": "Product Cost"} ] } ``` ### Success Response (200) - **total_cost** (number) - The total calculated cost. ### Response Example ```json { "total_cost": 15.50 } ``` ## POST /v1/productpages/bulk/cost ### Description Calculates the cost for bulk product page operations. ### Method POST ### Endpoint /v1/productpages/bulk/cost ### Request Body - **operations** (array) - Required - A list of bulk operations to calculate cost for. ### Request Example ```json { "operations": [ { "method": "POST", "body": {"name": "Bulk Product Cost"} } ] } ``` ### Success Response (200) - **total_cost** (number) - The total calculated cost for the bulk operations. ### Response Example ```json { "total_cost": 30.75 } ``` ## POST /v1/productpages/{id}/run ### Description Runs an operation on a specific product page. ### Method POST ### Endpoint /v1/productpages/{id}/run ### Path Parameters - **id** (string) - Required - The ID of the product page to run. ### Success Response (200) - **status** (string) - The status of the run operation. ### Response Example ```json { "status": "running" } ``` ``` -------------------------------- ### POST /v1/articles/{id}/run Source: https://api.wisewand.ai/docs/index Initiates the article generation process for a specified article ID. ```APIDOC ## POST /v1/articles/{id}/run ### Description Initiates the article generation process for a specified article ID. ### Method POST ### Endpoint /v1/articles/{id}/run ### Parameters #### Path Parameters - **id** (string) - Required - The ID of the article to run. #### Request Body - **Content**: `null` ### Request Example ``` curl 'https://api.wisewand.ai/v1/articles/{id}/run' \ --request POST \ --header 'Content-Type: application/json' \ --data 'null' ``` ### Response #### Success Response (200) - **id** (string) - The ID of the article. - **status** (string) - The status of the article generation process. #### Response Example ```json { "id": "string", "status": "string" } ``` ```