Update a ImportedPaymentTransactionGroup

PUT /api/invoice/imported_payment_transaction_group/{identifier}

Path parameters

  • identifier string Required

Query parameters

  • iw-build-id string

    build id of the client

  • iw-package-id string

    package id of the client

application/json

Body Required

  • data object
    Hide data attributes Show data attributes object
    • linked boolean
    • auto_linked boolean
    • deleted boolean
    • name string
    • created string(date-time)
    • updated string(date-time)
    • billing_payment_profile object
      Hide billing_payment_profile attributes Show billing_payment_profile attributes object
      • id integer
      • payout_type string
      • auto_mode boolean
      • is_default boolean
      • is_event_default boolean
      • execution_day string
      • next_execution_date string(date-time)
      • booking_day string
      • next_booking_date string(date-time)
      • force_billing_due_date_to_next_booking_date boolean
      • deleted boolean
      • created string(date-time)
      • updated string(date-time)
      • name string

Responses

  • 200 application/json

    Update a ImportedPaymentTransactionGroup

    Hide response attributes Show response attributes object
    • linked boolean
    • auto_linked boolean
    • deleted boolean
    • name string
    • created string(date-time)
    • updated string(date-time)
    • billing_payment_profile object
      Hide billing_payment_profile attributes Show billing_payment_profile attributes object
      • id integer
      • payout_type string
      • auto_mode boolean
      • is_default boolean
      • is_event_default boolean
      • execution_day string
      • next_execution_date string(date-time)
      • booking_day string
      • next_booking_date string(date-time)
      • force_billing_due_date_to_next_booking_date boolean
      • deleted boolean
      • created string(date-time)
      • updated string(date-time)
      • name string
PUT /api/invoice/imported_payment_transaction_group/{identifier}
curl \
 --request PUT 'https://replace-with-own-host.iw-erp.de/api/invoice/imported_payment_transaction_group/{identifier}' \
 --header "x-session-token: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"data":{"linked":true,"auto_linked":true,"deleted":true,"name":"string","created":"2025-05-04T09:42:00Z","updated":"2025-05-04T09:42:00Z","billing_payment_profile":{"id":42,"payout_type":"string","auto_mode":true,"is_default":true,"is_event_default":true,"execution_day":"string","next_execution_date":"2025-05-04T09:42:00Z","booking_day":"string","next_booking_date":"2025-05-04T09:42:00Z","force_billing_due_date_to_next_booking_date":true,"deleted":true,"created":"2025-05-04T09:42:00Z","updated":"2025-05-04T09:42:00Z","name":"string"}}}'
Request examples
{
  "data": {
    "linked": true,
    "auto_linked": true,
    "deleted": true,
    "name": "string",
    "created": "2025-05-04T09:42:00Z",
    "updated": "2025-05-04T09:42:00Z",
    "billing_payment_profile": {
      "id": 42,
      "payout_type": "string",
      "auto_mode": true,
      "is_default": true,
      "is_event_default": true,
      "execution_day": "string",
      "next_execution_date": "2025-05-04T09:42:00Z",
      "booking_day": "string",
      "next_booking_date": "2025-05-04T09:42:00Z",
      "force_billing_due_date_to_next_booking_date": true,
      "deleted": true,
      "created": "2025-05-04T09:42:00Z",
      "updated": "2025-05-04T09:42:00Z",
      "name": "string"
    }
  }
}
Response examples (200)
{
  "linked": true,
  "auto_linked": true,
  "deleted": true,
  "name": "string",
  "created": "2025-05-04T09:42:00Z",
  "updated": "2025-05-04T09:42:00Z",
  "billing_payment_profile": {
    "id": 42,
    "payout_type": "string",
    "auto_mode": true,
    "is_default": true,
    "is_event_default": true,
    "execution_day": "string",
    "next_execution_date": "2025-05-04T09:42:00Z",
    "booking_day": "string",
    "next_booking_date": "2025-05-04T09:42:00Z",
    "force_billing_due_date_to_next_booking_date": true,
    "deleted": true,
    "created": "2025-05-04T09:42:00Z",
    "updated": "2025-05-04T09:42:00Z",
    "name": "string"
  }
}