CustomerSubscriptionContractsBillingAttempt
顧客向け契約情報一覧取得用BillingAttempt
type CustomerSubscriptionContractsBillingAttempt {
createdAt: String!
orderId: String
orderName: String
orderToken: String
ready: Boolean
nextActionUrl: String
}
Fields
CustomerSubscriptionContractsBillingAttempt.createdAt
● String!
non-null scalar
決済日
- 説明: 支払いが実施された日
- データ例:
"2025-01-16T03:00:00.000Z"
- 備考: UTC
CustomerSubscriptionContractsBillingAttempt.orderId
● String
scalar
注文情報の Shopify 管理 ID
- 説明: 関連する注文の Shopify ID
- データ例:
"gid://shopify/Order/5805693632625"
- 備考: null:決済試行して注文が未確定の場合
CustomerSubscriptionContractsBillingAttempt.orderName
● String
scalar
注文情報の Shopify 注文名
- 説明: 関連する注文の Shopify 注 文名
- データ例:
"#1173"
- 備考: null:決済試行して注文が未確定の場合
CustomerSubscriptionContractsBillingAttempt.orderToken
● String
scalar
注文情報の Shopify トークン
- 説明: 関連する注文のトークン
- データ例:
"f382e029bb6497bce031c0f176990646"
- 備考: null:決済試行して注文が未確定の場合
CustomerSubscriptionContractsBillingAttempt.ready
● Boolean
scalar
決済試行プロセス完了フラグ
- 説明: 決済プロセスが完 了しているか
- データ例:
TRUE
- 備考: TRUE:決済済み, FALSE または null:決済中
CustomerSubscriptionContractsBillingAttempt.nextActionUrl
● String
scalar
3D セキュアのチャレンジ URL
- 説明: 3D セキュアによる認証が必要な場合の URL
- データ例:
"https://test-store.myshopify.com/subscriptions/billing/12345/challenge"
Example
{
"createdAt": "2025-01-16T03:00:00.000Z",
"orderId": "gid://shopify/Order/5805693632625",
"orderName": "#1173",
"orderToken": "f382e029bb6497bce031c0f176990646",
"ready": true,
"nextActionUrl": "https://test-store.myshopify.com/subscriptions/billing/12345/challenge"
}