{"id":3175,"date":"2026-05-07T06:33:14","date_gmt":"2026-05-07T06:33:14","guid":{"rendered":"https:\/\/help.contentsnare.com\/?post_type=ht_kb&#038;p=3175"},"modified":"2026-05-07T06:33:15","modified_gmt":"2026-05-07T06:33:15","slug":"api-create-request-with-fields","status":"publish","type":"ht_kb","link":"https:\/\/help.contentsnare.com\/knowledge-base\/api-create-request-with-fields\/","title":{"rendered":"API: Create Request with Fields"},"content":{"rendered":"\n<div style=\"background: #fff8e1; border-left: 4px solid #f5a623; padding: 14px 18px; border-radius: 4px; margin: 20px 0 28px;\">\n  <p style=\"margin: 0;\"><strong>Please note:<\/strong> This endpoint is currently in alpha and is not guaranteed to be backwards compatible. It works well right now for creating fully structured requests in Content Snare from AI.<\/p>\n<\/div>\n\n\n\n<p>The&nbsp;<strong>Create Request<\/strong>&nbsp;endpoint lets you build a complete request in a single API call, including pages, sections, and fields. You do not need a pre-built template.<\/p>\n\n\n\n<p><strong>Endpoint:<\/strong>&nbsp;<code>POST \/partner_api\/v1\/requests<\/code><br><strong>Required scopes:<\/strong>&nbsp;<code>write_requests<\/code>,&nbsp;<code>write_clients<\/code>&nbsp;(if the client doesn&#8217;t already exist)<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Request Body<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Top-level properties<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Property<\/th><th class=\"has-text-align-left\" data-align=\"left\">Type<\/th><th class=\"has-text-align-left\" data-align=\"left\">Required<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>name<\/code><\/td><td>string<\/td><td>Yes<\/td><td>The name of the request<\/td><\/tr><tr><td><code>client_email<\/code><\/td><td>string<\/td><td>Yes<\/td><td>Client&#8217;s email address. If the client doesn&#8217;t exist, one will be created automatically<\/td><\/tr><tr><td><code>client_full_name<\/code><\/td><td>string<\/td><td>If new client<\/td><td>Full name for the client (required when creating a new client)<\/td><\/tr><tr><td><code>company_name<\/code><\/td><td>string<\/td><td>No<\/td><td>Company name for the client<\/td><\/tr><tr><td><code>folder_name<\/code><\/td><td>string<\/td><td>No<\/td><td>Folder to organise the request into<\/td><\/tr><tr><td><code>due<\/code><\/td><td>string<\/td><td>No<\/td><td>Due date in&nbsp;<code>yyyy-mm-dd<\/code>&nbsp;format<\/td><\/tr><tr><td><code>status<\/code><\/td><td>string<\/td><td>No<\/td><td><code>\"draft\"<\/code>&nbsp;(default) or&nbsp;<code>\"published\"<\/code><\/td><\/tr><tr><td><code>owner_id<\/code><\/td><td>string<\/td><td>No<\/td><td>Team member ID to assign as owner<\/td><\/tr><tr><td><code>owner_email<\/code><\/td><td>string<\/td><td>No<\/td><td>Team member email to assign as owner (alternative to&nbsp;<code>owner_id<\/code>)<\/td><\/tr><tr><td><code>communication_template_id<\/code><\/td><td>string<\/td><td>No<\/td><td>ID of a communications schedule to attach<\/td><\/tr><tr><td><code>communication_template_name<\/code><\/td><td>string<\/td><td>No<\/td><td>Name of a communications schedule (alternative to ID)<\/td><\/tr><tr><td><code>comments_enabled<\/code><\/td><td>boolean<\/td><td>No<\/td><td>Allow the client to leave comments<\/td><\/tr><tr><td><code>passcode_enabled<\/code><\/td><td>boolean<\/td><td>No<\/td><td>Require a PIN code to access<\/td><\/tr><tr><td><code>share_via_link_enabled<\/code><\/td><td>boolean<\/td><td>No<\/td><td>Allow the client to share the request via link<\/td><\/tr><tr><td><code>pages_data<\/code><\/td><td>array<\/td><td>Yes<\/td><td>Array of page objects (see below)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Structure: Pages, Sections, and Questions<\/h2>\n\n\n\n<p>A request is organised into pages (the tabs your client sees), each containing one or more sections, each containing one or more questions (fields).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Request\n\u251c\u2500\u2500 Page 1\n\u2502   \u251c\u2500\u2500 Section A\n\u2502   \u2502   \u251c\u2500\u2500 Question 1\n\u2502   \u2502   \u251c\u2500\u2500 Question 2\n\u2502   \u2502   \u2514\u2500\u2500 Question 3\n\u2502   \u2514\u2500\u2500 Section B\n\u2502       \u2514\u2500\u2500 Question 4\n\u2514\u2500\u2500 Page 2\n    \u2514\u2500\u2500 Section C\n        \u251c\u2500\u2500 Question 5\n        \u2514\u2500\u2500 Question 6<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Page object<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Property<\/th><th class=\"has-text-align-left\" data-align=\"left\">Type<\/th><th class=\"has-text-align-left\" data-align=\"left\">Required<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>name<\/code><\/td><td>string<\/td><td>Yes<\/td><td>Page name (displayed as a tab)<\/td><\/tr><tr><td><code>sections_data<\/code><\/td><td>array<\/td><td>Yes<\/td><td>Array of section objects<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Section object<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Property<\/th><th class=\"has-text-align-left\" data-align=\"left\">Type<\/th><th class=\"has-text-align-left\" data-align=\"left\">Required<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>name<\/code><\/td><td>string<\/td><td>Yes<\/td><td>Section heading<\/td><\/tr><tr><td><code>questions_data<\/code><\/td><td>array<\/td><td>Yes<\/td><td>Array of question objects<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Question object<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Property<\/th><th class=\"has-text-align-left\" data-align=\"left\">Type<\/th><th class=\"has-text-align-left\" data-align=\"left\">Required<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>question<\/code><\/td><td>string<\/td><td>Yes<\/td><td>The question or field label displayed to the client<\/td><\/tr><tr><td><code>data_type<\/code><\/td><td>string<\/td><td>Yes<\/td><td>The field type (see full list below)<\/td><\/tr><tr><td><code>question_number<\/code><\/td><td>integer<\/td><td>Yes<\/td><td>Sequential number starting from 1, unique across the entire request<\/td><\/tr><tr><td><code>options<\/code><\/td><td>array of strings<\/td><td>Conditional<\/td><td>Required for:&nbsp;<code>single select option<\/code>,&nbsp;<code>multi select options<\/code>,&nbsp;<code>dropdown<\/code>,&nbsp;<code>task list<\/code><\/td><\/tr><tr><td><code>columns<\/code><\/td><td>array of strings<\/td><td>Conditional<\/td><td>Required for:&nbsp;<code>table<\/code><\/td><\/tr><tr><td><code>instructions<\/code><\/td><td>string<\/td><td>No<\/td><td>Help text shown to the client explaining how to complete the field<\/td><\/tr><tr><td><code>show_when<\/code><\/td><td>object<\/td><td>No<\/td><td>Conditional visibility rules (see below)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Field Types (data_type)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Text input<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>single-line<\/code><\/td><td>Single-line text input<\/td><\/tr><tr><td><code>text<\/code><\/td><td>Standard text input<\/td><\/tr><tr><td><code>multi-line text<\/code><\/td><td>Multi-line textarea<\/td><\/tr><tr><td><code>formatted text<\/code><\/td><td>Rich text editor<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Contact information<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>email<\/code><\/td><td>Email address with validation<\/td><\/tr><tr><td><code>phone<\/code><\/td><td>Phone number input<\/td><\/tr><tr><td><code>url<\/code><\/td><td>URL with validation<\/td><\/tr><tr><td><code>address<\/code><\/td><td>Structured address fields<\/td><\/tr><tr><td><code>country select<\/code><\/td><td>Country dropdown<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">File uploads<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>single image upload<\/code><\/td><td>Upload one image<\/td><\/tr><tr><td><code>multiple image upload<\/code><\/td><td>Upload multiple images<\/td><\/tr><tr><td><code>single file upload<\/code><\/td><td>Upload one file<\/td><\/tr><tr><td><code>multiple file upload<\/code><\/td><td>Upload multiple files<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Numbers and dates<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>number<\/code><\/td><td>Numeric input<\/td><\/tr><tr><td><code>currency<\/code><\/td><td>Currency\/monetary value<\/td><\/tr><tr><td><code>date\/time<\/code><\/td><td>Date and time picker<\/td><\/tr><tr><td><code>date range<\/code><\/td><td>Start and end date selection<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Ratings<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>numeric rating<\/code><\/td><td>Numeric scale rating<\/td><\/tr><tr><td><code>star rating<\/code><\/td><td>Star-based rating<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Selection fields<\/h3>\n\n\n\n<p>These types require the&nbsp;<code>options<\/code>&nbsp;array.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>single select option<\/code><\/td><td>Radio-button-style single selection<\/td><\/tr><tr><td><code>multi select options<\/code><\/td><td>Checkbox-style multiple selection<\/td><\/tr><tr><td><code>dropdown<\/code><\/td><td>Dropdown single selection<\/td><\/tr><tr><td><code>task list<\/code><\/td><td>Checklist of items<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Data entry<\/h3>\n\n\n\n<p>This type requires the&nbsp;<code>columns<\/code>&nbsp;array.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>table<\/code><\/td><td>Table with defined column headers; client adds rows<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Other<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Value<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>signature<\/code><\/td><td>Signature capture<\/td><\/tr><tr><td><code>button<\/code><\/td><td>Clickable button<\/td><\/tr><tr><td><code>icon<\/code><\/td><td>Icon field<\/td><\/tr><tr><td><code>color picker<\/code><\/td><td>Color selection<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Conditional Visibility (show_when)<\/h2>\n\n\n\n<p>Questions can be shown or hidden based on your client&#8217;s answers to other questions. This lets you build dynamic, branching forms.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"show_when\": {\n    \"conditions\": &#91;\n      {\n        \"question_number\": 1,\n        \"condition\": \"equals\",\n        \"value\": \"Yes\"\n      }\n    ],\n    \"logical_operator\": \"and\"\n  }\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">show_when properties<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Property<\/th><th class=\"has-text-align-left\" data-align=\"left\">Type<\/th><th class=\"has-text-align-left\" data-align=\"left\">Required<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>conditions<\/code><\/td><td>array<\/td><td>Yes<\/td><td>One or more condition objects<\/td><\/tr><tr><td><code>logical_operator<\/code><\/td><td>string<\/td><td>When 2+ conditions<\/td><td><code>\"and\"<\/code>&nbsp;(all must match) or&nbsp;<code>\"or\"<\/code>&nbsp;(any must match)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Condition object<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Property<\/th><th class=\"has-text-align-left\" data-align=\"left\">Type<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>question_number<\/code><\/td><td>integer<\/td><td>The&nbsp;<code>question_number<\/code>&nbsp;of the field to evaluate<\/td><\/tr><tr><td><code>condition<\/code><\/td><td>string<\/td><td>The comparison operator (see below)<\/td><\/tr><tr><td><code>value<\/code><\/td><td>string<\/td><td>The value to compare against<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Available conditions<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Condition<\/th><th class=\"has-text-align-left\" data-align=\"left\">Description<\/th><\/tr><\/thead><tbody><tr><td><code>contains<\/code><\/td><td>Field value contains the specified text<\/td><\/tr><tr><td><code>equals<\/code><\/td><td>Field value exactly matches<\/td><\/tr><tr><td><code>does not equal<\/code><\/td><td>Field value does not match<\/td><\/tr><tr><td><code>less than<\/code><\/td><td>Numeric comparison<\/td><\/tr><tr><td><code>greater than<\/code><\/td><td>Numeric comparison<\/td><\/tr><tr><td><code>is empty<\/code><\/td><td>Field has no value<\/td><\/tr><tr><td><code>has a value<\/code><\/td><td>Field has any value<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Full Example<\/h2>\n\n\n\n<p>This example creates a vendor onboarding form with two pages, conditional logic, and a variety of field types.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"name\": \"Vendor Application Form\",\n  \"client_email\": \"vendor@example.com\",\n  \"client_full_name\": \"Jane Smith\",\n  \"company_name\": \"Smith Supplies\",\n  \"due\": \"2026-04-15\",\n  \"status\": \"published\",\n  \"pages_data\": &#91;\n    {\n      \"name\": \"Company Information\",\n      \"sections_data\": &#91;\n        {\n          \"name\": \"Basic Details\",\n          \"questions_data\": &#91;\n            {\n              \"question\": \"Legal business name\",\n              \"data_type\": \"single-line\",\n              \"question_number\": 1\n            },\n            {\n              \"question\": \"Business type\",\n              \"data_type\": \"dropdown\",\n              \"question_number\": 2,\n              \"options\": &#91;\"Sole Proprietor\", \"Partnership\", \"Corporation\", \"LLC\", \"Other\"]\n            },\n            {\n              \"question\": \"If Other, please specify\",\n              \"data_type\": \"single-line\",\n              \"question_number\": 3,\n              \"show_when\": {\n                \"conditions\": &#91;\n                  { \"question_number\": 2, \"condition\": \"equals\", \"value\": \"Other\" }\n                ]\n              }\n            },\n            {\n              \"question\": \"Business address\",\n              \"data_type\": \"address\",\n              \"question_number\": 4\n            },\n            {\n              \"question\": \"Company website\",\n              \"data_type\": \"url\",\n              \"question_number\": 5\n            },\n            {\n              \"question\": \"Contact phone\",\n              \"data_type\": \"phone\",\n              \"question_number\": 6\n            }\n          ]\n        },\n        {\n          \"name\": \"Company Profile\",\n          \"questions_data\": &#91;\n            {\n              \"question\": \"Company logo\",\n              \"data_type\": \"single image upload\",\n              \"question_number\": 7,\n              \"instructions\": \"Please upload a high-resolution PNG or SVG file\"\n            },\n            {\n              \"question\": \"Describe your products or services\",\n              \"data_type\": \"multi-line text\",\n              \"question_number\": 8\n            },\n            {\n              \"question\": \"How would you rate your production capacity?\",\n              \"data_type\": \"star rating\",\n              \"question_number\": 9\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"name\": \"Compliance &amp; Documents\",\n      \"sections_data\": &#91;\n        {\n          \"name\": \"Certifications\",\n          \"questions_data\": &#91;\n            {\n              \"question\": \"Do you hold any industry certifications?\",\n              \"data_type\": \"single select option\",\n              \"question_number\": 10,\n              \"options\": &#91;\"Yes\", \"No\"]\n            },\n            {\n              \"question\": \"Upload certification documents\",\n              \"data_type\": \"multiple file upload\",\n              \"question_number\": 11,\n              \"instructions\": \"PDF or scanned copies accepted\",\n              \"show_when\": {\n                \"conditions\": &#91;\n                  { \"question_number\": 10, \"condition\": \"equals\", \"value\": \"Yes\" }\n                ]\n              }\n            },\n            {\n              \"question\": \"List certifications and expiry dates\",\n              \"data_type\": \"table\",\n              \"question_number\": 12,\n              \"columns\": &#91;\"Certification Name\", \"Issuing Body\", \"Expiry Date\"],\n              \"show_when\": {\n                \"conditions\": &#91;\n                  { \"question_number\": 10, \"condition\": \"equals\", \"value\": \"Yes\" }\n                ]\n              }\n            }\n          ]\n        },\n        {\n          \"name\": \"Agreement\",\n          \"questions_data\": &#91;\n            {\n              \"question\": \"Compliance checklist\",\n              \"data_type\": \"task list\",\n              \"question_number\": 13,\n              \"options\": &#91;\n                \"I agree to the Terms of Service\",\n                \"I have read the Privacy Policy\",\n                \"I confirm all information is accurate\"\n              ]\n            },\n            {\n              \"question\": \"Authorized signature\",\n              \"data_type\": \"signature\",\n              \"question_number\": 14\n            },\n            {\n              \"question\": \"Date signed\",\n              \"data_type\": \"date\/time\",\n              \"question_number\": 15\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Notes<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>question_number<\/code>\u00a0must be unique across the entire request, not just within a section. Start at 1 and increment sequentially.<\/li>\n\n\n\n<li>Conditional references use\u00a0<code>question_number<\/code>, so a question on Page 2 can reference a question on Page 1.<\/li>\n\n\n\n<li>New clients are created automatically if no client with the given\u00a0<code>client_email<\/code>\u00a0exists. In that case,\u00a0<code>client_full_name<\/code>\u00a0is required.<\/li>\n\n\n\n<li>Draft vs. published: requests created as\u00a0<code>\"draft\"<\/code>\u00a0are not visible to the client until you change the status to\u00a0<code>\"published\"<\/code>.<\/li>\n\n\n\n<li>Rate limits: the API allows 20 write operations per 10 seconds.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Please note: This endpoint is currently in alpha and is not guaranteed to be backwards compatible. It works well right now for creating fully structured requests in Content Snare from AI. The&nbsp;Create Request&nbsp;endpoint lets you build a complete request in a single API call, including pages, sections, and fields. You&#8230;<\/p>\n","protected":false},"author":1,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"footnotes":""},"ht-kb-category":[1040],"ht-kb-tag":[],"class_list":["post-3175","ht_kb","type-ht_kb","status-publish","format-standard","hentry","ht_kb_category-integrations"],"_links":{"self":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb\/3175","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/comments?post=3175"}],"version-history":[{"count":18,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb\/3175\/revisions"}],"predecessor-version":[{"id":3193,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb\/3175\/revisions\/3193"}],"wp:attachment":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/media?parent=3175"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb-category?post=3175"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb-tag?post=3175"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}