次の方法で共有


Coupa (独立したPublisher) (プレビュー)

Coupa P2P コネクタ - 162 操作。 認証なし — Access-Token ヘッダーを介して渡されたベアラー トークン。ポリシーによって Authorization に書き換えられます。 接続パラメーターを使用した動的ホスト。

このコネクタは、次の製品とリージョンで使用できます。

サービス クラス リージョン
コピロット スタジオ Premium 次を除くすべてのPower Automateリージョン:
     - 米国政府 (GCC)
     - 米国政府 (GCC High)
     - 21Vianet が運営する China Cloud
     - 米国国防総省 (DoD)
ロジック アプリ Standard 次を除くすべての Logic Apps リージョン :
     - Azure Government リージョン
     - 中国リージョンAzure
     - 米国国防総省 (DoD)
Power Apps Premium 次を除くすべてのPower Appsリージョン:
     - 米国政府 (GCC)
     - 米国政府 (GCC High)
     - 21Vianet が運営する China Cloud
     - 米国国防総省 (DoD)
Power Automate(パワーオートメート) Premium 次を除くすべてのPower Automateリージョン:
     - 米国政府 (GCC)
     - 米国政府 (GCC High)
     - 21Vianet が運営する China Cloud
     - 米国国防総省 (DoD)
お問い合わせ
名前 NovaGL
URL https://www.coupa.com
Email gl1@live.com
コネクタ メタデータ
Publisher NovaGL
Website https://www.coupa.com
プライバシー ポリシー https://www.coupa.com/privacy-policy
カテゴリ 商業

Coupa P2P コネクタ

パブリッシャー: NovaGL
バージョン: 1.8.15
操作: 152
エンティティ: 33

クーパ調達およびPower Automateカスタムコネクタ買掛金管理 API。 発注書、請求書、要求、契約、ソーシング、サプライヤーなどについて説明します。


前提条件

  • API アクセスが有効になっている Coupa インスタンス
  • [セットアップ] → OAuth2/OpenID Connect クライアントで Coupa で構成された OAuth2 クライアント
  • クライアントは 、client_credentials 許可の種類を使用する必要があります
  • クライアントに付与される適切な OAuth2 スコープ

認証

このコネクタでは、ポリシーの書き換えで No Authentication を使用します。これは、カスタム コネクタに動的ベアラー トークンを挿入するためのコミュニティの回避策Power Automate確認されています。

しくみ

すべてのアクションで 、アクセス トークン ヘッダー フィールドが公開されます。 コネクタ ポリシーは、要求が Coupa に到達する前に、これを実際の Authorization ヘッダーに書き換える。

Flow passes:     Access-Token: Bearer eyJ...
Policy rewrites: Authorization: Bearer eyJ...
Coupa receives:  Authorization: Bearer eyJ...

これは、プラットフォームがパラメーターとしての Authorization の追加を直接ブロックするだけで、ポリシーが別のヘッダー値に基づいて設定するのをブロックしないために機能します。

ベアラー トークンの取得

各フローの上部にある標準Power Automate HTTP アクションを使用して、Coupa の OAuth2 エンドポイントからトークンを取得します。

Method:  POST
URI:     https://{instance}.{domain}/oauth2/token
Headers: Content-Type: application/x-www-form-urlencoded
Body:    grant_type=client_credentials
         &client_id={your-client-id}
         &client_secret={your-client-secret}
         &scope={your-scopes}

接続のセットアップ

接続を作成するときは、次の 2 つのフィールドを指定します。

フィールド Description
Coupa インスタンス名 サブドメインのみ — mycompany-test など (完全な URL ではない)
Coupa ドメイン coupahost.com (標準) または coupacloud.com

フロー パターン

すべてのフローは、次のパターンに従う必要があります。

手順 1 — トークンを取得するための HTTP アクション (上記を参照)

手順 2 - 変数を初期化する

フィールド 価値
名前 token
タイプ
価値 concat('Bearer ', body('HTTP')?['access_token'])

手順 3 - コネクタ アクション - すべてのコネクタ アクション@{variables('token')}] フィールドにを渡す

トークンの有効期限

トークンは約 1 時間後に期限切れになります。 各フロー実行の開始時に常に新しいトークンをフェッチします。実行間でトークンをキャッシュすることはありません。

フローに必要なスコープのみを要求します。

Scope Access
core.purchase_order.read 発注書の読み取り
core.purchase_order.write 発注書の作成/更新
core.invoice.read 請求書の読み取り
core.invoice.write 請求書の作成/更新
core.requisition.read 要求の読み取り
core.requisition.write 要求の作成/更新
core.contract.read コントラクトの読み取り
core.contract.write コントラクトの作成/更新
core.supplier.read サプライヤーの読み取り
core.supplier.write サプライヤーの更新
core.user.read ユーザーの読み取り
core.common.read 一般的なデータ (アカウント、アドレスなど) を読み取ります
core.sourcing.read ソーシング イベントの読み取り
core.sourcing.write ソーシング イベントの作成/更新
core.inventory.read インベントリの読み取り
core.budget.read 予算明細行の読み取り
core.approval.read 読み取り承認
core.receiving.read 受信トランザクションの読み取り
core.receiving.write 受信トランザクションを作成する
core.order_pad.read 注文一覧の読み取り
core.order_pad.write 注文一覧の作成/更新

フローの例 - 最新の発注書を取得する

手順 1 — HTTP (トークンの取得)

フィールド 価値
メソッド POST
URI https://mycompany-test.coupahost.com/oauth2/token
ヘッダー Content-Type: application/x-www-form-urlencoded
Body grant_type=client_credentials&client_id=xxx&client_secret=xxx&scope=core.purchase_order.read

手順 2 - 変数を初期化する

フィールド 価値
名前 token
タイプ
価値 concat('Bearer ', body('HTTP')?['access_token'])

手順 3 - 発注書: すべてを取得する

フィールド 価値
アクセストークン @{variables('token')}
極限 1
並べ替え created-at
通信方向 desc

手順 4 - 結果を使用する

first(body('Purchase_Order_Get_All'))
first(body('Purchase_Order_Get_All'))?['po-number']
first(body('Purchase_Order_Get_All'))?['id']

オペレーション

アカウント (2)

アクション Description
アカウント: すべて取得 すべてのアカウントを取得する
アカウント: ID で取得 ID で 1 つのアカウントを取得する

住所 (2)

アクション Description
アドレス: すべて取得 すべてのアドレスを取得する
アドレス: ID で取得 ID で 1 つのアドレスを取得する

承認 (2)

アクション Description
承認: すべて取得 すべての承認を取得する
承認: ID で取得 ID で単一の承認を取得する

予算明細行 (2)

アクション Description
予算明細行: すべて取得 すべての予算明細行を取得する
予算明細行: ID で取得 ID で 1 つの予算行を取得する

商品 (2)

アクション Description
コモディティ: すべて取得 すべての商品を取得する
商品: ID で取得 ID で 1 つの商品を取得する

契約 (13)

アクション Description
コントラクト: すべて取得 すべてのコントラクトを取得する
コントラクト: ID で取得 ID で 1 つのコントラクトを取得する
契約: 条件を取得する コントラクトのすべての用語を取得する
コントラクト: ID で用語を取得する ID で特定の契約用語を取得する
コントラクト: 用語の作成 コントラクトに新しい用語を追加する
契約: 更新期間 既存の契約条件を更新する
コントラクト: 添付ファイルを取得する コントラクトのすべての添付ファイルを取得する
コントラクト: 添付ファイルの投稿 (テキストまたは URL) コントラクトにテキストまたは URL 添付ファイルを追加する
契約: 承認者の追加 承認者をコントラクトに手動で追加する
契約: 承認者の削除 手動で追加された承認者をコントラクトから削除する
契約: 承認のために提出 承認のために契約を送信する
契約: 完了 コントラクトを完了状態に移動する
コントラクト: 作成と発行 コントラクトを作成して発行する

データ ソース (1)

アクション Description
データ ソース: すべて取得 すべてのデータ ファイル ソースを取得する

Exchangeレート (2)

アクション Description
Exchangeレート: すべて取得 すべての為替レートを取得する
Exchangeレート: ID で取得 ID で 1 つの為替レートを取得する

統合の実行 (2)

アクション Description
統合の実行: すべて取得 すべての統合実行を取得する
統合の実行: ID で取得 ID で実行される 1 つの統合を取得する

インベントリ (2)

アクション Description
インベントリ: すべて取得 すべてのインベントリ レコードを取得する
インベントリ: ID で取得 ID で 1 つのインベントリ レコードを取得する

在庫トランザクション (2)

アクション Description
インベントリ トランザクション: すべて取得 すべてのインベントリ トランザクションを取得する
インベントリ トランザクション: ID で取得 ID で 1 つのインベントリ トランザクションを取得する

請求書 (25)

アクション Description
請求書: すべて取得 すべての請求書を取得する
請求書: ID で取得 ID で 1 つの請求書を取得する
請求書: 更新 (一部) 請求書を部分的に更新する (PATCH)
請求書: 更新 (完全) 請求書を完全に更新する (PUT)
請求書: 削除 請求書を削除する
請求書: 添付ファイルを取得する 請求書のすべての添付ファイルを取得する
請求書: 添付ファイルの投稿 (テキストまたは URL) 請求書にテキストまたは URL の添付ファイルを追加する
請求書: コメントを取得する 請求書のすべてのコメントを取得する
請求書: コメントの投稿 請求書にコメントを追加する
請求書: 破棄 請求書を破棄する
請求書: 承認者の追加 請求書に承認者を手動で追加する
請求書: 承認をバイパスする 完全な承認ワークフローをバイパスする
請求書: 現在の承認をバイパスする 現在の承認ステップのみをバイパスする
請求書: 紛争 請求書に異議を申し込む
請求書: 紛争の取り消し 請求書の紛争を取り消す
請求書: 船の事前通知にフリップ 請求書を出荷前通知に変換する
請求書: 承認者の削除 手動で追加された承認者を削除する
請求書: 承認の再開 承認ワークフローを再起動する
請求書: 許容範囲の再検証 許容範囲チェックの再検証
請求書: 承認のために送信する 承認のために請求書を送信する
請求書: 行アカウントの更新 請求書明細行のアカウント コーディングを更新する
請求書: Void 請求書を無効にする
請求書: クリアランス ドキュメントのダウンロード クリアランスドキュメントをダウンロードする
請求書: イメージ スキャンのダウンロード イメージ スキャンをダウンロードする
請求書: 法的請求書 PDF のダウンロード 法的請求書の PDF をダウンロードする

項目 (2)

アクション Description
項目: すべて取得 すべての項目を取得する
項目: ID で取得 ID で 1 つの項目を取得する

ルックアップ (2)

アクション Description
ルックアップ: すべて取得 すべてのルックアップを取得する
参照: ID で取得 ID で単一のルックアップを取得する

ルックアップ値 (4)

アクション Description
ルックアップ値: すべて取得 すべての参照値を取得する
ルックアップ値: ID で取得 ID で 1 つの参照値を取得する
ルックアップ値: 作成 新しいルックアップ値を作成する
ルックアップ値: 更新 既存の参照値を更新する

注文一覧 (4)

アクション Description
注文一覧: すべて取得 すべての注文リストを取得する
注文一覧: ID で取得 ID で 1 つの注文一覧を取得する
注文一覧: 作成 新しい注文一覧を作成する
注文一覧: 更新 既存の注文一覧を更新する

注文一覧行 (4)

アクション Description
注文一覧行: すべて取得 すべての注文一覧行を取得する
注文一覧の行: ID で取得 ID で 1 つの注文一覧行を取得する
注文一覧行: 作成 新しい注文一覧行を作成する
注文一覧の行: 更新 既存の注文一覧行を更新する

支払条件 (2)

アクション Description
支払い期間: すべて取得 すべての支払条件を取得する
支払い期間: ID で取得 ID で 1 つの支払い期間を取得する

PO 変更 (5)

アクション Description
PO 変更: すべて取得 すべての発注書の変更を取得する
PO の変更: ID で取得 ID で単一の PO 変更を取得する
PO 変更: 承認者の追加 PO 変更に承認者を手動で追加する
PO 変更: 承認者の削除 手動で追加された承認者を削除する
PO 変更: 承認のために提出 承認のために PO 変更を送信する

PO ライン (8)

アクション Description
PO ライン: すべて取得 すべての発注書明細行を取得する
PO 行: ID で取得 ID で単一の PO 行を取得する
PO ライン: 添付ファイルを取得する PO 行のすべての添付ファイルを取得する
PO 行: 添付ファイルの投稿 (テキストまたは URL) テキストまたは URL 添付ファイルを PO 行に追加する
PO ライン: 請求の再オープン 請求の PO 行を再度開く
PO ライン: 入庫用に再度開く 受け取る PO 行を再度開く
PO ライン: 請求のソフト クローズ 請求の PO 明細行をソフトクローズする
PO ライン: 受け取り用ソフト クローズ 受け取り用の PO 行をソフトクローズする

発注書 (11)

アクション Description
発注書: すべて取得 すべての発注書を取得する
発注書: ID で取得 ID で 1 つの発注書を取得する
発注書: 添付ファイルを取得する 発注書のすべての添付ファイルを取得する
発注書: 添付ファイルの投稿 (テキストまたは URL) テキストまたは URL 添付ファイルを発注書に追加する
発注書: コメントを取得する 発注書のすべてのコメントを取得する
発注書: コメントの投稿 発注書にコメントを追加する
発注書: キャンセル 発注書を取り消す
発注書: クローズ 発注書を閉じる
発注書: 問題 仕入先に発注書を発行する
発注書: 購入者保留からのリリース 購入者保留から発注書をリリースする
発注書: 再度開く 閉じた発注書を再度開く

レシート要求 (2)

アクション Description
レシート要求: すべて取得 すべてのレシート要求を取得する
受信要求: ID で取得 ID で 1 つのレシート要求を取得する

トランザクションの受信 (4)

アクション Description
トランザクションの受信: すべて取得 すべての受信トランザクションを取得する
トランザクションの受信: ID で取得 ID で単一の受信トランザクションを取得する
トランザクションの受信: 添付ファイルを取得する 受信トランザクションのすべての添付ファイルを取得する
トランザクションの受信: 添付ファイルの投稿 (テキストまたは URL) 受信トランザクションにテキストまたは URL 添付ファイルを追加する

要求 (13)

