{"componentChunkName":"component---src-templates-simple-markdown-js","path":"/api-docs/building-payment-request-body/","matchPath":"","result":{"data":{"markdownRemark":{"html":"<h1 style=\"position:relative;\"><a href=\"#building-the-payment-request-body\" aria-label=\"building the payment request body permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"building-the-payment-request-body\"></div>Building the payment request body</h1>\n<p>When you call the <code class=\"language-text\">POST /v2/payments</code> <a href=\"/payments-direct-2/api-docs/payments-direct-api/reference/#operation/createPayment\">operation</a> to create a payment, you must include a request body containing required payment information, such as the beneficiary identity and the purpose of the payment.</p>\n<p>The following sections walk you through building an example payment request body.</p>\n<h2 style=\"position:relative;\"><a href=\"#the-payment-request-body\" aria-label=\"the payment request body permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"the-payment-request-body\"></div>The payment request body</h2>\n<p>The payment request body accepts key-value pairs in the JSON format. </p>\n<p>To successfully create a payment, you must include all required properties depending on the type of payment you want to make:</p>\n<ul>\n<li>\nAlways specify the \n<code class=\"language-text\">quoteId</code>\n and \n<code class=\"language-text\">beneficiaryIdentityId</code>\n properties.\n</li>\n<li>\nIf you're making a payment on behalf of a business, include the \n<code class=\"language-text\">originatorIdentityId</code>\n property. \n</li>\n<li>\nOptionally, you can include the \n<code class=\"language-text\">internalId</code>\n, \n<code class=\"language-text\">purposeCode</code>\n, and \n<code class=\"language-text\">sourceOfCash</code>\n properties.\n</li>\n</ul>\n<p>The following tabs show sample payment request body for each type of payment:</p>\n\n      <div class=\"code-snippets-tabs\" >\n    <div class=\"snippets-tabs-headers\">\n      <span class=\"tab-header active\" data-lang=\"json\" data-snippet-id=\"IndividualBusiness-payment\">Individual/Business payment</span><span class=\"tab-header \" data-lang=\"json\" data-snippet-id=\"Third-party-payment\">Third-party payment</span>\n    </div>\n    <div class=\"snippets-tabs-contents\">\n      <div class=\"tab-content active\" data-lang=\"json\" data-snippet-id=\"IndividualBusiness-payment\"><div class=\"code-wrapper\">\n        <div class=\"gatsby-code-button-container\"\n             data-toaster-id=\"50766965388972425000\"\n             data-toaster-duration=\"1500\"\n             onClick=\"copyCodeToClipboard(`{\n  &quot;quoteId&quot;: &quot;7ea3399c-1234-5678-8d8f-d320ea406630&quot;,\n  &quot;beneficiaryIdentityId&quot;: &quot;11111111-abcd-2222-efgh-333333333333&quot;,\n  &quot;sourceOfCash&quot;: &quot;SVGS&quot;,\n  &quot;purposeCode&quot;: &quot;OTHR&quot;\n}`, `50766965388972425000`)\"\n        >\n          <div class=\"gatsby-code-button\" title=\"Copy the code snippet\">Copy</div>\n          <div class=\"done-indicator done-indicator-50766965388972425000\">Copied!</div>\n        </div>\n        <div class=\"gatsby-highlight\" data-language=\"json\"><pre class=\"language-json\"><code class=\"language-json\"><span class=\"token punctuation\">{</span>\n  <span class=\"token property\">\"quoteId\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"7ea3399c-1234-5678-8d8f-d320ea406630\"</span><span class=\"token punctuation\">,</span>\n  <span class=\"token property\">\"beneficiaryIdentityId\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"11111111-abcd-2222-efgh-333333333333\"</span><span class=\"token punctuation\">,</span>\n  <span class=\"token property\">\"sourceOfCash\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"SVGS\"</span><span class=\"token punctuation\">,</span>\n  <span class=\"token property\">\"purposeCode\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"OTHR\"</span>\n<span class=\"token punctuation\">}</span></code></pre></div>\n      </div></div><div class=\"tab-content \" data-lang=\"json\" data-snippet-id=\"Third-party-payment\"><div class=\"code-wrapper\">\n        <div class=\"gatsby-code-button-container\"\n             data-toaster-id=\"96715496305012020000\"\n             data-toaster-duration=\"1500\"\n             onClick=\"copyCodeToClipboard(`{\n  &quot;quoteId&quot;: &quot;7ea3399c-1234-5678-8d8f-d320ea406630&quot;,\n  &quot;originatorIdentityId&quot;: &quot;12345678-abcd-1234-abcd-123456789123&quot;,\n  &quot;beneficiaryIdentityId&quot;: &quot;11111111-abcd-2222-efgh-333333333333&quot;,\n  &quot;sourceOfCash&quot;: &quot;SVGS&quot;,\n  &quot;purposeCode&quot;: &quot;OTHR&quot;\n}`, `96715496305012020000`)\"\n        >\n          <div class=\"gatsby-code-button\" title=\"Copy the code snippet\">Copy</div>\n          <div class=\"done-indicator done-indicator-96715496305012020000\">Copied!</div>\n        </div>\n        <div class=\"gatsby-highlight\" data-language=\"json\"><pre class=\"language-json\"><code class=\"language-json\"><span class=\"token punctuation\">{</span>\n  <span class=\"token property\">\"quoteId\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"7ea3399c-1234-5678-8d8f-d320ea406630\"</span><span class=\"token punctuation\">,</span>\n  <span class=\"token property\">\"originatorIdentityId\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"12345678-abcd-1234-abcd-123456789123\"</span><span class=\"token punctuation\">,</span>\n  <span class=\"token property\">\"beneficiaryIdentityId\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"11111111-abcd-2222-efgh-333333333333\"</span><span class=\"token punctuation\">,</span>\n  <span class=\"token property\">\"sourceOfCash\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"SVGS\"</span><span class=\"token punctuation\">,</span>\n  <span class=\"token property\">\"purposeCode\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"OTHR\"</span>\n<span class=\"token punctuation\">}</span></code></pre></div>\n      </div></div>\n    </div></div>\n    \n<p>The following sections provide more details about each property. </p>\n<h3 style=\"position:relative;\"><a href=\"#quoteid\" aria-label=\"quoteid permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"quoteid\"></div>quoteId</h3>\n<p>This property identifies the quote that you previously fetched and want to execute to send the payment.</p>\n<p>The response from the <code class=\"language-text\">POST /v2/quotes/quote-collection</code> operation contains a quote object that's uniquely identified by its <code class=\"language-text\">quoteId</code> value. This is the value you must specify in the request body of your <code class=\"language-text\">POST /v2/payments</code> call. </p>\n<h3 style=\"position:relative;\"><a href=\"#beneficiaryidentityid\" aria-label=\"beneficiaryidentityid permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"beneficiaryidentityid\"></div>beneficiaryIdentityId</h3>\n<p>This property identifies the beneficiary of this payment. The value of this property is the <code class=\"language-text\">identityId</code> of an existing beneficiary.</p>\n<p>To get a beneficiary's identity ID, call the <code class=\"language-text\">GET /v2/identities</code> <a href=\"/payments-direct-2/api-docs/payments-direct-api/reference/#operation/getIdentitiesV2\">operation</a> with the query parameter <code class=\"language-text\">identityType</code> set to <code class=\"language-text\">BENEFICIARY</code>. You can get the beneficiary's <code class=\"language-text\">identityId</code> from the response. For more information, see the <a href=\"/payments-direct-2/91c4e449f4f1be2831068b5740ac57c0/get-an-identity.mdx\">Get an identity</a> tutorial .</p>\n<h3 style=\"position:relative;\"><a href=\"#originatoridentityid\" aria-label=\"originatoridentityid permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"originatoridentityid\"></div>originatorIdentityId</h3>\n<p>This property identifies the party that originates the payment. The value of this property is the <code class=\"language-text\">identityId</code> of an existing originator. </p>\n<div class=\"admonition admonition-attention\"><div class=\"admonition-heading\"><h5><span class=\"admonition-icon\"><i></i></span>Note</h5></div><div class=\"admonition-content\"><p>You need to provide the <code class=\"language-text\">originatorIdentityId</code> only if you are originating a payment on behalf of another business. For example, if you're paying a business or an individual on behalf of your customer, then provide the <code class=\"language-text\">originatorIdentityId</code> that contains identifying information about your customer. You don't need to include this property if you are the payment originator.</p></div></div>\n<p>To get an existing originator's <code class=\"language-text\">identityId</code>, call the <code class=\"language-text\">GET /v2/identities</code> <a href=\"/payments-direct-2/api-docs/payments-direct-api/reference/#operation/getIdentitiesV2\">operation</a> with the query parameter <code class=\"language-text\">identityType</code> set to <code class=\"language-text\">ORIGINATOR</code>. You can get the originator's <code class=\"language-text\">identityId</code> from the response. For more information, see the <a href=\"/payments-direct-2/91c4e449f4f1be2831068b5740ac57c0/get-an-identity.mdx\">Get an identity</a> tutorial.</p>\n<h3 style=\"position:relative;\"><a href=\"#sourceofcash\" aria-label=\"sourceofcash permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"sourceofcash\"></div>sourceOfCash</h3>\n<p>This property indicates the source of funds for this payment. This value must be equal to one of the known values in the table below.</p>\n<details>\n  <summary>Expand to see the list of known values for sourceOfCash</summary>\n<p>Known values for <code class=\"language-text\">sourceOfCash</code></p>\n<table>\n<thead>\n<tr>\n<th align=\"left\">Value</th>\n<th align=\"left\">Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><code class=\"language-text\">ALMY</code></td>\n<td align=\"left\">Alimony</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">CASH</code></td>\n<td align=\"left\">Cash Proceeds</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">COMP</code></td>\n<td align=\"left\">Compensation</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">EMIN</code></td>\n<td align=\"left\">Employee Income</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">GIFT</code></td>\n<td align=\"left\">Gift</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">INHE</code></td>\n<td align=\"left\">Inheritance</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">INLQ</code></td>\n<td align=\"left\">Insurance Premium Liquidation</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">PACA</code></td>\n<td align=\"left\">Paid Up Capital</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">REDM</code></td>\n<td align=\"left\">Redemption</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">REPY</code></td>\n<td align=\"left\">Retirement Policy</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">REST</code></td>\n<td align=\"left\">Real Estate Sale</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">SALE</code></td>\n<td align=\"left\">Sale Of Goods</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">SEAQ</code></td>\n<td align=\"left\">Sale Aquisition Corporation</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">SELF</code></td>\n<td align=\"left\">Self Employment Income</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">SVGS</code></td>\n<td align=\"left\">Savings</td>\n</tr>\n<tr>\n<td align=\"left\"><code class=\"language-text\">WINS</code></td>\n<td align=\"left\">Winnings</td>\n</tr>\n</tbody>\n</table>\n</details>\n<h3 style=\"position:relative;\"><a href=\"#purposecode\" aria-label=\"purposecode permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"purposecode\"></div>purposeCode</h3>\n<p>This property indicates the purpose of the payment.</p>\n<div class=\"admonition admonition-attention\"><div class=\"admonition-heading\"><h5><span class=\"admonition-icon\"><i></i></span>Note</h5></div><div class=\"admonition-content\"><p>Reach out to your Ripple liaison to get the value for your transaction.</p></div></div>\n<!-- Commenting this out as Purpose code in RPD 2 should be extracted from the data reqs response\n\nThe value of this property must be equal to one of the supported purpose code values.\n\nTo get the list of supported `purposeCode` values, call the `GET /v2/data-requirements` [operation](/api-docs/payments-direct-api/reference/#operation/getDataRequirements). The response contains a field named `Purp.Cd`, and a corresponding array of enumerated field values. These values represent the supported `purposeCode` values.  \n\n\n\n<details>\n  <summary>Expand to see the list of known values for purpose</summary>\n\nKnown values for `purposeCode`\n\n| Value  | Description |\n|:------|:----------------------------------------------------------------|\n|`ALLW`   | Allowance                                                       |\n|`BONU`   | Bonus payment                                                   | \n|`CISC`   | Construction and installation services                          |\n|`COMM`   | Commission                                                      |\n|`DEPT`   | Deposit                                                         |\n|`DOFI`   | Deposits with or from offshore financial institutions           |\n|`EDSC`   | Education services                                              |\n|`EDUC`   | Education                                                       |\n|`ENGS`   | Architectural, engineering and other technical services         |\n|`FAMI`   | Family maintenance                                              |\n|`FEES`   | Payment of fees                                                 |\n|`GDDS`   | Purchase sale of goods                                          |\n|`GDSV`   | Purchase sale of goods and services                             |\n|`GIFT`   | Allowance (Gift)                                                |\n|`GSPM`   | Goods for processing and manufacturing services                 |\n|`GSST`   | Goods and services by short-term workers                        |\n|`GSTR`   | Goods and services by travelers                                 |\n|`HLTC`   | Home health care                                                |\n|`INTC`   | Intra company payment                                           |\n|`INTE`   | Interest                                                        |\n|`INVS`   | Investment and securities                                       |\n|`IVPT`   | Invoice payment                                                 |\n|`MACH`   | Payment for machinery, non-customized packaged software and transport equipment|\n|`MDCS`   | Medical services                                                |\n|`MFGD`   | Payment for manufactured goods                                  |\n|`MMFA`   | Payment for miscellaneous manufactured articles                 |\n|`MP2P`   | Mobile peer-to-peer (P2P) payment                               |\n|`MRSC`   | Maintenance and repair services                                 |\n|`OCDM`   | Order cheque domestic                                           |\n|`OCFG`   | Order cheque foreign                                            |\n|`OTHR`   | Others                                                          |\n|`PAYR`   | Payroll                                                         |\n|`PSFR`   | Passenger fare                                                  |\n|`REAB`   | Real estate abroad                                              |\n|`RELG`   | Rental lease general                                            |\n|`SALA`   | Salary payment                                                  |\n|`SCVE`   | Purchase sale of services                                       |  \n|`STDY`   | Study                                                           |\n|`SUPP`   | Supplier payment                                                |\n|`TLLT`   | Term loans long-term                                            |\n|`TLST`   | Term loans short-term                                           |\n|`TRAD`   | Trade services                                                  |\n|`VIAC`   | Visa application charges                                        |\n\n\n</details> -->","headings":[{"value":"Building the payment request body","depth":1},{"value":"The payment request body","depth":2},{"value":"quoteId","depth":3},{"value":"beneficiaryIdentityId","depth":3},{"value":"originatorIdentityId","depth":3},{"value":"sourceOfCash","depth":3},{"value":"purposeCode","depth":3}]},"contentItem":{"data":{"lastModified":"2025-11-13T00:24:58.000Z","enableToc":null,"disableLastModified":null,"tocMaxDepth":null,"requestLogin":false}},"siteConfig":{"enableToc":false,"disableLastModified":true,"tocMaxDepth":4}},"pageContext":{"matchPath":"","id":"cc705043-349b-59bb-b3e0-e3d1345c94ae__redocly content/api-docs/building-payment-request-body/","seo":{"title":"Building the payment request body","description":null,"image":"","keywords":null,"jsonLd":null,"lang":null,"siteUrl":null},"pageId":"api-docs/building-payment-request-body.md","pageBaseUrl":"/api-docs/building-payment-request-body","type":"markdown","toc":{"enable":true,"maxDepth":4,"headings":[{"depth":1,"value":"Building the payment request body","id":"building-the-payment-request-body"},{"depth":2,"value":"The payment request body","id":"the-payment-request-body"},{"depth":3,"value":"quoteId","id":"quoteid"},{"depth":3,"value":"beneficiaryIdentityId","id":"beneficiaryidentityid"},{"depth":3,"value":"originatorIdentityId","id":"originatoridentityid"},{"depth":3,"value":"sourceOfCash","id":"sourceofcash"},{"depth":3,"value":"purposeCode","id":"purposecode"}]},"data":{"title":""},"catalogInfo":null,"link":"/api-docs/building-payment-request-body/","sidebarName":"__root-sidebar__-data-69308394-sidebars.yaml","isLanding":false,"showPrevButton":null,"showNextButton":null,"apiVersions":null,"apiVersionId":null,"isDefaultApiVersion":null}},"staticQueryHashes":["1123603147","1302185487","1344209882","1398840060","1520077861","1975142765","2667623876","2950305614","3240152602","3743992808","561138138"]}