POST /exports/price_variants

This API triggers export of price variant data. The exported zip file contains CSV files with price variant-related data.

Servers

Request headers

Name Type Required Description
chargebee-request-origin-device String No

The device from which the customer has made the request

Content-Type String Yes The media type of the request body.

Default value: "application/x-www-form-urlencoded"

chargebee-event-webhook String No

skip only webhooks

Possible values:

  • "all-disabled"
chargebee-business-entity-id String No

If the site has multiple business entities, you can use this custom HTTP header to specify the business entity for which Chargebee should perform the operation.

chargebee-event-actions String No

skip all actions to be done on the events

Possible values:

  • "all-disabled"
chargebee-request-origin-user String No

The email address of your customer/user. Use this when the email address has only ASCII characters.

chargebee-request-origin-ip String No

The IP address of the customer where the request originated

chargebee-request-origin-user-encoded String No

The Base64-encoded email address of your customer/user. Use this if the email address has UTF-8 characters. When this header is provided, the header chargebee-request-origin-user is ignored.

chargebee-event-email String No

skip only emails

Possible values:

  • "all-disabled"

Request body fields

Name Type Required Description
business_entity_id Object No

optional, string filter The unique ID of the [business entity](/docs/api/business_entities) of this `price_variant`. [Learn more](using_business_entity_filters_in_product_catalog_list_apis) about all the scenarios before using this filter. **Supported operators :** is, is_present **Example →** *business_entity_id\[is_present\] = "true"*

business_entity_id.is String No
business_entity_id.is_present String No

null

Possible values:

  • "false"
  • "true"
include_site_level_resources Object No

optional, boolean filter Default value is `true` . To exclude site-level resources in [specific cases](), set this parameter to `false`. Possible values are : *true, false* **Supported operators :** is **Example →** *include_site_level_resources\[is\] = "null"*

include_site_level_resources.is String No

Possible values:

  • "false"
  • "true"
price_variant Object No

Parameters for price_variant

price_variant.id Object No

Filter variant based on their [id](#).

price_variant.id.not_in String No
price_variant.id.starts_with String No
price_variant.id.in String No
price_variant.id.is_not String No
price_variant.id.is String No
price_variant.name Object No

Filter variant based on their `name`s.

price_variant.name.not_in String No
price_variant.name.starts_with String No
price_variant.name.in String No
price_variant.name.is_not String No
price_variant.name.is String No
price_variant.status Object No

Filter variant based on their `status`.

price_variant.status.not_in String No
price_variant.status.in String No
price_variant.status.is_not String No

* `active` - Active * `archived` - Archived

Possible values:

  • "active"
  • "archived"
price_variant.status.is String No

* `active` - Active * `archived` - Archived

Possible values:

  • "active"
  • "archived"
price_variant.created_at Object No

Filter product based on their `created time`.

price_variant.created_at.on String No
price_variant.created_at.after String No
price_variant.created_at.between String No
price_variant.created_at.before String No
price_variant.updated_at Object No

Filter product based on their `updated time`.

price_variant.updated_at.on String No
price_variant.updated_at.after String No
price_variant.updated_at.between String No
price_variant.updated_at.before String No

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.