アクション Description
要求: すべて取得 すべての要求を取得する
要求: ID で取得 ID で 1 つの要求を取得する
要求: 添付ファイルを取得する 要求のすべての添付ファイルを取得する
要求: 添付ファイルの投稿 (テキストまたは URL) 要求にテキストまたは URL 添付ファイルを追加する
要求: コメントを取得する 要求に関するすべてのコメントを取得する
要求: コメントの投稿 要求にコメントを追加する
要求: 鉱山を取得する 認証されたユーザーに属する要求を取得する
要求: 現在のカートを取得する 現在のショッピング カートを取得する
要求: カートに追加 (フリー テキスト) 現在のカートにフリーテキストの行項目を追加する
要求: 承認者の追加 要求に承認者を手動で追加する
要求: 承認者の削除 手動で追加された承認者を削除する
要求: 作成と送信 要求を作成し、承認のために送信する
要求: 更新と送信 要求を更新し、承認のために送信する

要求明細行 (2)

アクション Description
要求ライン: 添付ファイルの取得 要求明細行のすべての添付ファイルを取得する
要求ライン: 添付ファイルの投稿 (テキストまたは URL) 要求行にテキストまたは URL 添付ファイルを追加する

ソーシング (13)

アクション Description
ソーシング: 見積もり要求を取得する すべての見積もり要求を取得する
ソーシング: ID で見積もり要求を取得する ID で単一引用符要求を取得する
ソーシング: 見積依頼の作成 新しい見積もり要求を作成する
ソーシング: 見積依頼の更新 既存の見積もり要求を更新する
ソーシング: 見積もり要求の添付ファイルを取得する 見積もり要求で添付ファイルを取得する
ソーシング: 見積依頼後の添付ファイル (テキストまたは URL) 見積もり要求にテキストまたは URL 添付ファイルを追加する
ソーシング: ID で見積もり応答を取得する ID で単一引用符の応答を取得する
ソーシング: すべての見積もり応答を取得する すべてのイベントにわたってすべてのクォート応答を取得する
ソーシング: すべての見積もり回答を取得する (下書きを含む) 下書きを含むすべての見積もり回答を取得する
ソーシング: イベントの見積もり応答を取得する 特定のイベントの見積もり応答を取得する
ソーシング: イベントの見積もり応答を取得する (すべて) 下書きを含む特定のイベントのすべての見積もり応答を取得する
ソーシング: 賞の見積もり応答 サプライヤーに見積もり回答を与える
ソーシング: 見積もり回答の削除に関する賞 見積もり回答から賞を削除する

仕入先 (3)

アクション Description
サプライヤー: すべて取得 すべてのサプライヤーを取得する
サプライヤー: ID で取得 ID で単一のサプライヤーを取得する
サプライヤー: 更新 既存のサプライヤーを更新する

サプライヤー情報 (2)

アクション Description
サプライヤー情報: すべて取得 すべての仕入先情報レコードを取得する
サプライヤー情報: ID で取得 1 つの仕入先情報レコードを ID で取得する

仕入先品目 (6)

アクション Description
仕入先項目: すべて取得 すべての仕入先アイテムを取得する
仕入先項目: ID で取得 ID で 1 つの仕入先項目を取得する
仕入先項目: アイテム別に取得 特定の品目の仕入先品目を取得する
仕入先項目: アイテムと ID で取得 特定の品目の特定の仕入先品目を取得する
仕入先項目: 作成 新しい仕入先品目を作成する
仕入先項目: 更新 既存の仕入先品目を更新する

UOM (2)

アクション Description
UOM: すべて取得 すべての測定単位を取得する
UOM: ID で取得 ID で単一の測定単位を取得する

ユーザー (2)

アクション Description
ユーザー: すべて取得 すべてのユーザーを取得する
ユーザー: ID で取得 ID で 1 人のユーザーを取得する

ユーザー グループ (2)

アクション Description
ユーザー グループ: すべて取得 すべてのユーザー グループを取得する
ユーザー グループ: ID で取得 ID で 1 人のユーザー グループを取得する

ユーザー グループ メンバーシップ (2)

アクション Description
ユーザー グループ メンバーシップ: すべて取得 すべてのユーザー グループ メンバーシップを取得する
ユーザー グループ メンバーシップ: ID で取得 ID で 1 人のユーザー グループ メンバーシップを取得する

既知の制限事項

ファイルのアップロードはサポートされていません

添付ファイルのアップロード (multipart/form-data) は、Power Automateカスタム コネクタではサポートされていません。 Coupa 添付ファイルにファイルをアップロードするには、標準の HTTP アクション をマルチパート エンコードで直接使用します。

トークン管理

コネクタはトークンの更新を自動的に処理しません。 トークンは約 1 時間後に期限切れになります。 各フロー実行の開始時に HTTP アクションを使用して、常に新しいトークンをフェッチします。

文字列として返される数値フィールド

Coupa は、数値ではなく、通貨と数量の値 (合計、価格、金額) を文字列として返します (たとえば、"1250.00"ではない1250.00)。 これは、既知のクーパ風変わりです。 フロー内の計算でこれらの値を使用する場合は、これを考慮してください。

ブール型フィールド

一部の Coupa ブール値フィールドは、実際のブール値ではなく "true"/"false" 文字列として返されます。 フロー条件で直接ブール値を比較するのではなく、 equals(field, 'true') を使用します。

独立Publisher OAuth2 の制限事項

Power Automateは、独立したパブリッシャー コネクタの OAuth2 クライアント資格情報付与の種類をサポートしていません。 このコネクタで使用される Access-Token ヘッダー パターンは、コミュニティで確立された回避策です。


フィルター処理と改ページ位置の設定

すべての Get All 操作では、次の標準パラメーターがサポートされます。

