Skip to main content
POST
/
v1
/
getCustomerRevenueSystemConfigurations
Fetch revenue system configurations for a customer
curl --request POST \
  --url https://api.metronome.com/v1/getCustomerRevenueSystemConfigurations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customer_id": "6a37bb88-8538-48c5-b37b-a41c836328bd"
}
'
{
  "data": [
    {
      "id": "e045c62b-65e7-4e84-a924-3f06f8b621d0",
      "provider": "netsuite",
      "customer_id": "6a37bb88-8538-48c5-b37b-a41c836328bd",
      "configuration": {
        "netsuite_customer_id": "12345"
      },
      "delivery_method_id": "4422e46f-b374-4159-97e3-300208cdb2e2",
      "delivery_method": "direct_to_billing_provider",
      "delivery_method_configuration": {
        "netsuite_account_id": "acct_123"
      },
      "archived_at": null
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The customer id for which to fetch revenue system configurations

customer_id
string<uuid>
required
include_archived
boolean

Whether to include archived configurations

Response

Success

data
array
required