Export

CSV出力に関するAPIリファレンスは以下の通りです。

Get invoice csv(account)

請求書CSV(account)の出力

Role actions

  • ReadInvoice

  • ModifyInvoice

Request

POST /export/csv/invoice_account/{month} HTTP1.1
Authorization: Bearer {token}

リクエストパラーメータの{month}のフォーマット: yyyy-mm 例: 2020-01

Response

HTTP 200

{
  "status":"success",
  "url":"csv link"
}

CSVの内容

Get invoice csv(tag)

請求書CSV(tag)の出力

Role actions

  • ReadInvoice

  • ModifyInvoice

Request

POST /export/csv/invoice_tag/{month} HTTP1.1
Authorization: Bearer {token}

リクエストパラーメータの{month}のフォーマット: yyyy-mm 例: 2020-01

Response

HTTP 200

{
  "status":"success",
  "url":"csv link"
}

CSVの内容

Get billing group csv

請求グループCSVの出力

Role actions

  • ReadBillingGroup

  • ModifyBillingGroup

Request

POST /exportcsv/billing-group HTTP1.1
Authorization: Bearer {token}
Content-Type: application/json

{request body}

以下に{request body}のリクエストペイロードの例を示します。

{request body}

{
  "redo":false
}

Response

HTTP 200

{
  "status":"success",
  "path":"csv link"
}

CSVの内容

Get billing group setting csv

請求グループ設定CSVの出力

Role actions

  • ReadBillingGroup

  • ModifyBillingGroup

Request

POST /exportcsv/billing-group-setting HTTP1.1
Authorization: Bearer {token}
Content-Type: application/json

{request body}

以下に{request body}のリクエストペイロードの例を示します。

{request body}

{
  "redo":false
}

Response

HTTP 200

{
  "status":"success",
  "path":"csv link"
}

CSVの内容

Last updated