パラメーター Description
制限 返される最大レコード数 (呼び出しあたり最大 50)
オフセット スキップするレコード - 改ページ位置の設定に使用する
並べ替え 並べ替えるフィールド名 (例: created-at
方向 並べ替えの方向: asc または desc
更新後 この ISO 8601 日付より後に更新されたレコードを返します。ポーリング/デルタ フローに最適です
更新前 この ISO 8601 日付より前に更新されたレコードを返します
作成後 この ISO 8601 日付より後に作成されたレコードを返します
Return オブジェクト 応答の深さ: 完全な limitedshallow、または省略

改ページパターン

Do Until (no more results):
  Purchase Order: Get All
    Limit:  50
    Offset: @{variables('offset')}
  
  Append to array variable: @{body('Purchase_Order_Get_All')}
  
  Increment offset by 50
  
  Condition: length(body('Purchase_Order_Get_All')) is less than 50

デルタ/ポーリング パターン

Purchase Order: Get All
  Updated After: @{addHours(utcNow(), -1)}
  Order By:      updated-at
  Direction:     desc

バージョン履歴

バージョン Changes
1.8.15 738 個の応答、739 個の定義プロパティ、および 1 つの不足しているパラメーターに説明を追加しました
1.8.14 固定 ContractTerm.id 型。operationIds のクリーンアップ (CompleteContract、SubmitContractForApproval)
1.8.13 ContractTerm 定義を追加しました。固定契約条件スキーマ
1.8.12 請求書イメージ スキャンマルチパート操作を削除しました。入れ子になったスキーマの完全な監査
1.8.11 入れ子になったパスの 13 個の間違った応答スキーマを修正しました (仕入先品目、注文一覧明細行、ソーシング、契約条件)
1.8.10 文書化されていないsupplier_items/検索エンドポイントを削除しました
1.8.9 すべてのリーフ型制約を定義から削除しました。応答に対する型の検証は不要です
1.8.8 36 個のパラメーターの概要と説明が見つからない問題を修正しました
1.8.7 9 つのマルチパート ファイルのアップロード操作をすべて削除しました (プラットフォームの制限)
1.8.6 ID 以外の整数と日時 null 許容を修正しました。包括的な型監査
1.8.5 固定数値 (書式なし) フィールドとブール型フィールド
1.8.4 すべての数値/二重フィールドを文字列に変換しました (Coupa は通貨値を文字列として返します)
1.8.3 インライン スキーマを修正しました。不足している定義 (InventoryRecord、InventoryTransaction、ReceiptRequest、DataFileSource) が追加されました。固定添付ファイル/コメント$refs
1.8.2 統合実行、データ ソース、要求コメントの 4 つのインライン オブジェクト スキーマを修正しました
1.8.1 不足している 27 の操作に説明を追加しました
1.8.0 162 のすべての操作を重要な可視性に設定する
1.7.9 定義プロパティからすべての型制約を削除しました
1.7.8 型検証エラーを防ぐために、すべての応答スキーマを削除しました
1.7.7 応答の種類の強制エラーを修正しました
1.7.6 パラメーターの可視性を修正しました - 重要/高度/内部が正しく適用されました
1.7.5 概要の不整合を修正しました。品目仕入先操作を仕入先品目グループに移動しました
1.7.4 固定要求: 鉱山の取得とカートへの追加の概要
1.7.3 プレフィックスの省略形を、すべての概要で完全なエンティティ名に置き換えた
1.7.2 Get All 操作を重要な可視性に設定する
1.7.1 すべての x-ms トリガーを削除しました: バッチ フラグ — Get All ops were hidden as triggers
1.7.0 v1.3.0 ベースからの完全なリビルド - Access-Token 認証、完全な概要、operationId、添付ファイル、コメント
1.3.0 元のベース ファイル

接続を作成する

コネクタでは、次の認証の種類がサポートされています。

デフォルト 接続を作成するためのパラメーター。 すべてのリージョン 共有不可

デフォルト

適用対象: すべてのリージョン

接続を作成するためのパラメーター。

これは共有可能な接続ではありません。 電源アプリが別のユーザーと共有されている場合、別のユーザーは新しい接続を明示的に作成するように求められます。

名前 タイプ Description 必須
Coupa インスタンス名 文字列 Coupa インスタンス サブドメインのみ ( mycompany-test など) 正しい
Coupa ドメイン 文字列 Coupa ドメインを選択する 正しい

調整制限

名前 呼び出し 更新期間
接続ごとの API 呼び出し 100 60 秒

アクション

Exchangeレート: ID で取得

1 つの為替レートを取得します。

Exchangeレート: すべて取得

FX 為替レートを照会します。

PO の変更: ID で取得

ID で発注書の変更を取得します。 OAuth スコープが必要: core.purchase_order.read

PO ライン: すべて取得

すべての発注書明細行をすべての PO で取得します。 仕入先の部品番号やその他のフィールドによるフィルター処理をサポートします。 OAuth スコープが必要: core.purchase_order.read

PO ライン: 入庫用に再度開く

受信のために再度開く

PO ライン: 受け取り用ソフト クローズ

受け取り用ソフトクローズ

PO ライン: 添付ファイルを取得する

PO ライン レコードのすべての添付ファイルを取得します。

PO ライン: 請求のソフト クローズ

請求用のソフト クローズ

PO ライン: 請求の再オープン

請求用に再度開く

PO 変更: すべて取得

発注書の変更を取得します。 OAuth スコープが必要: core.purchase_order.read

PO 変更: 承認のために提出

発注書の変更 - 承認のために発注書を送信する

PO 変更: 承認者の削除

発注書の変更 - 手動で追加された承認者を削除する

PO 変更: 承認者の追加

発注書の変更 - 承認者を手動で追加する

PO 行: ID で取得

Coupa ID で特定の発注書明細行を取得します。 OAuth スコープが必要: core.purchase_order.read

PO 行: 添付ファイルの投稿 (テキストまたは URL)

PO 行レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

UOM: ID で取得

ID で UOM を取得します。 OAuth スコープが必要です: core.common.read

UOM: すべて取得

UOM を取得します。 OAuth スコープが必要です: core.common.read

アカウント: ID で取得

ID でアカウントを取得します。 OAuth スコープが必要です: core.common.read

アカウント: すべて取得

アカウントを取得します。 OAuth スコープが必要です: core.common.read

アドレス: ID で取得

ID でアドレスを取得します。 OAuth スコープが必要です: core.common.read

アドレス: すべて取得

アドレスを取得します。 OAuth スコープが必要です: core.common.read

インベントリ トランザクション: ID で取得

ID でインベントリ トランザクションを取得します。 適切な OAuth スコープが必要です。

インベントリ トランザクション: すべて取得

インベントリ トランザクションを取得します。 適切な OAuth スコープが必要です。

インベントリ: ID で取得

ID でインベントリを取得します。 適切な OAuth スコープが必要です。

インベントリ: すべて取得

インベントリを取得します。 適切な OAuth スコープが必要です。

コモディティ: すべて取得

商品を取得します。 OAuth スコープが必要です: core.common.read

コントラクト: ID で取得

ID でコントラクトを取得します。 OAuth スコープが必要です: core.contract.read

コントラクト: ID で用語を取得する

契約期間を表示する

コントラクト: すべて取得

コントラクトを取得します。 OAuth スコープが必要です: core.contract.read

コントラクト: 作成と発行

コントラクトを作成して発行する

コントラクト: 添付ファイルの投稿 (テキストまたは URL)

コントラクト レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

コントラクト: 添付ファイルを取得する

コントラクト レコードのすべての添付ファイルを取得します。

コントラクト: 用語の作成

コントラクトの用語を作成する

サプライヤー: ID で取得

ID でサプライヤーを取得します。 OAuth スコープが必要です: core.supplier.read

サプライヤー: すべて取得

サプライヤーを取得します。 OAuth スコープが必要です: core.supplier.read

サプライヤー: 更新

サプライヤーを更新します。 OAuth スコープが必要です: core.supplier.write

サプライヤー情報: ID で取得

ID (SIM) でサプライヤー情報を取得します。 Coupa の SIM API アクセス許可が必要です。

サプライヤー情報: すべて取得

サプライヤー情報レコード (SIM) を取得します。 Coupa の SIM API アクセス許可が必要です。

ソーシング: ID で見積もり応答を取得する

特定の見積もり応答に関する情報を取得します。 OAuth スコープが必要: core.sourcing.read

ソーシング: ID で見積もり要求を取得する

ID でソーシング イベントを取得します。 OAuth スコープが必要: core.sourcing.read

ソーシング: すべての見積もり回答を取得する (下書きを含む)

送信済みバージョンとドラフト バージョンを含む、すべてのソーシング イベントのすべての応答を取得します。 OAuth スコープが必要: core.sourcing.read

ソーシング: すべての見積もり応答を取得する

すべてのソーシング イベントで送信された最新の応答を取得します。 OAuth スコープが必要: core.sourcing.read

ソーシング: イベントの見積もり応答を取得する

特定のソーシング イベントについて、サプライヤーごとに送信された最新の応答を取得します。 OAuth スコープが必要: core.sourcing.read

ソーシング: イベントの見積もり応答を取得する (すべて)

送信されたバージョンとドラフト バージョンを含む、特定のソーシング イベントのすべての応答を取得します。 OAuth スコープが必要: core.sourcing.read

ソーシング: 見積もり回答の削除に関する賞

見積もり応答から賞の指定を削除します。 OAuth スコープが必要: core.sourcing.write

ソーシング: 見積もり要求の添付ファイルを取得する

Coupa のソーシング レコードの見積依頼添付ファイルを取得します。

ソーシング: 見積もり要求を取得する

ソーシング イベント (見積もり要求) を取得します。 OAuth スコープが必要: core.sourcing.read

ソーシング: 見積依頼の作成

新しいソーシング イベント (RFP、RFI、または RFQ) を作成します。 OAuth スコープが必要: core.sourcing.write

ソーシング: 見積依頼の更新

ソーシング イベントを更新します。 OAuth スコープが必要: core.sourcing.write

ソーシング: 見積依頼後の添付ファイル (テキストまたは URL)

Coupa のソーシング レコードに対する見積依頼の添付ファイル (テキストまたは URL) の投稿。

ソーシング: 賞の見積もり応答

サプライヤーへの対応を付与します。 必要に応じて、個々の行を付与する行 ID を指定します。すべての行を一度に付与する本文を省略します。 OAuth スコープが必要: core.sourcing.write

データ ソース: すべて取得

データ ソースのクエリ

トランザクションの受信: ID で取得

ID でトランザクションを受信します。 OAuth スコープが必要です: core.receiving.read

トランザクションの受信: すべて取得

トランザクションの受信を取得します。 OAuth スコープが必要です: core.receiving.read

トランザクションの受信: 添付ファイルの投稿 (テキストまたは URL)

受信トランザクション レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

トランザクションの受信: 添付ファイルを取得する

受信トランザクション レコードのすべての添付ファイルを取得します。

ユーザー グループ メンバーシップ: ID で取得

ID でユーザー グループ メンバーシップを取得します。 OAuth スコープが必要: core.user_group.read

ユーザー グループ メンバーシップ: すべて取得

ユーザー グループ メンバーシップを取得します。 OAuth スコープが必要: core.user_group.read

ユーザー グループ: ID で取得

ID でユーザー グループを取得します。 OAuth スコープが必要: core.user_group.read

ユーザー グループ: すべて取得

ユーザー グループを取得します。 OAuth スコープが必要: core.user_group.read

ユーザー: ID で取得

1 人のユーザーを取得します。

ユーザー: すべて取得

Coupa ユーザーにクエリを実行します。

ルックアップ: すべて取得

ルックアップを取得します。 OAuth スコープが必要です: core.common.read

ルックアップ値: ID で取得

ID で参照値を取得します。 OAuth スコープが必要です: core.common.read

ルックアップ値: すべて取得

ルックアップ値を取得します。 OAuth スコープが必要です: core.common.read

ルックアップ値: 作成

新しいルックアップ値を作成します。 OAuth スコープ core.common.write が必要です

ルックアップ値: 更新

既存のルックアップ値を更新します。 OAuth スコープ core.common.write が必要です

レシート要求: すべて取得

受信要求の一覧を返します。 スコープが必要: core.receiving.read

予算明細行: ID で取得

ID で予算明細行を取得します。 OAuth スコープが必要: core.budget.read

予算明細行: すべて取得

予算明細行を取得します。 OAuth スコープが必要: core.budget.read

仕入先項目: ID で取得

1 つのサプライヤー項目を取得します。

仕入先項目: すべて取得

契約価格を使用してサプライヤー項目にクエリを実行します。

仕入先項目: アイテムと ID で取得

仕入先項目 - 仕入先品目の表示

仕入先項目: アイテム別に取得

仕入先項目 - 仕入先項目のクエリ

仕入先項目: 作成

仕入先品目 - 仕入先品目の作成

仕入先項目: 更新

サプライヤーアイテムを更新する

参照: ID で取得

ID による参照を取得します。 OAuth スコープが必要です: core.common.read

受信要求: ID で取得

ID で 1 つのレシート要求を返します。 スコープが必要: core.receiving.read

商品: ID で取得

ID で商品を取得します。 OAuth スコープが必要です: core.common.read

契約: 完了

コントラクトを完了状態に移動します。

契約: 承認のために提出

承認のために契約を送信します。

契約: 承認者の削除

手動で追加された承認者を削除する

契約: 承認者の追加

コントラクトの承認者を手動で追加する

契約: 更新期間

契約期間を更新する

契約: 条件を取得する

コントラクト用語のクエリ

承認: ID で取得

ID で承認を取得します。 OAuth スコープが必要です: core.approval.read

承認: すべて取得

承認を取得します。 OAuth スコープが必要です: core.approval.read

支払い期間: ID で取得

1 つの支払い期間を取得します。

支払い期間: すべて取得

支払条件の参照データを照会します。

注文一覧: ID で取得

ID で注文一覧を取得します。 OAuth スコープが必要: core.order_pad.read

注文一覧: すべて取得

注文リストを取得します。 OAuth スコープが必要: core.order_pad.read

注文一覧: 作成

注文一覧を作成します。 OAuth スコープが必要: core.order_pad.write

注文一覧: 更新

注文一覧を更新します。 OAuth スコープが必要: core.order_pad.write

注文一覧の行: ID で取得

ID で注文一覧の行を取得します。 OAuth スコープが必要: core.order_pad.read

注文一覧の行: 更新

注文一覧行を更新します。 OAuth スコープが必要: core.order_pad.write

注文一覧行: すべて取得

注文一覧の行を取得します。 OAuth スコープが必要: core.order_pad.read

注文一覧行: 作成

注文一覧行を作成します。 OAuth スコープが必要: core.order_pad.write

発注書: ID で取得

ID で発注書を取得します。 OAuth スコープが必要: core.purchase_order.read

発注書: すべて取得

発注書を取得します。 OAuth スコープが必要: core.purchase_order.read

発注書: キャンセル

発注書を取り消します。 OAuth スコープが必要: core.purchase_order.write

発注書: クローズ

発注書を閉じます。 OAuth スコープが必要: core.purchase_order.write

発注書: コメントの投稿

PurchaseOrder にコメントを投稿する

発注書: コメントを取得する

PO のコメントを取得します。

発注書: 再度開く

以前に閉じた発注書を再度開きます。 OAuth スコープが必要: core.purchase_order.write

発注書: 問題

発注書を発行し、仕入先に送信します。 OAuth スコープが必要: core.purchase_order.write

発注書: 添付ファイルの投稿 (テキストまたは URL)

発注書レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

発注書: 添付ファイルを取得する

発注書レコードのすべての添付ファイルを取得します。

発注書: 購入者保留からのリリース

購入者保留時に発注書をリリースする

統合の実行: ID で取得

ID による統合の取得

統合の実行: すべて取得

クエリ統合の実行

要求: ID で取得

ID で要求を取得します。 OAuth スコープが必要: core.requires.read

要求: すべて取得

要求を取得します。 OAuth スコープが必要: core.requires.read

要求: カートに追加 (フリー テキスト)

カートにフリー テキストの再読み取りを追加する

要求: コメントの投稿

要求レコードにコメントを追加します。 サプライヤー間を使用して可視性を制御します。

要求: コメントを取得する

要求レコードのすべてのコメントを取得します。

要求: 作成と送信

要求を作成し、承認のために申請を試みる

要求: 承認者の削除

手動で追加された承認者を削除する

要求: 承認者の追加

要求の承認者を手動で追加する

要求: 更新と送信

要求を更新し、承認のために送信する

要求: 添付ファイルの投稿 (テキストまたは URL)

要求レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

要求: 添付ファイルを取得する

要求レコードのすべての添付ファイルを取得します。

要求: 現在のカートを取得する

ユーザーの現在のカートを送信する

要求: 鉱山を取得する

Requistions - Query My Requistions

要求ライン: 添付ファイルの取得

要求明細行レコードのすべての添付ファイルを取得します。

要求ライン: 添付ファイルの投稿 (テキストまたは URL)

要求明細行レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

請求書: ID で取得

1 つの請求書を取得します。 埋め込みの請求書明細行を含めるには、return_object=shallow を使用します。

請求書: Void

承認された請求書を無効にする

請求書: すべて取得

請求書ヘッダーのクエリを実行します。 請求書明細行を埋め込むには、return_object=shallow を使用します。 注: /invoice_lines にはスタンドアロン Coupa エンドポイントがありません。

請求書: イメージ スキャンのダウンロード

イメージ スキャンの取得/ダウンロード

請求書: クリアランス ドキュメントのダウンロード

クリアランスドキュメントの取得/ダウンロード

請求書: コメントの投稿

請求書レコードにコメントを追加します。 サプライヤー間を使用して可視性を制御します。

請求書: コメントを取得する

請求書のコメントを取得します。

請求書: 削除

新しい状態の請求書を削除する

請求書: 承認のために送信する

承認のために下書き請求書を送信する

請求書: 承認の再開

承認を再開する

請求書: 承認をバイパスする

承認をバイパスする

請求書: 承認者の削除

手動で追加された承認者を削除する

請求書: 承認者の追加

請求書の承認者を手動で追加する

請求書: 更新 (一部)

請求書の更新

請求書: 更新 (完全)

請求書の更新

請求書: 法的請求書 PDF のダウンロード

法的請求書の取得/ダウンロード PDF

請求書: 添付ファイルの投稿 (テキストまたは URL)

請求書レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

請求書: 添付ファイルを取得する

請求書レコードのすべての添付ファイルを取得します。

請求書: 現在の承認をバイパスする

現在の承認をバイパスする

請求書: 破棄

請求書の破棄

請求書: 紛争

請求に関する紛争

請求書: 紛争の取り消し

紛争の取り消し

請求書: 船の事前通知にフリップ

請求書を事前出荷通知に反転する

請求書: 行アカウントの更新

行アカウントを更新する

請求書: 許容範囲の再検証

許容範囲の再検証

項目: ID で取得

ID で項目を取得します。 OAuth スコープが必要です: core.item.read

項目: すべて取得

アイテムを取得します。 OAuth スコープが必要です: core.item.read

Exchangeレート: ID で取得

1 つの為替レートを取得します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Exchangeレート: すべて取得

FX 為替レートを照会します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 通貨に含まれる値から
from-currency[code][contains] string

フィルター: 通貨から値が含まれています

フィルター: 通貨に含まれるもの
to-currency[code][contains] string

フィルター: 通貨に値が含まれる場合

フィルター: 後のレート日付
rate-date[gt] date-time

Rate Date greater than (ISO 8601)。

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

PO の変更: ID で取得

ID で発注書の変更を取得します。 OAuth スコープが必要: core.purchase_order.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

PO ライン: すべて取得

すべての発注書明細行をすべての PO で取得します。 仕入先の部品番号やその他のフィールドによるフィルター処理をサポートします。 OAuth スコープが必要: core.purchase_order.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

発注書 ID
order_header[id] string

親発注書の Coupa ID で行をフィルター処理します。

ソース部品番号に含まれる
source_part_num[contains] string

ソース パーツ番号にこの値が含まれている行をフィルター処理します。

ソース部品番号正確
source_part_num string

正確なソース部品番号で線をフィルター処理します。

アイテム名に含まれるもの
item[name][contains] string

アイテム名にこの値が含まれている行をフィルター処理します。

地位
status string

行の状態 (発行済み、クローズ済み、取り消し済みなど) でフィルター処理します。

仕入先 ID
order_header[supplier][id] string

仕入先の Coupa ID で行をフィルター処理します。

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

PO ライン: 入庫用に再度開く

受信のために再度開く

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

PO ライン: 受け取り用ソフト クローズ

受け取り用ソフトクローズ

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

PO ライン: 添付ファイルを取得する

PO ライン レコードのすべての添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

PO ライン: 請求のソフト クローズ

請求用のソフト クローズ

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

PO ライン: 請求の再オープン

請求用に再度開く

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

PO 変更: すべて取得

発注書の変更を取得します。 OAuth スコープが必要: core.purchase_order.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 発注書 ID
purchase_order[id] string

フィルター: 発注書 ID

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

返品

PO 変更: 承認のために提出

発注書の変更 - 承認のために発注書を送信する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

PO 変更: 承認者の削除

発注書の変更 - 手動で追加された承認者を削除する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

PO 変更: 承認者の追加

発注書の変更 - 承認者を手動で追加する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

PO 行: ID で取得

Coupa ID で特定の発注書明細行を取得します。 OAuth スコープが必要: core.purchase_order.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

PO 行: 添付ファイルの投稿 (テキストまたは URL)

PO 行レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

UOM: ID で取得

ID で UOM を取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
UOM

UOM: すべて取得

UOM を取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

フィルター: コードに値が含まれている
code[contains] string

フィルター: コードに値が含まれている

Active
active boolean

Active

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

response
array of UOM

アカウント: ID で取得

ID でアカウントを取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Account

アカウント: すべて取得

アカウントを取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: コードに値が含まれている
code[contains] string

フィルター: コードに値が含まれている

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

response
array of Account

アドレス: ID で取得

ID でアドレスを取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Address

アドレス: すべて取得

アドレスを取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

フィルター: 場所コードに値が含まれている
location-code[contains] string

フィルター: 場所コードに値が含まれている

フィルター: 市区町村に値が含まれています
city[contains] string

フィルター: 市区町村に値が含まれています

フィルター: 郵便番号に値が含まれている
postal-code[contains] string

フィルター: 郵便番号に値が含まれている

フィルター: 国に値が含まれている
country[name][contains] string

フィルター: 国に値が含まれている

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

response
array of Address

インベントリ トランザクション: ID で取得

ID でインベントリ トランザクションを取得します。 適切な OAuth スコープが必要です。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

インベントリ トランザクション: すべて取得

インベントリ トランザクションを取得します。 適切な OAuth スコープが必要です。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

返品

インベントリ: ID で取得

ID でインベントリを取得します。 適切な OAuth スコープが必要です。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

インベントリ: すべて取得

インベントリを取得します。 適切な OAuth スコープが必要です。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

通信方向
dir string

並べ替え方向 asc または desc。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

返品

コモディティ: すべて取得

商品を取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

Active
active boolean

Active

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

コントラクト: ID で取得

ID でコントラクトを取得します。 OAuth スコープが必要です: core.contract.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Contract

コントラクト: ID で用語を取得する

契約期間を表示する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親コントラクト ID
contract_id True string

親契約レコードの Coupa ID。

レコード ID
id True integer

リソースの数値識別子。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

返品

コントラクト: すべて取得

コントラクトを取得します。 OAuth スコープが必要です: core.contract.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 一覧の状態
status[in] string

状態でフィルター処理します。 コンマ区切りの値: 下書き、pending_approval、承認済み、期限切れ、取り消し済み

フィルター: 数値に値が含まれています
number[contains] string

フィルター: 数値に値が含まれています

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

フィルター: 仕入先に値が含まれている
supplier[name][contains] string

フィルター: 仕入先に値が含まれている

フィルター: 開始日が値より大きい
start-date[gt] date-time

フィルター: 開始日が値より大きい

フィルター: 終了日が値より小さい
end-date[lt] date-time

フィルター: 終了日が値より小さい

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

仕入先 ID
supplier[id] string

仕入先の Coupa ID でコントラクトをフィルター処理する

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

コントラクト: 作成と発行

コントラクトを作成して発行する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Contract

コントラクト: 添付ファイルの投稿 (テキストまたは URL)

コントラクト レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

コントラクト: 添付ファイルを取得する

コントラクト レコードのすべての添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

コントラクト: 用語の作成

コントラクトの用語を作成する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親コントラクト ID
contract_id True string

親契約レコードの Coupa ID。

返品

サプライヤー: ID で取得

ID でサプライヤーを取得します。 OAuth スコープが必要です: core.supplier.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Supplier

サプライヤー: すべて取得

サプライヤーを取得します。 OAuth スコープが必要です: core.supplier.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

フィルター: 数値に値が含まれています
number[contains] string

フィルター: 数値に値が含まれています

フィルター: 一覧の状態
status[in] string

状態でフィルター処理します。 コンマ区切りの値: アクティブ、非アクティブ

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

サプライヤー: 更新

サプライヤーを更新します。 OAuth スコープが必要です: core.supplier.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

id
id

一意の Coupa ID

名前
name

仕入先の表示名

display-name
display-name

仕入先の表示名 (代替)

数値
number

仕入先番号

状態
status

仕入先の状態

po-method
po-method

PO 配信方法 (電子メール、cxml など)

po-email
po-email

PO 配信の電子メール アドレス

payment-method
payment-method

既定の支払い方法

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-id
tax-id

税の識別番号

Web サイト
website

サプライヤー Web サイトの URL

Duns
duns

DUNS 番号

保留中
on-hold

サプライヤーが保留になっているかどうか

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

Body
Supplier

サプライヤー情報: ID で取得

ID (SIM) でサプライヤー情報を取得します。 Coupa の SIM API アクセス許可が必要です。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

サプライヤー情報: すべて取得

サプライヤー情報レコード (SIM) を取得します。 Coupa の SIM API アクセス許可が必要です。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

フィルター: 一覧の状態
status[in] string

状態でフィルター処理します。 コンマ区切りの値: アクティブ、非アクティブ、下書き

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

ソーシング: ID で見積もり応答を取得する

特定の見積もり応答に関する情報を取得します。 OAuth スコープが必要: core.sourcing.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

返品

ソーシング: ID で見積もり要求を取得する

ID でソーシング イベントを取得します。 OAuth スコープが必要: core.sourcing.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

ソーシング: すべての見積もり回答を取得する (下書きを含む)

送信済みバージョンとドラフト バージョンを含む、すべてのソーシング イベントのすべての応答を取得します。 OAuth スコープが必要: core.sourcing.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

返品

ソーシング: すべての見積もり応答を取得する

すべてのソーシング イベントで送信された最新の応答を取得します。 OAuth スコープが必要: core.sourcing.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 受賞済み
awarded string

付与された状態 (true または false) でフィルター処理する

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

ソーシング: イベントの見積もり応答を取得する

特定のソーシング イベントについて、サプライヤーごとに送信された最新の応答を取得します。 OAuth スコープが必要: core.sourcing.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

見積もり要求 ID
quote_request_id True integer

見積もり要求 (ソーシング イベント) の数値識別子。

フィルター: 受賞済み
awarded string

付与された状態 (true または false) でフィルター処理する

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

ソーシング: イベントの見積もり応答を取得する (すべて)

送信されたバージョンとドラフト バージョンを含む、特定のソーシング イベントのすべての応答を取得します。 OAuth スコープが必要: core.sourcing.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

見積もり要求 ID
quote_request_id True integer

見積もり要求 (ソーシング イベント) の数値識別子。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

返品

ソーシング: 見積もり回答の削除に関する賞

見積もり応答から賞の指定を削除します。 OAuth スコープが必要: core.sourcing.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

ソーシング: 見積もり要求の添付ファイルを取得する

Coupa のソーシング レコードの見積依頼添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

ソーシング: 見積もり要求を取得する

ソーシング イベント (見積もり要求) を取得します。 OAuth スコープが必要: core.sourcing.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 説明に値が含まれています
description[contains] string

フィルター: イベント名/説明に値が含まれています

フィルター: 一覧の状態
status[in] string

イベントの状態でフィルター処理します。 コンマ区切りの値: 下書き、発行済み、終了済み、授与済み、取り消し済み

フィルター: イベントの種類
event-type[eq] string

イベントの種類 (rfi、rfp、rfq など) でフィルター処理する

フィルター: エクスポート済み
exported string

エクスポートされたフラグでフィルター処理する (true または false)

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

ソーシング: 見積依頼の作成

新しいソーシング イベント (RFP、RFI、または RFQ) を作成します。 OAuth スコープが必要: core.sourcing.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

一意の Coupa ID

説明
description

ソーシング イベントの名前/説明

event-type
event-type

イベントの種類: rfp、rfi、または rfq。 指定しない場合、既定値は rfi です。

状態
status

イベントの状態 (下書き、公開済み、クローズ済み、授与済み、取り消し済みなど)

allow-award-individual-line-items
allow-award-individual-line-items

個々の明細を付与する機能

allow-multiple-response
allow-multiple-response

サプライヤーからの複数の応答を許可する

auto-unseal-bid
auto-unseal-bid

オンにすると、入札単価は自動的に封印されなくなります

エクスポート
exported

イベントがエクスポートされたかどうか

end-time
end-time

イベントが終了する時刻

id
id

Coupa 一意識別子

コード
code

Code

procurement-category
procurement-category

調達カテゴリ

content-groups
content-groups

コンテンツ グループ (ビジネス グループ)

attachments
attachments object
comments
comments

イベントに関するコメント

easy-forms
easy-forms

イベントに関連付けられているフォーム

custom-fields
custom-fields

カスタム フィールド

ビジネス パートナー
business-partners

ビジネス パートナー

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

ソーシング: 見積依頼の更新

ソーシング イベントを更新します。 OAuth スコープが必要: core.sourcing.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

id
id

一意の Coupa ID

説明
description

ソーシング イベントの名前/説明

event-type
event-type

イベントの種類: rfp、rfi、または rfq。 指定しない場合、既定値は rfi です。

状態
status

イベントの状態 (下書き、公開済み、クローズ済み、授与済み、取り消し済みなど)

allow-award-individual-line-items
allow-award-individual-line-items

個々の明細を付与する機能

allow-multiple-response
allow-multiple-response

サプライヤーからの複数の応答を許可する

auto-unseal-bid
auto-unseal-bid

オンにすると、入札単価は自動的に封印されなくなります

エクスポート
exported

イベントがエクスポートされたかどうか

end-time
end-time

イベントが終了する時刻

id
id

Coupa 一意識別子

コード
code

Code

procurement-category
procurement-category

調達カテゴリ

content-groups
content-groups

コンテンツ グループ (ビジネス グループ)

attachments
attachments object
comments
comments

イベントに関するコメント

easy-forms
easy-forms

イベントに関連付けられているフォーム

custom-fields
custom-fields

カスタム フィールド

ビジネス パートナー
business-partners

ビジネス パートナー

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

ソーシング: 見積依頼後の添付ファイル (テキストまたは URL)

Coupa のソーシング レコードに対する見積依頼の添付ファイル (テキストまたは URL) の投稿。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

ソーシング: 賞の見積もり応答

サプライヤーへの対応を付与します。 必要に応じて、個々の行を付与する行 ID を指定します。すべての行を一度に付与する本文を省略します。 OAuth スコープが必要: core.sourcing.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

quote_response_line_ids
quote_response_line_ids array of integer

特定の見積もり応答ライン ID の配列。 すべての行を一度に与える場合は省略します。

返品

データ ソース: すべて取得

データ ソースのクエリ

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

データ ソースファイル名
file-file-name string

Filename

ファイルの進行状況
progress[in] string

進行状況 (0 または 1)

通信方向
dir string

並べ替え方向 asc または desc。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

返品

トランザクションの受信: ID で取得

ID でトランザクションを受信します。 OAuth スコープが必要です: core.receiving.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

トランザクションの受信: すべて取得

トランザクションの受信を取得します。 OAuth スコープが必要です: core.receiving.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 一覧の状態
status[in] string

状態でフィルター処理します。 コンマ区切りの値: 受信、無効

フィルター: 項目に値が含まれている
item[name][contains] string

フィルター: 項目に値が含まれている

フィルター: 注文明細行 ID
order_line[order_header][id] string

フィルター: 注文明細行 ID

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

トランザクションの受信: 添付ファイルの投稿 (テキストまたは URL)

受信トランザクション レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

トランザクションの受信: 添付ファイルを取得する

受信トランザクション レコードのすべての添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

ユーザー グループ メンバーシップ: ID で取得

ID でユーザー グループ メンバーシップを取得します。 OAuth スコープが必要: core.user_group.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

ユーザー グループ メンバーシップ: すべて取得

ユーザー グループ メンバーシップを取得します。 OAuth スコープが必要: core.user_group.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: ユーザーに値が含まれている
user[login][contains] string

フィルター: ユーザーに値が含まれている

フィルター: ユーザー グループに値が含まれている
user_group[name][contains] string

フィルター: ユーザー グループに値が含まれている

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

ユーザー グループ: ID で取得

ID でユーザー グループを取得します。 OAuth スコープが必要: core.user_group.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
UserGroup

ユーザー グループ: すべて取得

ユーザー グループを取得します。 OAuth スコープが必要: core.user_group.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

Active
active boolean

Active

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

ユーザー: ID で取得

1 人のユーザーを取得します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
User

ユーザー: すべて取得

Coupa ユーザーにクエリを実行します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: ログインに含まれるもの
login[contains] string

フィルター: ログインに値が含まれています

フィルター: 電子メールに含まれるもの
email[contains] string

フィルター: 電子メールに値が含まれています

フィルター: 姓に含まれるもの
lastname[contains] string

フィルター: 姓に値が含まれています

Active
active boolean

アクティブな状態でフィルター処理する

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

response
array of User

ルックアップ: すべて取得

ルックアップを取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

response
array of Lookup

ルックアップ値: ID で取得

ID で参照値を取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

ルックアップ値: すべて取得

ルックアップ値を取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: ルックアップに値が含まれている
lookup[name][contains] string

フィルター: ルックアップに値が含まれている

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

Active
active boolean

Active

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

ルックアップ値: 作成

新しいルックアップ値を作成します。 OAuth スコープ core.common.write が必要です

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

名前
name True

ルックアップ値の名前

external-ref-code
external-ref-code

外部参照コード

活動中
active

値がアクティブかどうか

id
id

一意の Coupa ID

名前
name

ルックアップ名

活動中
active

ルックアップがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

ルックアップ値: 更新

既存のルックアップ値を更新します。 OAuth スコープ core.common.write が必要です

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

名前
name True

ルックアップ値の名前

external-ref-code
external-ref-code

外部参照コード

活動中
active

値がアクティブかどうか

id
id

一意の Coupa ID

名前
name

ルックアップ名

活動中
active

ルックアップがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

レシート要求: すべて取得

受信要求の一覧を返します。 スコープが必要: core.receiving.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

地位
status[in] string

状態でフィルター処理します。 コンマ区切りの値: 受信、無効、保留中

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

予算明細行: ID で取得

ID で予算明細行を取得します。 OAuth スコープが必要: core.budget.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
BudgetLine

予算明細行: すべて取得

予算明細行を取得します。 OAuth スコープが必要: core.budget.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

Active
active boolean

Active

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

仕入先項目: ID で取得

1 つのサプライヤー項目を取得します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

仕入先項目: すべて取得

契約価格を使用してサプライヤー項目にクエリを実行します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: アイテム名に含まれる
item[name][contains] string

フィルター: 項目名に値が含まれている

フィルター: 仕入先名に含まれる
supplier[name][contains] string

フィルター: 仕入先名に値が含まれている

フィルター: 仕入先部品番号に含まれる
supplier-part-num[contains] string

フィルター: 仕入先部品番号に値が含まれている

フィルター: サプライヤー ID
supplier[id] string

サプライヤー ID でフィルター処理する

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

仕入先項目: アイテムと ID で取得

仕入先項目 - 仕入先品目の表示

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親仕入先品目 ID
item_id True string

親仕入先品目レコードの Coupa ID。

レコード ID
id True integer

リソースの数値識別子。

返品

仕入先項目: アイテム別に取得

仕入先項目 - 仕入先項目のクエリ

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親仕入先品目 ID
item_id True string

親仕入先品目レコードの Coupa ID。

返品

仕入先項目: 作成

仕入先品目 - 仕入先品目の作成

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親仕入先品目 ID
item_id True string

親仕入先品目レコードの Coupa ID。

返品

仕入先項目: 更新

サプライヤーアイテムを更新する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親仕入先品目 ID
item_id True string

親仕入先品目レコードの Coupa ID。

レコード ID
id True integer

リソースの数値識別子。

返品

参照: ID で取得

ID による参照を取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Lookup

受信要求: ID で取得

ID で 1 つのレシート要求を返します。 スコープが必要: core.receiving.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

商品: ID で取得

ID で商品を取得します。 OAuth スコープが必要です: core.common.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Commodity

契約: 完了

コントラクトを完了状態に移動します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Contract

契約: 承認のために提出

承認のために契約を送信します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Contract

契約: 承認者の削除

手動で追加された承認者を削除する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Contract

契約: 承認者の追加

コントラクトの承認者を手動で追加する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Contract

契約: 更新期間

契約期間を更新する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親コントラクト ID
contract_id True string

親契約レコードの Coupa ID。

レコード ID
id True integer

リソースの数値識別子。

返品

契約: 条件を取得する

コントラクト用語のクエリ

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

親コントラクト ID
contract_id True string

親契約レコードの Coupa ID。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

返品

承認: ID で取得

ID で承認を取得します。 OAuth スコープが必要です: core.approval.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Approval

承認: すべて取得

承認を取得します。 OAuth スコープが必要です: core.approval.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 一覧の状態
status[in] string

状態でフィルター処理します。 コンマ区切りの値: pending_approval、承認済み、拒否済み

フィルター: 承認者に値が含まれている
approver[login][contains] string

フィルター: 承認者に値が含まれている

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

支払い期間: ID で取得

1 つの支払い期間を取得します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

支払い期間: すべて取得

支払条件の参照データを照会します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: コードに含まれる
code[contains] string

フィルター: コードに値が含まれている

フィルター: 名前に含まれるもの
name[contains] string

フィルター: 名前に値が含まれています

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

注文一覧: ID で取得

ID で注文一覧を取得します。 OAuth スコープが必要: core.order_pad.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
OrderPad

注文一覧: すべて取得

注文リストを取得します。 OAuth スコープが必要: core.order_pad.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

注文一覧: 作成

注文一覧を作成します。 OAuth スコープが必要: core.order_pad.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

一意の Coupa ID

名前
name True

注文リスト名

id
id

一意の Coupa ID

id
id

一意の Coupa ID

名前
name

項目名

説明
description

品目の説明

item-number
item-number

アイテム番号/SKU

活動中
active

項目がアクティブかどうか

id
id

一意の Coupa ID

名前
name

測定単位名

コード
code

UOM コード (EA、KG、HR など)

活動中
active

UOM がアクティブかどうか

allowable-precision
allowable-precision

有効桁数の 10 進数

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

名前
name

商品名

活動中
active

商品がアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

レベル
level

階層レベル

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

order-amount-method
order-amount-method True

注文金額の方法

supplier-id
supplier-id True

仕入先の Coupa ID (Coupa は数値または文字列として返される場合があります)

par-level
par-level

Par レベルの数量 (Coupa は文字列または数値として返される場合があります)

amount

注文金額 (Coupa は文字列または数値として返される場合があります)

key-item
key-item

この行がキー項目としてマークされているかどうか (Coupa はブール値または文字列として返される可能性があります)

id
id

一意の Coupa ID

名前
name

セクション名

ポジション
position

セクションの順序 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

ポジション
position

表示/順序の位置 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

add-all-items
add-all-items

すべての対象アイテムが自動的に含まれるかどうか (Coupa はブール値または文字列として返される場合があります)

any-supplier
any-supplier

任意のサプライヤーから品目を調達できるかどうか (Coupa はブール値または文字列として返される可能性があります)

base-value
base-value

基本値

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

id
id

Coupa 一意識別子

名前
name

名前

ロックされている
locked

注文リストがロックされているかどうか (Coupa はブール値または文字列として返される場合があります)

use-base-value
use-base-value

基本値を使用するかどうか (Coupa はブール値または文字列として返される場合があります)

id
id

一意の Coupa ID

名前
name

セクション名

ポジション
position

セクションの順序 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

名前
name

仕入先の表示名

display-name
display-name

仕入先の表示名 (代替)

数値
number

仕入先番号

状態
status

仕入先の状態

po-method
po-method

PO 配信方法 (電子メール、cxml など)

po-email
po-email

PO 配信の電子メール アドレス

payment-method
payment-method

既定の支払い方法

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-id
tax-id

税の識別番号

Web サイト
website

サプライヤー Web サイトの URL

Duns
duns

DUNS 番号

保留中
on-hold

サプライヤーが保留になっているかどうか

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

Body
OrderPad

注文一覧: 更新

注文一覧を更新します。 OAuth スコープが必要: core.order_pad.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

id
id

一意の Coupa ID

名前
name True

注文リスト名

id
id

一意の Coupa ID

id
id

一意の Coupa ID

名前
name

項目名

説明
description

品目の説明

item-number
item-number

アイテム番号/SKU

活動中
active

項目がアクティブかどうか

id
id

一意の Coupa ID

名前
name

測定単位名

コード
code

UOM コード (EA、KG、HR など)

活動中
active

UOM がアクティブかどうか

allowable-precision
allowable-precision

有効桁数の 10 進数

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

名前
name

商品名

活動中
active

商品がアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

レベル
level

階層レベル

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

order-amount-method
order-amount-method True

注文金額の方法

supplier-id
supplier-id True

仕入先の Coupa ID (Coupa は数値または文字列として返される場合があります)

par-level
par-level

Par レベルの数量 (Coupa は文字列または数値として返される場合があります)

amount

注文金額 (Coupa は文字列または数値として返される場合があります)

key-item
key-item

この行がキー項目としてマークされているかどうか (Coupa はブール値または文字列として返される可能性があります)

id
id

一意の Coupa ID

名前
name

セクション名

ポジション
position

セクションの順序 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

ポジション
position

表示/順序の位置 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

add-all-items
add-all-items

すべての対象アイテムが自動的に含まれるかどうか (Coupa はブール値または文字列として返される場合があります)

any-supplier
any-supplier

任意のサプライヤーから品目を調達できるかどうか (Coupa はブール値または文字列として返される可能性があります)

base-value
base-value

基本値

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

id
id

Coupa 一意識別子

名前
name

名前

ロックされている
locked

注文リストがロックされているかどうか (Coupa はブール値または文字列として返される場合があります)

use-base-value
use-base-value

基本値を使用するかどうか (Coupa はブール値または文字列として返される場合があります)

id
id

一意の Coupa ID

名前
name

セクション名

ポジション
position

セクションの順序 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

名前
name

仕入先の表示名

display-name
display-name

仕入先の表示名 (代替)

数値
number

仕入先番号

状態
status

仕入先の状態

po-method
po-method

PO 配信方法 (電子メール、cxml など)

po-email
po-email

PO 配信の電子メール アドレス

payment-method
payment-method

既定の支払い方法

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-id
tax-id

税の識別番号

Web サイト
website

サプライヤー Web サイトの URL

Duns
duns

DUNS 番号

保留中
on-hold

サプライヤーが保留になっているかどうか

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

Body
OrderPad

注文一覧の行: ID で取得

ID で注文一覧の行を取得します。 OAuth スコープが必要: core.order_pad.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

注文リスト ID
order_pad_id True integer

注文リスト識別子。

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

注文一覧の行: 更新

注文一覧行を更新します。 OAuth スコープが必要: core.order_pad.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

注文リスト ID
order_pad_id True integer

注文リスト識別子。

レコード ID
id True integer

リソースの数値識別子。

id
id

一意の Coupa ID

id
id

一意の Coupa ID

名前
name

項目名

説明
description

品目の説明

item-number
item-number

アイテム番号/SKU

活動中
active

項目がアクティブかどうか

id
id

一意の Coupa ID

名前
name

測定単位名

コード
code

UOM コード (EA、KG、HR など)

活動中
active

UOM がアクティブかどうか

allowable-precision
allowable-precision

有効桁数の 10 進数

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

名前
name

商品名

活動中
active

商品がアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

レベル
level

階層レベル

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

order-amount-method
order-amount-method True

注文金額の方法

supplier-id
supplier-id True

仕入先の Coupa ID (Coupa は数値または文字列として返される場合があります)

par-level
par-level

Par レベルの数量 (Coupa は文字列または数値として返される場合があります)

amount

注文金額 (Coupa は文字列または数値として返される場合があります)

key-item
key-item

この行がキー項目としてマークされているかどうか (Coupa はブール値または文字列として返される可能性があります)

id
id

一意の Coupa ID

名前
name

セクション名

ポジション
position

セクションの順序 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

ポジション
position

表示/順序の位置 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

注文一覧行: すべて取得

注文一覧の行を取得します。 OAuth スコープが必要: core.order_pad.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

注文リスト ID
order_pad_id True integer

注文リスト識別子。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

注文一覧行: 作成

注文一覧行を作成します。 OAuth スコープが必要: core.order_pad.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

注文リスト ID
order_pad_id True integer

注文リスト識別子。

id
id

一意の Coupa ID

id
id

一意の Coupa ID

名前
name

項目名

説明
description

品目の説明

item-number
item-number

アイテム番号/SKU

活動中
active

項目がアクティブかどうか

id
id

一意の Coupa ID

名前
name

測定単位名

コード
code

UOM コード (EA、KG、HR など)

活動中
active

UOM がアクティブかどうか

allowable-precision
allowable-precision

有効桁数の 10 進数

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

名前
name

商品名

活動中
active

商品がアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

レベル
level

階層レベル

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

order-amount-method
order-amount-method True

注文金額の方法

supplier-id
supplier-id True

仕入先の Coupa ID (Coupa は数値または文字列として返される場合があります)

par-level
par-level

Par レベルの数量 (Coupa は文字列または数値として返される場合があります)

amount

注文金額 (Coupa は文字列または数値として返される場合があります)

key-item
key-item

この行がキー項目としてマークされているかどうか (Coupa はブール値または文字列として返される可能性があります)

id
id

一意の Coupa ID

名前
name

セクション名

ポジション
position

セクションの順序 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

ポジション
position

表示/順序の位置 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
id

Coupa 一意識別子

名前
name

名前

id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

名前
name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

返品

発注書: ID で取得

ID で発注書を取得します。 OAuth スコープが必要: core.purchase_order.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

発注書: すべて取得

発注書を取得します。 OAuth スコープが必要: core.purchase_order.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 一覧の状態
status[in] string

状態でフィルター処理します。 コンマ区切りの値: draft、pending_buyer_action、pending_approval、issued、soft_closed、closed、cancelled

フィルター: 仕入先に値が含まれている
supplier[name][contains] string

フィルター: 仕入先に値が含まれている

フィルター: 出荷先の注意に値が含まれています
ship-to-attention[contains] string

フィルター: 出荷先の注意に値が含まれています

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

フィルター: 数値に値が含まれています
number[contains] string

フィルター: 数値に値が含まれています

仕入先 ID
supplier[id] string

仕入先の Coupa ID で発注書をフィルター処理する

通貨コード
currency[code] string

ISO 4217 通貨コード (USD、AUD など) で発注書をフィルター処理する

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

オーダラインソース部品番号に含まれる
order_lines[source_part_num][contains] string

注文明細行ソースの部品番号にこの値が含まれている PO をフィルター処理します。

オーダラインソース部品番号正確
order_lines[source_part_num] string

正確な注文明細行ソースの部品番号で PO をフィルター処理します。

返品

発注書: キャンセル

発注書を取り消します。 OAuth スコープが必要: core.purchase_order.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

発注書: クローズ

発注書を閉じます。 OAuth スコープが必要: core.purchase_order.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

発注書: コメントの投稿

PurchaseOrder にコメントを投稿する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

commentable-type
commentable-type string

commentable-type

Comments
comments string

comments

返品

Body
Comment

発注書: コメントを取得する

PO のコメントを取得します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

response
array of Comment

発注書: 再度開く

以前に閉じた発注書を再度開きます。 OAuth スコープが必要: core.purchase_order.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

reason_insight_code
reason_insight_code string
reason-insight-event-comment
reason-insight-event-comment string
レコード ID
id True integer

リソースの数値識別子。

返品

発注書: 問題

発注書を発行し、仕入先に送信します。 OAuth スコープが必要: core.purchase_order.write

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

発注書: 添付ファイルの投稿 (テキストまたは URL)

発注書レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

発注書: 添付ファイルを取得する

発注書レコードのすべての添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

発注書: 購入者保留からのリリース

購入者保留時に発注書をリリースする

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

統合の実行: ID で取得

ID による統合の取得

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

通信方向
dir string

並べ替え方向 asc または desc。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

レコード ID
id True integer

リソースの数値識別子。

返品

統合の実行: すべて取得

クエリ統合の実行

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

通信方向
dir string

並べ替え方向 asc または desc。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

返品

要求: ID で取得

ID で要求を取得します。 OAuth スコープが必要: core.requires.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

要求: すべて取得

要求を取得します。 OAuth スコープが必要: core.requires.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 一覧の状態
status[in] string

状態でフィルター処理します。 コンマ区切りの値: 下書き、pending_approval、承認済み、順序付け済み、soft_closed、クローズ、取り消し済み、却下済み

フィルター: Requested By に値が含まれている
requested-by[login][contains] string

フィルター: Requested By に値が含まれている

フィルター: Req Title に値が含まれている
req-title[contains] string

フィルター: Req Title に値が含まれている

フィルター: 要求明細行に値が含まれている
requisition-lines[item][name][contains] string

フィルター: 要求明細行に値が含まれている

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

要求: カートに追加 (フリー テキスト)

カートにフリー テキストの再読み取りを追加する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

出荷先 ID
id integer

出荷先 ID

カタログ以外のアイテムの説明
description string

項目の説明

数量
quantity integer

線の種類
line-type string

線の種類 (数量または Amt)

単価
unit-price string

単価

仕入先部品番号
source-part-num string

仕入先部品番号

商品 ID
id integer

商品 ID

UOM ID
id integer

UOM ID

仕入先 ID
id integer

仕入先 ID

要求の状態
status string

状態

リクエスタ ID
id integer

リクエスタ ID

ID で作成
id integer

ID で作成

タグ ID
id integer

タグ ID

返品

要求: コメントの投稿

要求レコードにコメントを追加します。 サプライヤー間を使用して可視性を制御します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

コメント
comments True string

コメント テキスト。 @[User:{id}] でユーザーをメンションする

サプライヤーに表示
to-supplier boolean

返品

Body
Comment

要求: コメントを取得する

要求レコードのすべてのコメントを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返品

response
array of Comment

要求: 作成と送信

要求を作成し、承認のために申請を試みる

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

要求: 承認者の削除

手動で追加された承認者を削除する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

要求: 承認者の追加

要求の承認者を手動で追加する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

要求: 更新と送信

要求を更新し、承認のために送信する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

要求: 添付ファイルの投稿 (テキストまたは URL)

要求レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

要求: 添付ファイルを取得する

要求レコードのすべての添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

要求: 現在のカートを取得する

ユーザーの現在のカートを送信する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

要求: 鉱山を取得する

Requistions - Query My Requistions

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

要求ライン: 添付ファイルの取得

要求明細行レコードのすべての添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

要求ライン: 添付ファイルの投稿 (テキストまたは URL)

要求明細行レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

請求書: ID で取得

1 つの請求書を取得します。 埋め込みの請求書明細行を含めるには、return_object=shallow を使用します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: Void

承認された請求書を無効にする

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: すべて取得

請求書ヘッダーのクエリを実行します。 請求書明細行を埋め込むには、return_object=shallow を使用します。 注: /invoice_lines にはスタンドアロン Coupa エンドポイントがありません。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 一覧の状態
status[in] string

請求書の状態でフィルター処理します。 複数の値がサポートされています (コンマ区切り)。

フィルター: 仕入先に値が含まれている
supplier[name][contains] string

フィルター: 仕入先に値が含まれている

フィルター: 請求書番号に値が含まれています
invoice-number[contains] string

フィルター: 請求書番号に値が含まれています

フィルター: PO 番号に値が含まれています
po-number[contains] string

請求書を PO 番号 (部分的一致) でフィルター処理します。 PO にリンクされている請求書のみを返します。 PO の関連付けに関係なくすべての請求書を取得するには、空白のままにします。

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

フィルター: 請求書の日付が値より大きい
invoice-date[gt] date-time

フィルター: 請求書の日付が値より大きい

請求日の前
invoice-date[lt] date-time

この日付より前の請求書を返す (ISO 8601)

仕入先 ID
supplier[id] string

仕入先の Coupa ID で請求書をフィルター処理する

より大きい量
amount[gt] number

合計金額がこの値を超える請求書をフィルター処理する

金額より小さい
amount[lt] number

合計金額がこの値より小さい請求書をフィルター処理する

請求書明細行仕入先の部品番号に含まれる
invoice_lines[supplier_part_num][contains] string

請求書明細行にこの値を含む仕入先部品番号がある場合に、請求書をフィルター処理します。 請求書明細行にはスタンドアロン エンドポイントがありません。これを使用して、ラインレベルの仕入先部品番号で請求書を検索します。

請求書明細行仕入先部品番号 (正確)
invoice_lines[supplier_part_num] string

請求書明細行にこの正確な仕入先部品番号がある請求書をフィルター処理します。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

response
array of Invoice

請求書: イメージ スキャンのダウンロード

イメージ スキャンの取得/ダウンロード

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Invoice

請求書: クリアランス ドキュメントのダウンロード

クリアランスドキュメントの取得/ダウンロード

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Invoice

請求書: コメントの投稿

請求書レコードにコメントを追加します。 サプライヤー間を使用して可視性を制御します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

コメント
comments True string

コメント テキスト。 @[User:{id}] でユーザーをメンションする

サプライヤーに表示
to-supplier boolean

返品

Body
Comment

請求書: コメントを取得する

請求書のコメントを取得します。

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

response
array of Comment

請求書: 削除

新しい状態の請求書を削除する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返品

Body
Invoice

請求書: 承認のために送信する

承認のために下書き請求書を送信する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 承認の再開

承認を再開する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 承認をバイパスする

承認をバイパスする

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 承認者の削除

手動で追加された承認者を削除する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 承認者の追加

請求書の承認者を手動で追加する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 更新 (一部)

請求書の更新

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 更新 (完全)

請求書の更新

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 法的請求書 PDF のダウンロード

法的請求書の取得/ダウンロード PDF

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 添付ファイルの投稿 (テキストまたは URL)

請求書レコードにテキストまたは URL 添付ファイルを追加します。 意図を内部または仕入先に設定します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

intent True string
テキスト
text string
URL
url uri

返品

Body
Attachment

請求書: 添付ファイルを取得する

請求書レコードのすべての添付ファイルを取得します。

パラメーター

名前 キー 必須 説明
レコード ID
id True integer

リソースの数値識別子。

アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

返品

請求書: 現在の承認をバイパスする

現在の承認をバイパスする

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 破棄

請求書の破棄

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 紛争

請求に関する紛争

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 紛争の取り消し

紛争の取り消し

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 船の事前通知にフリップ

請求書を事前出荷通知に反転する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 行アカウントの更新

行アカウントを更新する

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

請求書: 許容範囲の再検証

許容範囲の再検証

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

id
id

Coupa 一意識別子

理由
reason

理由

id
id

Coupa 一意識別子

名前
name

名前

前払い受け取り金額
advance-payment-received-amount

受け取った前払いの金額

amount-due
amount-due

仕入先による金額 - 源泉徴収税および顧客会計税なしの請求書合計

amount-due-less-discount
amount-due-less-discount

割引適用後の支払期日

前払い額
amount-of-advance-payment

前払い金額

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

approver-id
approver-id

承認者 ID

approver-name
approver-name

承認者名

ポジション
position

Position

created-at
created-at

作成されたレコードのタイムスタンプ

archive-entity-id
archive-entity-id

アーカイブ エンティティ ID

id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

buyer-representative-name
buyer-representative-name

購入者の代表者名

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

キャンセルされた
canceled

トランザクションが取り消されたかどうかを示します

cash-accounting-scheme-reference
cash-accounting-scheme-reference

現金会計スキームを使用する場合に注意してください。

cash-register-operator
cash-register-operator

キャッシュ レジスタオペレーター

チャネル
channel

Coupa への請求書の配信方法

clearance-document
clearance-document

クリアランスドキュメント添付ファイル名。 /retrieve_clearance_document 経由でアクセス可能

comments
comments

comments

準拠している
compliant

請求書コンプライアンス インジケーター

確認
confirmation

確認

content-validation
content-validation

請求書コンテンツ検証インジケーター

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

correct-value-of-supply
correct-value-of-supply

正しい供給価値

coupa-accelerate-status
coupa-accelerate-status

請求書に静的割引による割引支払条件があるかどうかを示す状態

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

credit-note-differences-with-original-invoice
credit-note-differences-with-original-invoice

元の請求書との貸方票の差異

credit-reason
credit-reason

クレジットを作成する理由

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

currency-id
currency-id

請求書通貨の内部 ID

currency-tax-rounding-mode
currency-tax-rounding-mode

通貨税の丸め方法

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

コネクタ
connector

Connector

created-at
created-at

作成されたレコードのタイムスタンプ

customer-account-number
customer-account-number

顧客アカウント番号

顧客会計税
customer-accounting-tax

顧客会計税

customer-accounting-tax-less-discount
customer-accounting-tax-less-discount

割引適用後の顧客会計税

customs-declaration-date
customs-declaration-date

税関申告日

customs-declaration-number
customs-declaration-number

税関申告番号

通関所
customs-office

税関

date-of-discovery-of-facts-decisive-for-correction
date-of-discovery-of-facts-decisive-for-correction

訂正に決定的な事実発見日

date-received
date-received

YYYY-MM-DDTHH:MM:SS+HH:MMZ の形式で受信した日付

delivery-date
delivery-date

供給日

delivery-number
delivery-number

配送番号

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

discount-amount
discount-amount

サプライヤーが提供する割引額

discount-due-date
discount-due-date

割引支払条件に基づいて計算された割引期限

discount-percent
discount-percent

割引率

dispute-method
dispute-method

紛争の方法

id
id

Coupa 一意識別子

理由
reason

理由

document-type
document-type

請求書または貸方票

早期支払いプロビジョニング
early-payment-provisions

早期支払インセンティブ (このフィールドは非推奨になりました)

保証オン請求書
endorsement-on-invoices

請求書の保証

為替レート
exchange-rate

為替レート

エクスポート
exported

トランザクションがエクスポートされたかどうかを示します

id
id

Coupa 一意識別子

tolerance-type
tolerance-type

許容範囲の種類

メッセージ
message

メッセージ

フォリオ番号
folio-number

フォリオ番号

支払いフォーム
form-of-payment

支払いフォーム

freight-type
freight-type

輸送の種類

gross-total
gross-total

総合計

gross-total-less-discount
gross-total-less-discount

割引適用後の請求書合計

handling-amount
handling-amount

処理量

id
id

Coupa 一意識別子

image-scan
image-scan

請求書イメージ スキャンの添付ファイル名

image-scan-content-type
image-scan-content-type

画像スキャンのコンテンツタイプ

image-scan-file-name
image-scan-file-name

イメージ スキャンのファイル名

image-scan-file-size
image-scan-file-size

イメージ スキャン ファイルのサイズ (MB)

image-scan-url
image-scan-url

請求書イメージ スキャン URL。 'http://' または 'https://' で始まる必要があります。

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

invoice-number
invoice-number

請求書番号

inbox-name
inbox-name

受信トレイ名

internal-note
internal-note

内部メモ

id
id

Coupa 一意識別子

説明
description

Description

amount

金額

accounting-total
accounting-total

会計合計

行番号
line-num

行番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-date
invoice-date True

請求書の日付

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

invoice-issuance-time
invoice-issuance-time

請求書発行時間

id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

quantity

数量

価格
price

価格

トータル
total

合計金額

uom-name
uom-name

Uom 名

account-id
account-id

アカウント ID

account-code
account-code

アカウント コード

order-line-id
order-line-id

注文明細行 ID

supplier-part-num
supplier-part-num

仕入先部品番号

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

invoice-number
invoice-number True

請求書番号

id
id

Coupa 一意識別子

amount

金額

created-at
created-at

作成されたレコードのタイムスタンプ

invoice-reference-number
invoice-reference-number

請求書参照番号 (IRN)

is-credit-note
is-credit-note

伝票タイプ与信票

is-ers-invoice
is-ers-invoice

ERS 注文に対して請求書が作成されたかどうかを示します

issuance-place
issuance-place

発行場所

last-exported-at
last-exported-at

日付と時刻のトランザクションは、YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で最後にエクスポートされました

支払い遅延ペナルティ
late-payment-penalties

支払い遅延ペナルティ

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

line-count
line-count

この請求書の行数

ラインレベルの課税
line-level-taxation True

この請求書の行レベルで税が提供されるかどうかを示すフラグ

lock-version-key
lock-version-key

バージョンのロック

margin-scheme
margin-scheme

余白スキームを使用する理由

支払い方法
means-of-payment

支払い方法

misc-amount
misc-amount

その他の金額

市区町村税番号
municipal-tax-number

市区町村税 ID 番号

national-enrollment-of-conveyor
national-enrollment-of-conveyor

コンベヤの全国登録

nature-of-operation
nature-of-operation

操作の性質

net-due-date
net-due-date

ネット支払条件に基づいて計算された純期日

net-total-less-discount
net-total-less-discount

割引適用後の純合計

new-means-of-transport
new-means-of-transport

新しい輸送手段

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

origin-currency-gross
origin-currency-gross True

現地通貨総通貨

origin-currency-net
origin-currency-net True

現地通貨純額

original-invoice-date
original-invoice-date True

クレジット ノートの場合に使用された元の請求書の日付

original-invoice-number
original-invoice-number True

クレジット ノートの場合に使用される元の請求書番号

original-value-of-supply
original-value-of-supply

供給元の価値

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

有料
paid

Paid

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

id
id

Coupa 一意識別子

メモ
note

Note

created-at
created-at

作成されたレコードのタイムスタンプ

payment-channel
payment-channel

請求書の支払い方法 - ERP (既定)、Coupa Pay Virtual Card、Coupa Pay Invoice Payment

payment-date
payment-date

請求書の支払日

支払期限
payment-due-date

支払期限

payment-method
payment-method

支払方法

payment-notes
payment-notes

請求書の支払いに含まれるメモ

payment-order-number
payment-order-number

支払注文番号

payment-order-reference
payment-order-reference

支払注文リファレンス

payment-schedule-terms
payment-schedule-terms

支払スケジュールの条件

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

payment-date
payment-date

支払期日

発行場所
place-of-issuance

発行場所

供給場所
place-of-supply

供給場所

前払い日
pre-payment-date

前払い日

protocol-number
protocol-number

プロトコル番号

id
id

Coupa 一意識別子

状態
status

レコードの現在の状態

amount

金額

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

requester-email
requester-email

要求元の電子メール

requester-lookup-name
requester-lookup-name

リクエスタールックアップ名

requester-name
requester-name

Requester Fullname

resolution-number
resolution-number

解像度番号

reverse-charge-reference
reverse-charge-reference

逆引き充電リファレンス

security-code-of-issuer
security-code-of-issuer

発行者のセキュリティ コード

self-billing-reference
self-billing-reference

請求書の自己請求参照

sender-email
sender-email

送信者の電子メール

serial-code-of-fiscal-invoice
serial-code-of-fiscal-invoice

会計請求書のシリアル コード

series
series

シリーズ

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

id
id

Coupa 一意識別子

名前
name

名前

street1
street1

Street1

city
city

市町村

郵便番号
postal-code

郵便番号

country
country

国名

shipping-amount
shipping-amount

発送金額

id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

show-tax-information?
show-tax-information?

請求書に税情報を表示する

signed-qr-code
signed-qr-code

署名付き QR コード

split-payment-mechanism
split-payment-mechanism

分割支払いメカニズム

state-tax-number
state-tax-number

州税 ID 番号

state-tax-number-for-substitute-taxpayer
state-tax-number-for-substitute-taxpayer

代理納税者の州税 ID 番号

状態
status

請求書の状態

id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

supplier-created
supplier-created

仕入先が請求書のインジケーターを作成しました

supplier-invoice-issuer-name
supplier-invoice-issuer-name

仕入先請求書発行者名

supplier-invoice-reviewer-name
supplier-invoice-reviewer-name

仕入先請求書レビュー担当者の名前

supplier-note
supplier-note

サプライヤーが提供する注意

supplier-payment-collector-name
supplier-payment-collector-name

仕入先支払コレクター名

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

supplier-representative-name
supplier-representative-name

仕入先の代表者の名前

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

活動中
active

このレコードがアクティブかどうか

id
id

Coupa 一意識別子

tax-number
tax-number

税番号

country
country

Country

tax-type
tax-type

税の種類

supplier-total
supplier-total

仕入先合計

id
id

Coupa 一意識別子

タグ
tag

タグ

taggable-type
taggable-type

タグ付け可能な型

id
id

Coupa 一意識別子

名前
name

名前

tax-amount
tax-amount

税額 (税が行レベルで指定されている場合は使用されません)

tax-amount-engine
tax-amount-engine

構成に基づいて Coupa ネイティブまたは外部税エンジンによって計算される税額

id
id

Coupa 一意識別子

名前
name

名前

コード
code

Code

tax-code-engine
tax-code-engine

構成に基づいて外部税エンジンによって返される税コード

tax-due-to-supplier
tax-due-to-supplier

サプライヤーによる税金

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tax-rate
tax-rate

税率 (税が行レベルで指定されている場合は使用されません)

tax-rate-engine
tax-rate-engine

構成に基づいて外部税エンジンによって返される税率

taxes-in-origin-country-currency
taxes-in-origin-country-currency True

現地通貨税

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

tolerance-failures
tolerance-failures

許容誤差

total-for-coupa-pay
total-for-coupa-pay

Coupa Pay の請求書合計

total-taxes-less-discount
total-taxes-less-discount

割引適用後の税金合計

total-with-taxes
total-with-taxes

税金を含む合計

transaction-notification-date
transaction-notification-date

トランザクション通知日

transaction-uuid
transaction-uuid

トランザクション UUID

type-of-document
type-of-document

ドキュメントの種類

type-of-operation
type-of-operation

演算の種類

受信の種類
type-of-receipt

領収書の種類

type-of-relationship
type-of-relationship

リレーションシップの種類

unique-identification-code-of-cash-receipt
unique-identification-code-of-cash-receipt

現金受領書の一意の識別コード

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

id
id

Coupa 一意識別子

login
login True

ログイン

メール
email True

Email

fullname
fullname

Fullname

請求書の使用
use-of-invoice

請求書の使用

vat-chargeability-system
vat-chargeability-system

VAT の料金体系

vehicle-license-plate
vehicle-license-plate

車両ナンバー プレート

verification-code
verification-code

確認コード

volume-amount
volume-amount

ボリューム量

volume-brand
volume-brand

ボリューム ブランド

volume-gross-weight
volume-gross-weight

ボリュームの総重量

volume-liquid-weight
volume-liquid-weight

容積の液体の重量

volume-numbering
volume-numbering

ボリューム番号付け

volume-type
volume-type

ボリュームの種類

id
id

Coupa 一意識別子

tax-code
tax-code

税コード

amount

金額

割合
rate

Rate

tax-code-id
tax-code-id

税コード ID

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

vat-tax-override
withholding-tax-override

源泉徴収税のオーバーライド

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Invoice

項目: ID で取得

ID で項目を取得します。 OAuth スコープが必要です: core.item.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

レコード ID
id True integer

リソースの数値識別子。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

Fields
fields string

応答に含めるフィールドのコンマ区切りのリスト (id、status、supplier など)。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

返品

Body
Item

項目: すべて取得

アイテムを取得します。 OAuth スコープが必要です: core.item.read

パラメーター

名前 キー 必須 説明
アクセストークン
Access-Token True string

ベアラー トークン — 次のように渡します: Bearer {access_token}

フィルター: 名前に値が含まれています
name[contains] string

フィルター: 名前に値が含まれています

フィルター: 説明に値が含まれています
description[contains] string

フィルター: 説明に値が含まれています

Active
active boolean

Active

フィルター: 仕入先品目に値が含まれている
supplier_items[supplier][name][contains] string

フィルター: 仕入先品目に値が含まれている

フィルター: 仕入先品目に値が含まれている
supplier_items[supplier-part-num][contains] string

フィルター: 仕入先品目に値が含まれている

作成後
created-at[gt] date-time

この日付より後に作成されたレコードを返します (ISO 8601)。

更新後
updated-at[gt] date-time

この日付より後に更新されたレコードを返します (ISO 8601)。 増分変更のポーリングに使用します。

更新前
updated-at[lt] date-time

この日付より前に更新されたレコードを返します (ISO 8601)。

極限
limit integer

返されるレコードの最大数 (最大 50)。 改ページ位置のオフセットを使用します。

オフセット
offset integer

結果を返す前にスキップするレコードの数。

返すオブジェクト
return_object string

応答の深さを制御します。 limited=key フィールドのみ、shallow=top-level only、none=minimal。 完全な応答の場合は省略します。

生フィルター
filter string

高度な Coupa フィルター式 (生)。

並べ替え
order_by string

フィールド名 (created-at など) で並べ替えます。

通信方向
dir string

並べ替え方向 asc または desc。

返品

response
array of Item

定義

Item

名前 パス 説明
id
id

一意の Coupa ID

名前
name

項目名

説明
description

品目の説明

item-number
item-number

アイテム番号/SKU

活動中
active

項目がアクティブかどうか

単位
uom UOM
商品
commodity Commodity
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

サプライヤー

名前 パス 説明
id
id

一意の Coupa ID

名前
name

仕入先の表示名

display-name
display-name

仕入先の表示名 (代替)

数値
number

仕入先番号

状態
status

仕入先の状態

po-method
po-method

PO 配信方法 (電子メール、cxml など)

po-email
po-email

PO 配信の電子メール アドレス

payment-method
payment-method

既定の支払い方法

payment-term
payment-term PaymentTerm
tax-id
tax-id

税の識別番号

Web サイト
website

サプライヤー Web サイトの URL

Duns
duns

DUNS 番号

保留中
on-hold

サプライヤーが保留になっているかどうか

primary-contact
primary-contact User
primary-address
primary-address Address
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

SupplierInformation

名前 パス 説明
id
id

仕入先情報 (SIM) レコード ID

supplier-id
supplier-id

リンクされたサプライヤー ID

supplier-name
supplier-name

仕入先名

名前
name

仕入先情報の名前

状態
status

SIM の状態

display-name
display-name

仕入先の表示名

supplier-number
supplier-number

仕入先番号

payment-term
payment-term PaymentTerm
po-method
po-method

発注書の転送方法

po-email
po-email

PO 電子メール

Web サイト
website

サプライヤー Web サイト

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
updated-by
updated-by User

依頼

名前 パス 説明
id
id

一意の Coupa ID

req-title
req-title

要求のタイトル

状態
status

要求の状態

requested-by
requested-by User
submitted-by
submitted-by User
submitted-at
submitted-at

要求が送信されたとき

current-approval
current-approval Approval
発送先住所
ship-to-address Address
id
currency.id

Coupa 一意識別子

コード
currency.code

Code

トータル
total

要求金額の合計

要求ライン
requisition-lines array of RequisitionLine

要求明細

id
department.id

Coupa 一意識別子

名前
department.name

名前

ジャスティフィケーション
justification

業務の妥当性

need-by-date
need-by-date

必要な配送日

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

PurchaseOrder

名前 パス 説明
id
id

一意の Coupa ID

po-number
po-number

発注書番号

数値
number

PO 番号 (エイリアス)

状態
status

PO ステータス

バージョン
version

PO バージョン番号

サプライヤー
supplier Supplier
id
currency.id

Coupa 一意識別子

コード
currency.code

Code

トータル
total

合計 PO 金額

発送先住所
ship-to-address Address
bill-to-address
bill-to-address Address
payment-term
payment-term PaymentTerm
ship-to-attention
ship-to-attention

注意を引く名前に発送する

要求者
requester User
バイヤー
buyer User
transmission-status
transmission-status

PO 転送状態

transmission-date
transmission-date

PO が最後に送信された日時

acknowledged-at
acknowledged-at

サプライヤーが PO を確認したとき

order-lines
order-lines array of OrderLineSummary

購買オーダライン

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
updated-by
updated-by User

OrderPad

名前 パス 説明
id
id

一意の Coupa ID

名前
name

注文リスト名

order-pad-lines
order-pad-lines array of OrderPadLine

Order Pad Lines

add-all-items
add-all-items

すべての対象アイテムが自動的に含まれるかどうか (Coupa はブール値または文字列として返される場合があります)

any-supplier
any-supplier

任意のサプライヤーから品目を調達できるかどうか (Coupa はブール値または文字列として返される可能性があります)

base-value
base-value

基本値

base-value-currency
base-value-currency Currency
business-groups
business-groups array of object

この注文一覧に割り当てられているビジネス グループ

id
business-groups.id

Coupa 一意識別子

名前
business-groups.name

名前

ロックされている
locked

注文リストがロックされているかどうか (Coupa はブール値または文字列として返される場合があります)

use-base-value
use-base-value

基本値を使用するかどうか (Coupa はブール値または文字列として返される場合があります)

order-pad-sections
order-pad-sections array of OrderPadSection

Order Pad セクション

サプライヤー
suppliers array of Supplier

納入業者

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
updated-by
updated-by User

OrderPadLine

名前 パス 説明
id
id

一意の Coupa ID

項目
item Item
order-amount-method
order-amount-method

注文金額の方法

supplier-id
supplier-id

仕入先の Coupa ID (Coupa は数値または文字列として返される場合があります)

par-level
par-level

Par レベルの数量 (Coupa は文字列または数値として返される場合があります)

amount

注文金額 (Coupa は文字列または数値として返される場合があります)

key-item
key-item

この行がキー項目としてマークされているかどうか (Coupa はブール値または文字列として返される可能性があります)

order-pad-section
order-pad-section OrderPadSection
ポジション
position

表示/順序の位置 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
updated-by
updated-by User

OrderPadSection

名前 パス 説明
id
id

一意の Coupa ID

名前
name

セクション名

ポジション
position

セクションの順序 (Coupa は数値または文字列として返される場合があります)

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

ReceivingTransaction

名前 パス 説明
id
id

一意の Coupa ID

状態
status

レシートの状態

quantity

受け取った数量

トータル
total

合計金額

order-line-id
order-line-id

PO 行 ID

order-header-id
order-header-id

PO ヘッダー ID

order-header-number
order-header-number

発注番号

単位
uom UOM
項目
item Item
receipt-date
receipt-date

商品を受け取った日付

received-by
received-by User
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

請求書

名前 パス 説明
id
id

一意の Coupa ID

invoice-number
invoice-number

仕入先請求書番号

状態
status

請求書の状態

サプライヤー
supplier Supplier
invoice-date
invoice-date

請求日

due-date
due-date

支払期日

payment-date
payment-date

実際の支払日

id
currency.id

Coupa 一意識別子

コード
currency.code

Code

トータル
total

請求書の合計金額

tax-amount
tax-amount

合計税額

shipping-amount
shipping-amount

発送金額

handling-amount
handling-amount

処理量

miscellaneous-amount
miscellaneous-amount

雑費

payment-term
payment-term PaymentTerm
発送先住所
ship-to-address Address
remit-to-address
remit-to-address Address
bill-to-address
bill-to-address Address
invoice-lines
invoice-lines array of InvoiceLine

請求書明細

po-number
po-number

リンクされた発注書番号。 PO に関連付けられていないスタンドアロン請求書の場合は null。

origin
origin

請求書の配信元 (api、cxml、電子メールなど)

有料
paid

請求書が支払われたかどうか

document-type
document-type

ドキュメントの種類

current-approval
current-approval Approval
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
total-with-taxes
total-with-taxes

すべての税金を含む総請求書合計

ラインレベルの課税
line-level-taxation

税が行レベルで計算されるかどうか

ユーザー

名前 パス 説明
id
id

一意の Coupa ID

login
login

ユーザー ログイン名

メール
email

メール アドレス

ファーストネーム
firstname

名(ファーストネーム)

lastname
lastname

fullname
fullname

完全表示名

employee-number
employee-number

従業員番号

活動中
active

ユーザーがアクティブかどうか

id
department.id

Coupa 一意識別子

名前
department.name

名前

default-address
default-address Address
roles
roles array of object

役割

id
roles.id

Coupa 一意識別子

名前
roles.name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

住所

名前 パス 説明
id
id

一意の Coupa ID

名前
name

アドレス名/ラベル

location-code
location-code

場所コード

street1
street1

番地 1

street2
street2

番地 2

city
city

市町村

状態
state

都道府県

郵便番号
postal-code

郵便番号

id
country.id

Coupa 一意識別子

名前
country.name

名前

コード
country.code

Code

活動中
active

アドレスがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

契約

名前 パス 説明
id
id

一意の Coupa ID

数値
number

契約番号

名前
name

コントラクト名

状態
status

コントラクトの状態

サプライヤー
supplier Supplier
id
currency.id

Coupa 一意識別子

コード
currency.code

Code

開始日
start-date

契約開始日

終了日
end-date

契約終了日

maximum-value
maximum-value

最大コントラクト値

minimum-value
minimum-value

最小コントラクト値

committed-value
committed-value

コミット済みの支出金額

current-value
current-value

現在の支出金額

contract-owner
contract-owner User
説明
description

コントラクトの説明

ご契約条件
terms

コントラクトの用語テキスト

is-default
is-default

これが既定のコントラクトかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
contract-terms
contract-terms array of ContractTerm

契約条件

参照

名前 パス 説明
id
id

一意の Coupa ID

名前
name

ルックアップ名

活動中
active

ルックアップがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

LookupValue

名前 パス 説明
id
id

一意の Coupa ID

名前
name

ルックアップ値の名前

external-ref-code
external-ref-code

外部参照コード

活動中
active

値がアクティブかどうか

検索
lookup Lookup
id
parent.id

Coupa 一意識別子

名前
parent.name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

Account

名前 パス 説明
id
id

一意の Coupa ID

コード
code

アカウント コード

名前
name

アカウント名

活動中
active

アカウントがアクティブかどうか

segment-1
segment-1

アカウント セグメント 1 (会社コードなど)

segment-2
segment-2

勘定セグメント 2 (コスト センターなど)

segment-3
segment-3

勘定セグメント 3 (GL 勘定など)

id
account-type.id

Coupa 一意識別子

名前
account-type.name

名前

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

Approval

名前 パス 説明
id
id

一意の Coupa ID

状態
status

承認の状態

approval-date
approval-date

承認の決定が行われた日時

approvable-type
approvable-type

承認されるオブジェクトの種類 (要求、請求書など)

approvable-id
approvable-id

承認されているオブジェクトの ID

承認者
approver User
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

BudgetLine

名前 パス 説明
id
id

一意の Coupa ID

名前
name

予算行名

説明
description

予算行の説明

amount

予算金額

残り
remaining

予算残高

活動中
active

予算明細行がアクティブかどうか

id
period.id

Coupa 一意識別子

名前
period.name

名前

アカウント
account Account
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

商品

名前 パス 説明
id
id

一意の Coupa ID

名前
name

商品名

活動中
active

商品がアクティブかどうか

id
parent.id

Coupa 一意識別子

名前
parent.name

名前

レベル
level

階層レベル

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

単位

名前 パス 説明
id
id

一意の Coupa ID

名前
name

測定単位名

コード
code

UOM コード (EA、KG、HR など)

活動中
active

UOM がアクティブかどうか

allowable-precision
allowable-precision

有効桁数の 10 進数

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

UserGroup

名前 パス 説明
id
id

一意の Coupa ID

名前
name

ユーザー グループ名

説明
description

グループの説明

活動中
active

グループがアクティブかどうか

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

UserGroupMembership

名前 パス 説明
id
id

一意の Coupa ID

ユーザー
user User
user_group
user_group UserGroup
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

Attachment

名前 パス 説明
id
id

一意の Coupa ID

file-name
file-name

ファイル名

file-size
file-size

ファイル サイズ (バイト単位)

コンテンツタイプ
content-type

MIME の種類 (アプリケーション/pdf など)

URL
url

添付ファイルをダウンロードする URL

created-at
created-at

作成されたレコードのタイムスタンプ

created-by
created-by User

コメント

名前 パス 説明
id
id

一意の Coupa ID

SMS 送信
text

コメント テキストの内容

commentable-type
commentable-type

親オブジェクトの種類

commentable-id
commentable-id

親オブジェクトの ID

created-at
created-at

作成されたレコードのタイムスタンプ

created-by
created-by User

PurchaseOrderChange

名前 パス 説明
id
id

一意の Coupa ID

purchase_order
purchase_order PurchaseOrder
change-reason
change-reason

変更理由

状態
status

状態の変更

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

SupplierItem

名前 パス 説明
id
id

Coupa 一意識別子

活動中
active

このレコードがアクティブかどうか

supplier-part-num
supplier-part-num

仕入先部品番号

単価
unit-price

単位価格

コード
currency.code

Code

項目
item Item
サプライヤー
supplier Supplier
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

PaymentTerm

名前 パス 説明
id
id

Coupa 一意識別子

コード
code

Code

名前
name

名前

net-days
net-days

Net Days

discount-days
discount-days

割引日数

discount-percent
discount-percent

割引率

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

為替レート

名前 パス 説明
id
id

Coupa 一意識別子

割合
rate

Rate

rate-date
rate-date

レートの日付

コード
from-currency.code

Code

コード
to-currency.code

Code

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

InvoiceLine

請求書明細行 - スタンドアロン エンドポイントが存在しません。 GET /invoices 応答に埋め込まれます。 GET /invoices で invoice_lines[supplier_part_num][contains] を使用して、請求書を請求書明細行仕入先の部品番号でフィルター処理します。

名前 パス 説明
id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

トータル
total

合計金額

価格
price

価格

quantity

数量

tax-amount
tax-amount

税額

order-line-id
order-line-id

リンクされた PO 行 ID。 この請求書明細行が PO 明細行に関連付けられていない場合は null。

po-number
po-number

リンクされた発注書番号。 この請求書明細行が PO に関連付けられていない場合は null。

supplier-part-num
supplier-part-num

この請求書明細行の仕入先の部品番号。 GET /invoices の invoice_lines[supplier_part_num][contains] を使用して、このフィールドで請求書をフィルター処理します。

アカウント
account Account
項目
item Item
単位
uom UOM
商品
commodity Commodity
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

要件線

名前 パス 説明
id
id

一意の Coupa ID

行番号
line-num

要求内の行番号

状態
status

回線状態

説明
description

行の説明

quantity

要求された数量

価格
price

単位価格

トータル
total

行合計

need-by-date
need-by-date

必要な配送日

line-type
line-type

線の種類 (例: GoodsLine、ServiceLine)

supplier-part-num
supplier-part-num

この行の仕入先部品番号

supplier-aux-part-num
supplier-aux-part-num

仕入先補助部品番号

項目
item Item
サプライヤー
supplier Supplier
アカウント
account Account
単位
uom UOM
商品
commodity Commodity
id
currency.id

Coupa 一意識別子

コード
currency.code

Code

id
requisition.id

親要求の Coupa ID

req-title
requisition.req-title

親要求のタイトル

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

通貨

名前 パス 説明
id
id

一意の Coupa ID

コード
code

ISO 4217 通貨コード (USD、AUD、EUR など)

名前
name

通貨の表示名

enabled
enabled

Coupa で通貨が有効になっているかどうか

ContractTerm

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

用語名

説明
description

用語の説明

created-at
created-at date-time

作成されたレコードのタイムスタンプ

updated-at
updated-at date-time

最後に更新されたタイムスタンプを記録する

QuoteRequest

名前 パス 説明
id
id

一意の Coupa ID

説明
description

ソーシング イベントの名前/説明

event-type
event-type

イベントの種類: rfp、rfi、または rfq。 指定しない場合、既定値は rfi です。

状態
status

イベントの状態 (下書き、公開済み、クローズ済み、授与済み、取り消し済みなど)

allow-award-individual-line-items
allow-award-individual-line-items

個々の明細を付与する機能

allow-multiple-response
allow-multiple-response

サプライヤーからの複数の応答を許可する

auto-unseal-bid
auto-unseal-bid

オンにすると、入札単価は自動的に封印されなくなります

エクスポート
exported

イベントがエクスポートされたかどうか

end-time
end-time

イベントが終了する時刻

id
currency.id

Coupa 一意識別子

コード
currency.code

Code

procurement-category
procurement-category

調達カテゴリ

content-groups
content-groups

コンテンツ グループ (ビジネス グループ)

attachments
attachments array of object

Attachments

アイテム
attachments object
comments
comments

イベントに関するコメント

easy-forms
easy-forms

イベントに関連付けられているフォーム

custom-fields
custom-fields

カスタム フィールド

ビジネス パートナー
business-partners

ビジネス パートナー

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
updated-by
updated-by User

QuoteResponse

名前 パス 説明
id
id

一意の Coupa ID

状態
state

応答状態 (送信済み、下書きなど)

授与
awarded

この回答が授与されたかどうか

ポジション
position

この応答の位置

昇格
promoted

この応答が昇格されたかどうか

comments
comments

回答に関するコメント

quote-request-id
quote-request-id

この応答が属する見積もり要求 (ソーシング イベント) ID

quote-request-original-id
quote-request-original-id

元のソーシング イベント識別子

quote-request-revision
quote-request-revision

ソーシング イベントリビジョン番号

submitted-at
submitted-at

応答が送信された日付/時刻

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
updated-by
updated-by User
quote-supplier
quote-supplier object

この応答を送信したサプライヤー

台詞
lines array of QuoteResponseLine

見積もり応答行

quote-request-attachment-response
quote-request-attachment-response object

添付ファイルの応答の詳細

QuoteResponseLine

名前 パス 説明
id
id

一意の Coupa ID

quantity

数量

reporting-price-amount
reporting-price-amount

レポートの価格

quote-request-line-id
quote-request-line-id

見積もり要求行 ID

lot-id
lot-id

ロット ID

授与
awarded

この応答ラインが付与されたかどうか

easy-form-response
easy-form-response

フォームの応答

shipping-term
shipping-term

出荷期間

price-amount
price-amount

提供価格

cost-element-values
cost-element-values

原価要素の提供価格

リード タイム
lead-time

提供されたリード タイム

supplier-item-name
supplier-item-name

提供されるアイテムの仕入先名

item-part-number
item-part-number

提供品目の仕入先部品番号

item-description
item-description

提供されるアイテムの仕入先の説明

price-currency
price-currency

提供された価格の通貨

attachments
attachments array of object

Attachments

アイテム
attachments object
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

created-by
created-by User
updated-by
updated-by User

Flow

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

フロー名

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

Integration

名前 パス 説明
business-object
business-object

ビジネス オブジェクト

コード
code

一意の統合コード

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

created-by
created-by UserSimple
方向
direction

通信方向

end-system
end-system

エンド システム

end-system-type
end-system-type

システムの種類の終了

id
id

Coupa 一意識別子

integration-type
integration-type

統合の種類

名前
name

統合名

標準
standard

Standard

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

updated-by
updated-by UserSimple

IntegrationError

名前 パス 説明
contact-alert-type
contact-alert-type

contact_alert_type

created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

created-by
created-by UserSimple
creation-method
creation-method

creation_method

document-id
document-id

document_id

document-revision
document-revision

document_revision

document-status
document-status

document_status

document-type
document-type

document_type

external-id
external-id

external_id

id
id

Coupa 一意識別子

統合
integration Integration
integration-filename
integration-filename

統合エラーに関連付けられているファイル名

integration-run
integration-run IntegrationRun
integration-run-id
integration-run-id

統合実行 ID

解決済み
resolved

True の 場合、このエラーが解決されます。

レスポンス
responses array of IntegrationRecordResponse

Responses

状態
status

トランザクションの状態

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

updated-by
updated-by UserSimple

IntegrationRecordResponse

名前 パス 説明
created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

created-by
created-by UserSimple
id
id

Coupa 一意識別子

response-code
response-code

response_code

response-message
response-message

response_message

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

updated-by
updated-by UserSimple

IntegrationRun

名前 パス 説明
created-at
created-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

created-by
created-by UserSimple
end-time
end-time

終了時間

フロー
flow Flow
id
id

Coupa 一意識別子

統合
integration Integration
integration-errors
integration-errors array of IntegrationError

統合エラー

records-processed
records-processed

records_processed

start-time
start-time

開始時間

状態
status

トランザクションの状態

total-records
total-records

total_records

updated-at
updated-at

YYYY-MM-DDTHH:MM:SS+HH:MMZ 形式で Coupa によって自動的に作成されます

updated-by
updated-by UserSimple

UserSimple

名前 パス 説明
id
id

Coupa 一意識別子

login
login

ログイン

メール
email

Email

fullname
fullname

Fullname

OrderLineAllocation

発注書明細行の勘定割当

名前 パス 説明
id
id

Coupa 一意識別子

account-id
account-id

アカウントの ID

account-code
account-code

アカウントのコード

account-name
account-name

アカウントの名前

account-type-id
account-type-id

アカウントの種類の ID

account-type-name
account-type-name

アカウントの種類の名前

Pct
pct

配賦割合

amount

割り当て金額

period-id
period-id

期間の ID

period-name
period-name

期間の名前

created-at
created-at

作成されたタイムスタンプ

updated-at
updated-at

更新されたタイムスタンプ

AccountTypeSimple

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

名前

PeriodSimple

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

名前

開始日
start-date

開始日

終了日
end-date

終了日

ContractSimple

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

AttachmentSimple

名前 パス 説明
id
id

Coupa 一意識別子

file-name
file-name

ファイル名

URL
url

URL

コンテンツタイプ
content-type

コンテンツ タイプ

file-size
file-size

ファイル サイズ

SupplierSimple

仕入先 (概要)

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

名前

数値
number

Number

状態
status

レコードの現在の状態

PurchaseOrderLine

名前 パス 説明
id
id

一意の Coupa ID

行番号
line-num

行番号

状態
status

回線状態

説明
description

行の説明

quantity

注文済数量

価格
price

単位価格

トータル
total

行合計

accounting-total
accounting-total

この行の会計合計

請求
invoiced

この行に対して請求された合計金額

受け
received

この行に対して受け取った合計金額または数量

need-by-date
need-by-date

必要な配送日

receipt-required
receipt-required

支払いの前に領収書が必要かどうか

match-type
match-type

請求書の一致の種類 (2 方向、3 方向など)

source-part-num
source-part-num

購入者側ソースの部品番号

supp-aux-part-num
supp-aux-part-num

仕入先補助部品番号

supplier-order-number
supplier-order-number

仕入先の独自の注文参照番号

order-header-id
order-header-id

親 PO ヘッダーの Coupa ID

order-header-number
order-header-number

親 PO 番号

項目
item Item
サプライヤー
supplier Supplier
アカウント
account Account
account-allocations
account-allocations array of OrderLineAllocation

この行の勘定割当

id
requester.id

Coupa 一意識別子

login
requester.login

ログイン

employee-number
requester.employee-number

従業員番号

単位
uom UOM
商品
commodity Commodity
id
currency.id

Coupa 一意識別子

コード
currency.code

Code

custom-fields
custom-fields

この行に対して構成されたユーザー設定フィールド

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

id
created-by.id

Coupa 一意識別子

login
created-by.login

ログイン

id
updated-by.id

Coupa 一意識別子

login
updated-by.login

ログイン

サブ行番号
sub-line-num

サブ行番号

service-type
service-type

サービスの種類

reporting-total
reporting-total

レポートの合計

savings-pct
savings-pct

節約率

minimum-order-quantity
minimum-order-quantity

最小注文数量

receipt-approval-required
receipt-approval-required

領収書の承認が必要

invoice-stop
invoice-stop

請求書停止フラグ

バージョン
version

バージョン

manufacturer-name
manufacturer-name

製造元名

manufacturer-part-number
manufacturer-part-number

製造元の部品番号

external-reference-number
external-reference-number

外部参照番号

external-reference-type
external-reference-type

外部参照の種類

accounting-total-currency
accounting-total-currency Currency
account-type
account-type AccountTypeSimple
部署
department DepartmentSimple
コントラクト
contract ContractSimple
ピリオド
period PeriodSimple
attachments
attachments array of AttachmentSimple

Attachments

DepartmentSimple

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

名前

OrderLineSummary

名前 パス 説明
id
id

Coupa 一意識別子

行番号
line-num

行番号

状態
status

レコードの現在の状態

説明
description

Description

source-part-num
source-part-num

ソースパーツ番号

quantity

数量

価格
price

価格

トータル
total

合計金額

order-header-id
order-header-id

Order ヘッダー ID

order-header-number
order-header-number

注文ヘッダー番号

サプライヤー
supplier SupplierSimple

仕入先 (概要)

項目
item Item
単位
uom UOM
need-by-date
need-by-date

日付別のニーズ

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

InventoryRecord

名前 パス 説明
id
id

Coupa 一意識別子

項目
item Item
quantity

手持ち数量

位置
location

在庫場所

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

InventoryTransaction

名前 パス 説明
id
id

Coupa 一意識別子

transaction-type
transaction-type

在庫トランザクションの種類

quantity

トランザクションの数量

項目
item Item
created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

ReceiptRequest

名前 パス 説明
id
id

Coupa 一意識別子

状態
status

受信要求の状態

created-at
created-at

作成されたレコードのタイムスタンプ

updated-at
updated-at

最後に更新されたタイムスタンプを記録する

DataFileSource

名前 パス 説明
id
id

Coupa 一意識別子

名前
name

[データ ソース名]

活動中
active

データ ソースがアクティブかどうか