创建该应用的收入记录-appRevenueAttributionRecordCreate mutation

创建该应用的收入记录。

所需的访问

用户必须具有应用程序许可。


在本页面


互动范例

这是一个示例变异查询。使用下面的嵌入式交互式工具来编辑查询。

mutation appRevenueAttributionRecordCreate($appRevenueAttributionRecord: AppRevenueAttributionRecordInput!) { appRevenueAttributionRecordCreate(appRevenueAttributionRecord: $appRevenueAttributionRecord) {
  1. <font style="color:#1F61A0;">appRevenueAttributionRecord</font> <font style="color:#555555;">{</font>
  2. <font style="color:#1F61A0;">cursor</font>
  3. <font style="color:#555555;">}</font>
  4. <font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
  5. <font style="color:#1F61A0;">code</font>
  6. <font style="color:#1F61A0;">field</font>
  7. <font style="color:#1F61A0;">message</font>
  8. <font style="color:#555555;">}</font>
} }

变量:

{ “appRevenueAttributionRecord”: {
  1. <font style="color:#8B2BB9;">"idempotencyKey"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"placeholder"</font><font style="color:#555555;">,</font>
  2. <font style="color:#8B2BB9;">"capturedOn"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"placeholder"</font><font style="color:#555555;">,</font>
  3. <font style="color:#8B2BB9;">"amount"</font><font style="color:#555555;">:</font> <font style="color:#555555;">{</font>
  4. <font style="color:#8B2BB9;">"amount"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"placeholder"</font><font style="color:#555555;">,</font>
  5. <font style="color:#8B2BB9;">"currencyCode"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"placeholder"</font>
  6. <font style="color:#555555;">},</font>
  7. <font style="color:#8B2BB9;">"type"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"placeholder"</font><font style="color:#555555;">,</font>
  8. <font style="color:#8B2BB9;">"test"</font><font style="color:#555555;">:</font> <font style="color:#D47509;">true</font>
} }

参数

参数 描述
appRevenueAttributionRecord
() [AppRevenueAttributionRecordInput!](https://shopify.dev/docs/admin-api/graphql/reference/billing/apprevenueattributionrecordinput)

必需的
要创建的应用收入归属记录。

AppRevenueAttributionRecordInput字段

  • amount [MoneyInput!](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/moneyinput)必需的
    此归因中捕获的财务金额。
  • capturedOn[Date!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#date-unstable)必需的
    捕获财务金额的日期。
  • idempotencyKey[String!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-unstable)必需的
    创建期间提交的唯一值。
  • test[Boolean!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#boolean-unstable)必需的
    指示这是否是测试提交。
  • type[AppRevenueAttributionType!](https://shopify.dev/docs/admin-api/graphql/reference/billing/apprevenueattributiontype)必需的
    收入归因的类型。

返回字段

  • appRevenueAttributionRecord[AppRevenueAttributionRecord](https://shopify.dev/docs/admin-api/graphql/reference/billing/apprevenueattributionrecord)
    创建的应用收入归属记录。
  • userErrors[[AppRevenueAttributionRecordCreateUserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/billing/apprevenueattributionrecordcreateusererror)
    执行突变时发生的错误列表。