# クーポンプロモーションを作成 クーポンプロモーションを作成します。 Endpoint: POST /v3/project/{project_id}/admin/coupon Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) プロジェクトID。このパラメータは、パブリッシャーアカウントのプロジェクト名の横にあります。 Example: 44056 ## Request fields (application/json): - `attribute_conditions` (array) ユーザー属性を検証するための条件。 ユーザー属性が指定されたすべての条件に一致するかどうかに基づいて、プロモーションの可用性を決定します。 - `bonus` (array,null) - `bonus.quantity` (number) アイテム数量。 - `bonus.sku` (string) アイテムSKU。 - `external_id` (string, required) 一意のプロモーションID。external_idには、小文字と大文字のラテン英数字、ピリオド、ダッシュ、およびアンダースコアのみが含まれます。 Example: "coupon_external_id" - `name` (object, required) プロモーションの名前。キーと値のペアを含む必要があります。 キーは"^[a-z]{2}-[A-Z]{2}$"形式のロケール、値は文字列です。 Example: {"de-DE":"Gutscheintitel","en-US":"Coupon title"} - `promotion_periods` (array) プロモーションの有効期間。複数の期間を指定する場合は、date_fromとdate_untilの両方が必須となります。 - `promotion_periods.date_from` (string, required) 指定されたプロモーションの開始日。 Example: "2020-08-11T10:00:00+03:00" - `promotion_periods.date_until` (string,null) 指定されたプロモーションの終了日。nullに設定した場合、プロモーションは無期限となります。単一の有効期間のみが指定されている場合に限り、nullに設定可能です。 Example: "2020-08-11T20:00:00+03:00" - `redeem_code_limit` (integer,null) コードごとの引き換え回数。 Example: 10 - `redeem_total_limit` (integer,null) クーポンの総数を制限します。 Example: 10 - `redeem_user_limit` (integer,null) 一人のユーザーが引き換えできるクーポンの総数を制限します。 Example: 10 ## Response 201 fields (application/json): - `external_id` (string) 一意のプロモーションID。external_idには、小文字と大文字のラテン英数字、ピリオド、ダッシュ、およびアンダースコアのみが含まれます。 Example: "coupon_external_id" ## Response 401 fields (application/json): - `errorCode` (integer) Example: 1020 - `errorMessage` (string) Example: "[0401-1020]: Error in Authentication method occurred" - `statusCode` (integer) Example: 401 ## Response 422 fields (application/json): - `errorCode` (integer) Example: 1102 - `errorMessage` (string) Example: "[0401-1102]: Unprocessable Entity. The property `external_id` is required" - `statusCode` (integer) Example: 422