Update Contract
Update a specific contract
curl --request PATCH \
--url https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auto_charges": true,
"auto_renews": true,
"billing_anchor_date": "2023-11-07T05:31:56Z",
"custom_variables": {},
"expiration_date": {},
"metadata": {},
"owner_id": "<string>",
"sales_user_id": "<string>",
"signatories": [
{
"email": "[email protected]",
"name": "<string>",
"declined": true,
"position": 123,
"signature_id": "<string>",
"signature_link": "<string>",
"signed": true,
"signed_date": "2023-11-07T05:31:56Z",
"title": "<string>",
"view_customer_input_timestamps": [
"2023-11-07T05:31:56Z"
],
"view_timestamps": [
"2023-11-07T05:31:56Z"
]
}
],
"start_date": "2023-11-07T05:31:56Z",
"title": "<string>"
}
'import requests
url = "https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}"
payload = {
"auto_charges": True,
"auto_renews": True,
"billing_anchor_date": "2023-11-07T05:31:56Z",
"custom_variables": {},
"expiration_date": {},
"metadata": {},
"owner_id": "<string>",
"sales_user_id": "<string>",
"signatories": [
{
"email": "[email protected]",
"name": "<string>",
"declined": True,
"position": 123,
"signature_id": "<string>",
"signature_link": "<string>",
"signed": True,
"signed_date": "2023-11-07T05:31:56Z",
"title": "<string>",
"view_customer_input_timestamps": ["2023-11-07T05:31:56Z"],
"view_timestamps": ["2023-11-07T05:31:56Z"]
}
],
"start_date": "2023-11-07T05:31:56Z",
"title": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
auto_charges: true,
auto_renews: true,
billing_anchor_date: '2023-11-07T05:31:56Z',
custom_variables: {},
expiration_date: {},
metadata: {},
owner_id: '<string>',
sales_user_id: '<string>',
signatories: [
{
email: '[email protected]',
name: '<string>',
declined: true,
position: 123,
signature_id: '<string>',
signature_link: '<string>',
signed: true,
signed_date: '2023-11-07T05:31:56Z',
title: '<string>',
view_customer_input_timestamps: ['2023-11-07T05:31:56Z'],
view_timestamps: ['2023-11-07T05:31:56Z']
}
],
start_date: '2023-11-07T05:31:56Z',
title: '<string>'
})
};
fetch('https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'auto_charges' => true,
'auto_renews' => true,
'billing_anchor_date' => '2023-11-07T05:31:56Z',
'custom_variables' => [
],
'expiration_date' => [
],
'metadata' => [
],
'owner_id' => '<string>',
'sales_user_id' => '<string>',
'signatories' => [
[
'email' => '[email protected]',
'name' => '<string>',
'declined' => true,
'position' => 123,
'signature_id' => '<string>',
'signature_link' => '<string>',
'signed' => true,
'signed_date' => '2023-11-07T05:31:56Z',
'title' => '<string>',
'view_customer_input_timestamps' => [
'2023-11-07T05:31:56Z'
],
'view_timestamps' => [
'2023-11-07T05:31:56Z'
]
]
],
'start_date' => '2023-11-07T05:31:56Z',
'title' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}"
payload := strings.NewReader("{\n \"auto_charges\": true,\n \"auto_renews\": true,\n \"billing_anchor_date\": \"2023-11-07T05:31:56Z\",\n \"custom_variables\": {},\n \"expiration_date\": {},\n \"metadata\": {},\n \"owner_id\": \"<string>\",\n \"sales_user_id\": \"<string>\",\n \"signatories\": [\n {\n \"email\": \"[email protected]\",\n \"name\": \"<string>\",\n \"declined\": true,\n \"position\": 123,\n \"signature_id\": \"<string>\",\n \"signature_link\": \"<string>\",\n \"signed\": true,\n \"signed_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\",\n \"view_customer_input_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ],\n \"view_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ]\n }\n ],\n \"start_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"auto_charges\": true,\n \"auto_renews\": true,\n \"billing_anchor_date\": \"2023-11-07T05:31:56Z\",\n \"custom_variables\": {},\n \"expiration_date\": {},\n \"metadata\": {},\n \"owner_id\": \"<string>\",\n \"sales_user_id\": \"<string>\",\n \"signatories\": [\n {\n \"email\": \"[email protected]\",\n \"name\": \"<string>\",\n \"declined\": true,\n \"position\": 123,\n \"signature_id\": \"<string>\",\n \"signature_link\": \"<string>\",\n \"signed\": true,\n \"signed_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\",\n \"view_customer_input_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ],\n \"view_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ]\n }\n ],\n \"start_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"auto_charges\": true,\n \"auto_renews\": true,\n \"billing_anchor_date\": \"2023-11-07T05:31:56Z\",\n \"custom_variables\": {},\n \"expiration_date\": {},\n \"metadata\": {},\n \"owner_id\": \"<string>\",\n \"sales_user_id\": \"<string>\",\n \"signatories\": [\n {\n \"email\": \"[email protected]\",\n \"name\": \"<string>\",\n \"declined\": true,\n \"position\": 123,\n \"signature_id\": \"<string>\",\n \"signature_link\": \"<string>\",\n \"signed\": true,\n \"signed_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\",\n \"view_customer_input_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ],\n \"view_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ]\n }\n ],\n \"start_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"acv": {
"currency": "<string>",
"value_in_cents": 123
},
"auto_charges": true,
"auto_renews": true,
"billing_anchor_date": "2023-11-07T05:31:56Z",
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"product": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"external_name": "<string>",
"gl_code": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
},
"product_id": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"id": "<string>",
"is_auto_generated": true,
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"term": {
"count": 123
},
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"campaigns": [
{
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"created_at": "2023-11-07T05:31:56Z",
"current_step": 1,
"customer": {
"email": "<string>",
"id": "<string>",
"name": "<string>",
"org_name": "<string>"
},
"id": "<string>",
"invoice": {
"auto_charges": true,
"billed_customer": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"arr": {
"currency": "<string>",
"value_in_cents": 123
},
"billing_emails": [
"<string>"
],
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"customer_integration_metadata": {},
"display_name": "<string>",
"email": "<string>",
"exclude_from_metrics": true,
"id": "<string>",
"identifier": "<string>",
"integration_references": [
{
"integration_icon": "<string>",
"integration_id": "<string>",
"integration_key": "<string>",
"integration_name": "<string>",
"reference_type": "<string>",
"remote_id": "<string>",
"remote_type": "<string>"
}
],
"locale": "<string>",
"managed_externally": true,
"metadata": {},
"mrr": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"status": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"billed_customer_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"customer": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"arr": {
"currency": "<string>",
"value_in_cents": 123
},
"billing_emails": [
"<string>"
],
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"customer_integration_metadata": {},
"display_name": "<string>",
"email": "<string>",
"exclude_from_metrics": true,
"id": "<string>",
"identifier": "<string>",
"integration_references": [
{
"integration_icon": "<string>",
"integration_id": "<string>",
"integration_key": "<string>",
"integration_name": "<string>",
"reference_type": "<string>",
"remote_id": "<string>",
"remote_type": "<string>"
}
],
"locale": "<string>",
"managed_externally": true,
"metadata": {},
"mrr": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"status": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"customer_id": "<string>",
"due": {
"currency": "<string>",
"value_in_cents": 123
},
"due_date": "2023-11-07T05:31:56Z",
"hosted_link": "<string>",
"invoice_date": "2023-11-07T05:31:56Z",
"name": "<string>",
"number": "<string>",
"paid": {
"currency": "<string>",
"value_in_cents": 123
},
"paid_date": "2023-11-07T05:31:56Z",
"pdf_link": "<string>",
"prorated_amount": {
"currency": "<string>",
"value_in_cents": 123
},
"revenue": {
"currency": "<string>",
"value_in_cents": 123
},
"status": "<string>",
"sub_total": {
"currency": "<string>",
"value_in_cents": 123
},
"subscription_id": "<string>",
"total": {
"currency": "<string>",
"value_in_cents": 123
},
"updated_at": "2023-11-07T05:31:56Z",
"uuid": "<string>"
},
"next_action_in": "2023-11-07T05:31:56Z",
"next_action_type": "<string>",
"proposal": "<unknown>",
"status": "<string>",
"steps": [
{
"action_type": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"enqueued_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"notification_log": {
"cc": [
"<string>"
],
"id": "<string>",
"notification_type": "<string>",
"status": "<string>",
"subject": "<string>",
"to": "<string>"
},
"payment_transaction": {
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"provider_type": "<string>",
"status": "<string>",
"total_amount": {
"currency": "<string>",
"value_in_cents": 123
},
"total_amount_default_currency": {
"currency": "<string>",
"value_in_cents": 123
},
"transaction_type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"status": "<string>",
"step_number": 1
}
],
"time_from_reference_data": "2023-11-07T05:31:56Z",
"total_steps": 1,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"change_custom_date": "2023-11-07T05:31:56Z",
"change_proration_type": "<string>",
"change_reset_billing_anchor": true,
"change_timing": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"completed_date": "2023-11-07T05:31:56Z",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"content": "<string>",
"content_template": "<string>",
"contract_attachments": [
{
"attachment_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"file_id": "<string>",
"id": "<string>",
"original_filename": "<string>",
"uploaded_at": "2023-11-07T05:31:56Z"
}
],
"counter_signatories": [
{
"company_user": {
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"image_url": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"email": "<string>",
"id": "<string>",
"name": "<string>",
"verified": true
}
},
"declined": true,
"email": "<string>",
"id": "<string>",
"position": 123,
"signature_id": "<string>",
"signed": true,
"signed_date": "2023-11-07T05:31:56Z"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"custom_variables": {},
"customer": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"billing_emails": [
"<string>"
],
"email": "<string>",
"id": "<string>",
"identifier": "<string>",
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer": "<unknown>",
"parent_customer_id": "<string>",
"phone": "<string>"
},
"customer_id": "<string>",
"description": "<string>",
"discounts": [
{
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"error_status_details": [
{
"error_message": "<string>",
"error_status": "<string>",
"signature_id": "<string>"
}
],
"expiration_date": "2023-11-07T05:31:56Z",
"finalized_date": "2023-11-07T05:31:56Z",
"follow_up": "<string>",
"follow_up_data": {},
"id": "<string>",
"invoice_due_date_from_creation": 1,
"invoice_event_grace_period": 1,
"invoice_payment_instructions": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"one_time_billables": [
{
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"id": "<string>",
"name": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"options": {
"allow_promo_code": true,
"collect_taxes": true,
"completion_action": "<string>",
"confirmation_message": "<string>",
"redirect_url": "<string>",
"requires_customer_address": true,
"requires_customer_confirmation": true,
"requires_customer_phone": true,
"requires_email_verification": true,
"save_card_on_checkout": true
},
"owner": {
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"image_url": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"email": "<string>",
"id": "<string>",
"name": "<string>",
"verified": true
}
},
"owner_id": "<string>",
"parent_billed": true,
"payment_config": {
"account_id": "<string>",
"client_secret": "<string>",
"integration_id": "<string>",
"live_mode": true,
"provider": "<string>",
"razorpay": {
"account_id": "<string>"
},
"stripe": {
"account_id": "<string>"
}
},
"payment_data": {
"helcim": {
"payment_method_id": "<string>"
},
"razor_pay": {
"token_id": "<string>"
},
"stripe": {
"payment_method_id": "<string>"
}
},
"payment_provided_date": "2023-11-07T05:31:56Z",
"po_number": "<string>",
"previous_arr": {
"currency": "<string>",
"value_in_cents": 123
},
"previous_sub_change": [
{
"phases": [
{
"checkout_line_item": [
{
"amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"amount_html": "<string>",
"currency": "<string>",
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_expiration": {
"diff": true,
"new": "2023-11-07T05:31:56Z",
"old": "2023-11-07T05:31:56Z"
},
"discount_html": "<string>",
"discount_line_items": {
"aggregate_price": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"currency": "<string>",
"discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_html": "<string>",
"discount_percent": {
"diff": true,
"new": 123,
"old": 123
},
"discount_type": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"name": "<string>",
"prev_discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"state": "<string>",
"status": "<string>"
},
"discount_name": {
"diff": true,
"new": "<string>",
"old": "<string>"
},
"discount_percent": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"frequencyName": "<string>",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"product_name": "<string>",
"product_name_display": "<string>",
"product_name_html": "<string>",
"product_pricing_external_name": "<string>",
"quantity": {
"diff": true,
"new": 123,
"old": 123
},
"quantity_html": "<string>",
"status": "<string>",
"upsell": {
"totalAnnualSavings": {
"diff": true,
"new": 123,
"old": 123
},
"upsellAggregatePricing": {
"diff": true,
"new": 123,
"old": 123
},
"upsellFrequency": "<string>",
"upsellState": true
}
}
],
"discount_row": [
{
"aggregate_price": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"currency": "<string>",
"discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_html": "<string>",
"discount_percent": {
"diff": true,
"new": 123,
"old": 123
},
"discount_type": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"name": "<string>",
"prev_discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"state": "<string>",
"status": "<string>"
}
],
"minimum_spend": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"minimum_spend_html": "<string>",
"one_time_line_item": [
{
"amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"amount_html": "<string>",
"currency": "<string>",
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_expiration": {
"diff": true,
"new": "2023-11-07T05:31:56Z",
"old": "2023-11-07T05:31:56Z"
},
"discount_html": "<string>",
"discount_line_items": {
"aggregate_price": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"currency": "<string>",
"discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_html": "<string>",
"discount_percent": {
"diff": true,
"new": 123,
"old": 123
},
"discount_type": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"name": "<string>",
"prev_discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"state": "<string>",
"status": "<string>"
},
"discount_name": {
"diff": true,
"new": "<string>",
"old": "<string>"
},
"discount_percent": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"frequencyName": "<string>",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"product_name": "<string>",
"product_name_display": "<string>",
"product_name_html": "<string>",
"product_pricing_external_name": "<string>",
"quantity": {
"diff": true,
"new": 123,
"old": 123
},
"quantity_html": "<string>",
"status": "<string>",
"upsell": {
"totalAnnualSavings": {
"diff": true,
"new": 123,
"old": 123
},
"upsellAggregatePricing": {
"diff": true,
"new": 123,
"old": 123
},
"upsellFrequency": "<string>",
"upsellState": true
}
}
],
"show_taxes": true
}
],
"selectedQuantities": {},
"summary": {
"credits": [
{
"key": "<string>",
"type": "<string>",
"value": {
"diff": true,
"new": 123,
"old": 123
}
}
],
"subtotal": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"taxes": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"total": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"totalPaymentsPaid": {
"diff": true,
"new": 123,
"old": 123
},
"totalPaymentsPending": {
"diff": true,
"new": 123,
"old": 123
},
"total_without_tax": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
}
},
"taxesCollected": true
}
],
"previous_subscription": {
"id": "<string>"
},
"previous_subscription_id": "<string>",
"processing_date": "2023-11-07T05:31:56Z",
"proposal_link_id": "<string>",
"quote_plans": [
{
"auto_renews": true,
"description": "<string>",
"display_name": "<string>",
"id": "<string>",
"is_recommended": true,
"name": "<string>",
"order": "<string>",
"pricing_config": {
"all_product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"product": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"external_name": "<string>",
"gl_code": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
},
"product_id": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"id": "<string>",
"is_auto_generated": true,
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"term": {
"count": 123
},
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"currency": "<string>",
"discounts": [
{
"name": "<string>",
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"coupon_id": "<string>",
"customer_id": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"onetime_billable_id": "<string>",
"percent": 0.5,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"subscription_id": "<string>"
}
],
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"one_time_billables": [
{
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"id": "<string>",
"name": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"onetime_items": [
{
"aggregate": 123,
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123
}
],
"product_pricing_ids": [
"<string>"
],
"scheduled_changes": [
{
"actual_change_time": "2023-11-07T05:31:56Z",
"all_product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"auto_charges": true,
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"product": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"external_name": "<string>",
"gl_code": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
},
"product_id": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"id": "<string>",
"is_auto_generated": true,
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"term": {
"count": 123
},
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"custom_change_date": "2023-11-07T05:31:56Z",
"discounts": [
{
"name": "<string>",
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"coupon_id": "<string>",
"customer_id": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"onetime_billable_id": "<string>",
"percent": 0.5,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"subscription_id": "<string>"
}
],
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"onetime_items": [
{
"aggregate": 123,
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123
}
],
"payment_method_id": "<string>",
"product_pricing_ids": [
"<string>"
],
"proration_type": "<string>",
"relative_term": {
"count": 123
},
"reset_billing_anchor": true,
"term": {
"count": 123
},
"timing": "<string>",
"trial": true,
"trial_term": {
"count": 123
}
}
]
},
"term": {
"count": 123
},
"trial": true,
"trial_term": {
"count": 123
}
}
],
"require_payment_method": true,
"requires_customer_confirmation": true,
"sales_user": {
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"company_user": {
"access": {
"api_tokens": "<string>",
"approvals": "<string>",
"campaign": "<string>",
"commission_plans": "<string>",
"commission_reports": "<string>",
"companies": "<string>",
"credit_notes": "<string>",
"credits": "<string>",
"customer_portal": "<string>",
"customers": "<string>",
"developers": "<string>",
"disputes": "<string>",
"email_templates": "<string>",
"entitlement": "<string>",
"events": "<string>",
"expired_card": "<string>",
"files": "<string>",
"import": "<string>",
"integration_bank_accounts": "<string>",
"integration_transactions": "<string>",
"integrations": "<string>",
"invoices": "<string>",
"journal_accounts": "<string>",
"journal_entries": "<string>",
"logs": "<string>",
"objects": "<string>",
"one_time": "<string>",
"payments": "<string>",
"pricing": "<string>",
"promotions": "<string>",
"proposal": "<string>",
"reports": "<string>",
"sales_users": "<string>",
"settings": "<string>",
"subscriptions": "<string>",
"team": "<string>",
"webhooks": "<string>"
},
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"image_url": "<string>",
"manager_id": "<string>",
"pending": true,
"role": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"companies": [
{
"access": {
"api_tokens": "<string>",
"approvals": "<string>",
"campaign": "<string>",
"commission_plans": "<string>",
"commission_reports": "<string>",
"companies": "<string>",
"credit_notes": "<string>",
"credits": "<string>",
"customer_portal": "<string>",
"customers": "<string>",
"developers": "<string>",
"disputes": "<string>",
"email_templates": "<string>",
"entitlement": "<string>",
"events": "<string>",
"expired_card": "<string>",
"files": "<string>",
"import": "<string>",
"integration_bank_accounts": "<string>",
"integration_transactions": "<string>",
"integrations": "<string>",
"invoices": "<string>",
"journal_accounts": "<string>",
"journal_entries": "<string>",
"logs": "<string>",
"objects": "<string>",
"one_time": "<string>",
"payments": "<string>",
"pricing": "<string>",
"promotions": "<string>",
"proposal": "<string>",
"reports": "<string>",
"sales_users": "<string>",
"settings": "<string>",
"subscriptions": "<string>",
"team": "<string>",
"webhooks": "<string>"
},
"company_id": "<string>",
"company_name": "<string>",
"id": "<string>",
"image_url": "<string>",
"role": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"id": "<string>",
"is_super_user": true,
"maple_employee_role": "<string>",
"name": "<string>",
"otp_enabled": true,
"updated_at": "2023-11-07T05:31:56Z",
"verified": true
}
},
"company_user_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"display_email": "<string>",
"display_name": "<string>",
"email": "<string>",
"id": "<string>",
"name": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"sales_user_id": "<string>",
"scheduled_changes": [
{
"actual_change_time": "2023-11-07T05:31:56Z",
"all_product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"original_value": "<unknown>",
"overriden": true,
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"original_value": "<unknown>",
"overriden": true,
"value": "<unknown>"
}
],
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing": "<unknown>",
"upsell_product_pricing_id": "<string>"
}
],
"auto_charges": true,
"auto_renews": true,
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"default_term": {
"count": 123
},
"deleted_at": {},
"description": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"is_auto_generated": true,
"key": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"custom_change_date": "2023-11-07T05:31:56Z",
"discounts": [
{
"name": "<string>",
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"coupon_id": "<string>",
"customer_id": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"onetime_billable_id": "<string>",
"percent": 0.5,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"subscription_id": "<string>"
}
],
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"onetime_items": [
{
"aggregate": 123,
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123
}
],
"payment_method_id": "<string>",
"product_pricing_ids": [
"<string>"
],
"relative_term": {
"count": 123
},
"reset_billing_anchor": true,
"term": {
"count": 123
},
"trial": true,
"trial_term": {
"count": 123
}
}
],
"selected_plan_id": "<string>",
"signatories": [
{
"email": "[email protected]",
"name": "<string>",
"declined": true,
"position": 123,
"signature_id": "<string>",
"signature_link": "<string>",
"signed": true,
"signed_date": "2023-11-07T05:31:56Z",
"title": "<string>",
"view_customer_input_timestamps": [
"2023-11-07T05:31:56Z"
],
"view_timestamps": [
"2023-11-07T05:31:56Z"
]
}
],
"signed_date": "2023-11-07T05:31:56Z",
"signed_file_id": "<string>",
"signed_offline": true,
"start_date": "2023-11-07T05:31:56Z",
"start_type": "<string>",
"status": "<string>",
"subscription": {
"id": "<string>"
},
"subscription_id": "<string>",
"tcv": {
"currency": "<string>",
"value_in_cents": 123
},
"template_id": "<string>",
"template_variables": [
"<string>"
],
"term": {
"count": 123
},
"title": "<string>",
"trial": true,
"trial_term": {
"count": 123
},
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"variable_configs": [
{
"default": "<string>",
"is_custom": true,
"is_editable": true,
"is_required": true,
"key": "<string>",
"name": "<string>",
"tag": "<string>",
"type": "<string>",
"validation": "<string>",
"value": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
The idempotency key that will be used to ensure the request is only performed once
Path Parameters
The company ID with the prefix 'cmp_'.
The resource ID
Body
Whether the subscription is automatically charged to the payment method after the contract is signed
Whether this subscription auto renews at the end of the term. This is to be used without end date or renewal date
The billing anchor date for the subscription in RFC-3339 format, defaults to the start date
The custom variables for the contract as key-value pairs
Show child attributes
Show child attributes
The expiration date in RFC-3339 format for the contract
Show child attributes
Show child attributes
Any additional data as key-value pairs that needs to be attached to the subscription after the contract is signed
The company user ID of the user in Measure assigned to manage this contract
The sales user ID assigned to this contract
The signatories for the contract
Show child attributes
Show child attributes
The start date for the contract in RFC-3339 format, if it does not start immediately
The term for the subscription created by the contract
Show child attributes
Show child attributes
The title for the contract
Response
OK
The amount which has value in cents and a currency
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
x >= 0x >= 0Payment instructions attached to each invoice generated for the contract. If non-null, overrides the invoice payment instructions set at the company-wide setting.
The amount which has value in cents and a currency
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The amount which has value in cents and a currency
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The commissionable user if there is one present
Show child attributes
Show child attributes
The ID of the commissionable user if there is one present
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The amount which has value in cents and a currency
Show child attributes
Show child attributes
The term which includes a frequency interval and a count for number of intervals
Show child attributes
Show child attributes
The term which includes a frequency interval and a count for number of intervals
Show child attributes
Show child attributes
Show child attributes
Show child attributes
curl --request PATCH \
--url https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auto_charges": true,
"auto_renews": true,
"billing_anchor_date": "2023-11-07T05:31:56Z",
"custom_variables": {},
"expiration_date": {},
"metadata": {},
"owner_id": "<string>",
"sales_user_id": "<string>",
"signatories": [
{
"email": "[email protected]",
"name": "<string>",
"declined": true,
"position": 123,
"signature_id": "<string>",
"signature_link": "<string>",
"signed": true,
"signed_date": "2023-11-07T05:31:56Z",
"title": "<string>",
"view_customer_input_timestamps": [
"2023-11-07T05:31:56Z"
],
"view_timestamps": [
"2023-11-07T05:31:56Z"
]
}
],
"start_date": "2023-11-07T05:31:56Z",
"title": "<string>"
}
'import requests
url = "https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}"
payload = {
"auto_charges": True,
"auto_renews": True,
"billing_anchor_date": "2023-11-07T05:31:56Z",
"custom_variables": {},
"expiration_date": {},
"metadata": {},
"owner_id": "<string>",
"sales_user_id": "<string>",
"signatories": [
{
"email": "[email protected]",
"name": "<string>",
"declined": True,
"position": 123,
"signature_id": "<string>",
"signature_link": "<string>",
"signed": True,
"signed_date": "2023-11-07T05:31:56Z",
"title": "<string>",
"view_customer_input_timestamps": ["2023-11-07T05:31:56Z"],
"view_timestamps": ["2023-11-07T05:31:56Z"]
}
],
"start_date": "2023-11-07T05:31:56Z",
"title": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
auto_charges: true,
auto_renews: true,
billing_anchor_date: '2023-11-07T05:31:56Z',
custom_variables: {},
expiration_date: {},
metadata: {},
owner_id: '<string>',
sales_user_id: '<string>',
signatories: [
{
email: '[email protected]',
name: '<string>',
declined: true,
position: 123,
signature_id: '<string>',
signature_link: '<string>',
signed: true,
signed_date: '2023-11-07T05:31:56Z',
title: '<string>',
view_customer_input_timestamps: ['2023-11-07T05:31:56Z'],
view_timestamps: ['2023-11-07T05:31:56Z']
}
],
start_date: '2023-11-07T05:31:56Z',
title: '<string>'
})
};
fetch('https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'auto_charges' => true,
'auto_renews' => true,
'billing_anchor_date' => '2023-11-07T05:31:56Z',
'custom_variables' => [
],
'expiration_date' => [
],
'metadata' => [
],
'owner_id' => '<string>',
'sales_user_id' => '<string>',
'signatories' => [
[
'email' => '[email protected]',
'name' => '<string>',
'declined' => true,
'position' => 123,
'signature_id' => '<string>',
'signature_link' => '<string>',
'signed' => true,
'signed_date' => '2023-11-07T05:31:56Z',
'title' => '<string>',
'view_customer_input_timestamps' => [
'2023-11-07T05:31:56Z'
],
'view_timestamps' => [
'2023-11-07T05:31:56Z'
]
]
],
'start_date' => '2023-11-07T05:31:56Z',
'title' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}"
payload := strings.NewReader("{\n \"auto_charges\": true,\n \"auto_renews\": true,\n \"billing_anchor_date\": \"2023-11-07T05:31:56Z\",\n \"custom_variables\": {},\n \"expiration_date\": {},\n \"metadata\": {},\n \"owner_id\": \"<string>\",\n \"sales_user_id\": \"<string>\",\n \"signatories\": [\n {\n \"email\": \"[email protected]\",\n \"name\": \"<string>\",\n \"declined\": true,\n \"position\": 123,\n \"signature_id\": \"<string>\",\n \"signature_link\": \"<string>\",\n \"signed\": true,\n \"signed_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\",\n \"view_customer_input_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ],\n \"view_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ]\n }\n ],\n \"start_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"auto_charges\": true,\n \"auto_renews\": true,\n \"billing_anchor_date\": \"2023-11-07T05:31:56Z\",\n \"custom_variables\": {},\n \"expiration_date\": {},\n \"metadata\": {},\n \"owner_id\": \"<string>\",\n \"sales_user_id\": \"<string>\",\n \"signatories\": [\n {\n \"email\": \"[email protected]\",\n \"name\": \"<string>\",\n \"declined\": true,\n \"position\": 123,\n \"signature_id\": \"<string>\",\n \"signature_link\": \"<string>\",\n \"signed\": true,\n \"signed_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\",\n \"view_customer_input_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ],\n \"view_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ]\n }\n ],\n \"start_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getmeasure.com/api/v1/companies/{company_id}/contracts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"auto_charges\": true,\n \"auto_renews\": true,\n \"billing_anchor_date\": \"2023-11-07T05:31:56Z\",\n \"custom_variables\": {},\n \"expiration_date\": {},\n \"metadata\": {},\n \"owner_id\": \"<string>\",\n \"sales_user_id\": \"<string>\",\n \"signatories\": [\n {\n \"email\": \"[email protected]\",\n \"name\": \"<string>\",\n \"declined\": true,\n \"position\": 123,\n \"signature_id\": \"<string>\",\n \"signature_link\": \"<string>\",\n \"signed\": true,\n \"signed_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\",\n \"view_customer_input_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ],\n \"view_timestamps\": [\n \"2023-11-07T05:31:56Z\"\n ]\n }\n ],\n \"start_date\": \"2023-11-07T05:31:56Z\",\n \"title\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"acv": {
"currency": "<string>",
"value_in_cents": 123
},
"auto_charges": true,
"auto_renews": true,
"billing_anchor_date": "2023-11-07T05:31:56Z",
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"product": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"external_name": "<string>",
"gl_code": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
},
"product_id": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"id": "<string>",
"is_auto_generated": true,
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"term": {
"count": 123
},
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"campaigns": [
{
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"created_at": "2023-11-07T05:31:56Z",
"current_step": 1,
"customer": {
"email": "<string>",
"id": "<string>",
"name": "<string>",
"org_name": "<string>"
},
"id": "<string>",
"invoice": {
"auto_charges": true,
"billed_customer": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"arr": {
"currency": "<string>",
"value_in_cents": 123
},
"billing_emails": [
"<string>"
],
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"customer_integration_metadata": {},
"display_name": "<string>",
"email": "<string>",
"exclude_from_metrics": true,
"id": "<string>",
"identifier": "<string>",
"integration_references": [
{
"integration_icon": "<string>",
"integration_id": "<string>",
"integration_key": "<string>",
"integration_name": "<string>",
"reference_type": "<string>",
"remote_id": "<string>",
"remote_type": "<string>"
}
],
"locale": "<string>",
"managed_externally": true,
"metadata": {},
"mrr": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"status": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"billed_customer_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"customer": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"arr": {
"currency": "<string>",
"value_in_cents": 123
},
"billing_emails": [
"<string>"
],
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"customer_integration_metadata": {},
"display_name": "<string>",
"email": "<string>",
"exclude_from_metrics": true,
"id": "<string>",
"identifier": "<string>",
"integration_references": [
{
"integration_icon": "<string>",
"integration_id": "<string>",
"integration_key": "<string>",
"integration_name": "<string>",
"reference_type": "<string>",
"remote_id": "<string>",
"remote_type": "<string>"
}
],
"locale": "<string>",
"managed_externally": true,
"metadata": {},
"mrr": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"status": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"customer_id": "<string>",
"due": {
"currency": "<string>",
"value_in_cents": 123
},
"due_date": "2023-11-07T05:31:56Z",
"hosted_link": "<string>",
"invoice_date": "2023-11-07T05:31:56Z",
"name": "<string>",
"number": "<string>",
"paid": {
"currency": "<string>",
"value_in_cents": 123
},
"paid_date": "2023-11-07T05:31:56Z",
"pdf_link": "<string>",
"prorated_amount": {
"currency": "<string>",
"value_in_cents": 123
},
"revenue": {
"currency": "<string>",
"value_in_cents": 123
},
"status": "<string>",
"sub_total": {
"currency": "<string>",
"value_in_cents": 123
},
"subscription_id": "<string>",
"total": {
"currency": "<string>",
"value_in_cents": 123
},
"updated_at": "2023-11-07T05:31:56Z",
"uuid": "<string>"
},
"next_action_in": "2023-11-07T05:31:56Z",
"next_action_type": "<string>",
"proposal": "<unknown>",
"status": "<string>",
"steps": [
{
"action_type": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"enqueued_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"notification_log": {
"cc": [
"<string>"
],
"id": "<string>",
"notification_type": "<string>",
"status": "<string>",
"subject": "<string>",
"to": "<string>"
},
"payment_transaction": {
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"provider_type": "<string>",
"status": "<string>",
"total_amount": {
"currency": "<string>",
"value_in_cents": 123
},
"total_amount_default_currency": {
"currency": "<string>",
"value_in_cents": 123
},
"transaction_type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"status": "<string>",
"step_number": 1
}
],
"time_from_reference_data": "2023-11-07T05:31:56Z",
"total_steps": 1,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"change_custom_date": "2023-11-07T05:31:56Z",
"change_proration_type": "<string>",
"change_reset_billing_anchor": true,
"change_timing": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"completed_date": "2023-11-07T05:31:56Z",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"content": "<string>",
"content_template": "<string>",
"contract_attachments": [
{
"attachment_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"file_id": "<string>",
"id": "<string>",
"original_filename": "<string>",
"uploaded_at": "2023-11-07T05:31:56Z"
}
],
"counter_signatories": [
{
"company_user": {
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"image_url": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"email": "<string>",
"id": "<string>",
"name": "<string>",
"verified": true
}
},
"declined": true,
"email": "<string>",
"id": "<string>",
"position": 123,
"signature_id": "<string>",
"signed": true,
"signed_date": "2023-11-07T05:31:56Z"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"custom_variables": {},
"customer": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"billing_emails": [
"<string>"
],
"email": "<string>",
"id": "<string>",
"identifier": "<string>",
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer": "<unknown>",
"parent_customer_id": "<string>",
"phone": "<string>"
},
"customer_id": "<string>",
"description": "<string>",
"discounts": [
{
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"error_status_details": [
{
"error_message": "<string>",
"error_status": "<string>",
"signature_id": "<string>"
}
],
"expiration_date": "2023-11-07T05:31:56Z",
"finalized_date": "2023-11-07T05:31:56Z",
"follow_up": "<string>",
"follow_up_data": {},
"id": "<string>",
"invoice_due_date_from_creation": 1,
"invoice_event_grace_period": 1,
"invoice_payment_instructions": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"one_time_billables": [
{
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"id": "<string>",
"name": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"options": {
"allow_promo_code": true,
"collect_taxes": true,
"completion_action": "<string>",
"confirmation_message": "<string>",
"redirect_url": "<string>",
"requires_customer_address": true,
"requires_customer_confirmation": true,
"requires_customer_phone": true,
"requires_email_verification": true,
"save_card_on_checkout": true
},
"owner": {
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"image_url": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"email": "<string>",
"id": "<string>",
"name": "<string>",
"verified": true
}
},
"owner_id": "<string>",
"parent_billed": true,
"payment_config": {
"account_id": "<string>",
"client_secret": "<string>",
"integration_id": "<string>",
"live_mode": true,
"provider": "<string>",
"razorpay": {
"account_id": "<string>"
},
"stripe": {
"account_id": "<string>"
}
},
"payment_data": {
"helcim": {
"payment_method_id": "<string>"
},
"razor_pay": {
"token_id": "<string>"
},
"stripe": {
"payment_method_id": "<string>"
}
},
"payment_provided_date": "2023-11-07T05:31:56Z",
"po_number": "<string>",
"previous_arr": {
"currency": "<string>",
"value_in_cents": 123
},
"previous_sub_change": [
{
"phases": [
{
"checkout_line_item": [
{
"amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"amount_html": "<string>",
"currency": "<string>",
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_expiration": {
"diff": true,
"new": "2023-11-07T05:31:56Z",
"old": "2023-11-07T05:31:56Z"
},
"discount_html": "<string>",
"discount_line_items": {
"aggregate_price": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"currency": "<string>",
"discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_html": "<string>",
"discount_percent": {
"diff": true,
"new": 123,
"old": 123
},
"discount_type": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"name": "<string>",
"prev_discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"state": "<string>",
"status": "<string>"
},
"discount_name": {
"diff": true,
"new": "<string>",
"old": "<string>"
},
"discount_percent": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"frequencyName": "<string>",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"product_name": "<string>",
"product_name_display": "<string>",
"product_name_html": "<string>",
"product_pricing_external_name": "<string>",
"quantity": {
"diff": true,
"new": 123,
"old": 123
},
"quantity_html": "<string>",
"status": "<string>",
"upsell": {
"totalAnnualSavings": {
"diff": true,
"new": 123,
"old": 123
},
"upsellAggregatePricing": {
"diff": true,
"new": 123,
"old": 123
},
"upsellFrequency": "<string>",
"upsellState": true
}
}
],
"discount_row": [
{
"aggregate_price": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"currency": "<string>",
"discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_html": "<string>",
"discount_percent": {
"diff": true,
"new": 123,
"old": 123
},
"discount_type": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"name": "<string>",
"prev_discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"state": "<string>",
"status": "<string>"
}
],
"minimum_spend": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"minimum_spend_html": "<string>",
"one_time_line_item": [
{
"amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"amount_html": "<string>",
"currency": "<string>",
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_expiration": {
"diff": true,
"new": "2023-11-07T05:31:56Z",
"old": "2023-11-07T05:31:56Z"
},
"discount_html": "<string>",
"discount_line_items": {
"aggregate_price": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"currency": "<string>",
"discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"discount_amount": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"discount_html": "<string>",
"discount_percent": {
"diff": true,
"new": 123,
"old": 123
},
"discount_type": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"name": "<string>",
"prev_discount": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"company_id": "<string>",
"coupon_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"deleted_at": {},
"expiration_date": "2023-11-07T05:31:56Z",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"name": "<string>",
"onetime_billable": {
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"deleted_at": {},
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"name": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"onetime_billable_id": "<string>",
"percent": 123,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"state": "<string>",
"subscription_id": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"state": "<string>",
"status": "<string>"
},
"discount_name": {
"diff": true,
"new": "<string>",
"old": "<string>"
},
"discount_percent": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"frequencyName": "<string>",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_count": 123,
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricings": [
{
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
}
],
"metrics": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_ref": "<string>",
"imported_from": "<string>",
"is_billable": true,
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": {
"comparator": {
"items": "<array>",
"left_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"right_item": {
"comparator": "<unknown>",
"item_type": "<string>",
"property": "<string>",
"value": "<string>"
},
"type": "<string>"
}
}
},
"name": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"name": "<string>",
"standard": true,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"carry_over": true,
"charge_type": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"deleted_at": {},
"description": "<string>",
"display_type": "<string>",
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"product_name": "<string>",
"product_name_display": "<string>",
"product_name_html": "<string>",
"product_pricing_external_name": "<string>",
"quantity": {
"diff": true,
"new": 123,
"old": 123
},
"quantity_html": "<string>",
"status": "<string>",
"upsell": {
"totalAnnualSavings": {
"diff": true,
"new": 123,
"old": 123
},
"upsellAggregatePricing": {
"diff": true,
"new": 123,
"old": 123
},
"upsellFrequency": "<string>",
"upsellState": true
}
}
],
"show_taxes": true
}
],
"selectedQuantities": {},
"summary": {
"credits": [
{
"key": "<string>",
"type": "<string>",
"value": {
"diff": true,
"new": 123,
"old": 123
}
}
],
"subtotal": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"taxes": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"total": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
},
"totalPaymentsPaid": {
"diff": true,
"new": 123,
"old": 123
},
"totalPaymentsPending": {
"diff": true,
"new": 123,
"old": 123
},
"total_without_tax": {
"currency": "<string>",
"diff": true,
"new": 123,
"old": 123
}
},
"taxesCollected": true
}
],
"previous_subscription": {
"id": "<string>"
},
"previous_subscription_id": "<string>",
"processing_date": "2023-11-07T05:31:56Z",
"proposal_link_id": "<string>",
"quote_plans": [
{
"auto_renews": true,
"description": "<string>",
"display_name": "<string>",
"id": "<string>",
"is_recommended": true,
"name": "<string>",
"order": "<string>",
"pricing_config": {
"all_product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"product": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"external_name": "<string>",
"gl_code": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
},
"product_id": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"id": "<string>",
"is_auto_generated": true,
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"term": {
"count": 123
},
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"currency": "<string>",
"discounts": [
{
"name": "<string>",
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"coupon_id": "<string>",
"customer_id": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"onetime_billable_id": "<string>",
"percent": 0.5,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"subscription_id": "<string>"
}
],
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"one_time_billables": [
{
"aggregate": 123,
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"customer_id": "<string>",
"id": "<string>",
"name": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"onetime_items": [
{
"aggregate": 123,
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123
}
],
"product_pricing_ids": [
"<string>"
],
"scheduled_changes": [
{
"actual_change_time": "2023-11-07T05:31:56Z",
"all_product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"auto_charges": true,
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"product": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"external_name": "<string>",
"gl_code": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
},
"product_id": "<string>",
"product_pricing": {
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"product": "<unknown>",
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"item_pricing": {
"base_price": {
"currency": "<string>",
"value_in_cents": 123
},
"base_units": 123,
"charge_type": "<string>",
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"credit_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"item_id": "<string>",
"scoped_product_ids": [
"<string>"
],
"units": 123
},
"custom_price": {
"max_price_per_unit": 123,
"min_price_per_unit": 123,
"preset_price_per_unit": 123,
"price_per_unit": 123
},
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"fixed_price": {
"price_per_unit": 123
},
"frequency": "<string>",
"gradient_price": [
{
"end": 1,
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"start": 1
}
],
"id": "<string>",
"item": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"display_type": "<string>",
"editable": true,
"external_name": "<string>",
"id": "<string>",
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"item_id": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"minimum_spend_schedule": {
"allow_pulling_forward": true,
"amount_per_period": [
"<string>"
],
"minimum_spend_schedule_type": "<string>"
},
"name": "<string>",
"num_subs": 1,
"proration_type": "<string>",
"recognition_schedule": {
"amount_per_period": [
"<string>"
]
},
"scheduled_price": {
"price_per_unit_per_period": [
"<string>"
]
},
"state": "<string>",
"step_price": {
"price_per_step": 123,
"step_size": 1
},
"term_count": 123,
"true_up_frequency": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"volume_price": [
{
"flat_price": 123,
"is_custom_tier": true,
"price_per_unit": 123,
"total_units_end": 1,
"total_units_start": 1
}
]
},
"item_pricing_id": "<string>",
"metric": {
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"item_id": "<string>",
"metering_rule": {
"aggregator": "<string>",
"group_keys": [
"<string>"
],
"property": "<string>",
"rule": "<string>"
},
"name": "<string>",
"standard": true,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"metric_id": "<string>",
"product": "<unknown>",
"product_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing_id": "<string>"
},
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"description": "<string>",
"id": "<string>",
"is_auto_generated": true,
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"term": {
"count": 123
},
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"custom_change_date": "2023-11-07T05:31:56Z",
"discounts": [
{
"name": "<string>",
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"coupon_id": "<string>",
"customer_id": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"onetime_billable_id": "<string>",
"percent": 0.5,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"subscription_id": "<string>"
}
],
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"onetime_items": [
{
"aggregate": 123,
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123
}
],
"payment_method_id": "<string>",
"product_pricing_ids": [
"<string>"
],
"proration_type": "<string>",
"relative_term": {
"count": 123
},
"reset_billing_anchor": true,
"term": {
"count": 123
},
"timing": "<string>",
"trial": true,
"trial_term": {
"count": 123
}
}
]
},
"term": {
"count": 123
},
"trial": true,
"trial_term": {
"count": 123
}
}
],
"require_payment_method": true,
"requires_customer_confirmation": true,
"sales_user": {
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"company_id": "<string>",
"company_user": {
"access": {
"api_tokens": "<string>",
"approvals": "<string>",
"campaign": "<string>",
"commission_plans": "<string>",
"commission_reports": "<string>",
"companies": "<string>",
"credit_notes": "<string>",
"credits": "<string>",
"customer_portal": "<string>",
"customers": "<string>",
"developers": "<string>",
"disputes": "<string>",
"email_templates": "<string>",
"entitlement": "<string>",
"events": "<string>",
"expired_card": "<string>",
"files": "<string>",
"import": "<string>",
"integration_bank_accounts": "<string>",
"integration_transactions": "<string>",
"integrations": "<string>",
"invoices": "<string>",
"journal_accounts": "<string>",
"journal_entries": "<string>",
"logs": "<string>",
"objects": "<string>",
"one_time": "<string>",
"payments": "<string>",
"pricing": "<string>",
"promotions": "<string>",
"proposal": "<string>",
"reports": "<string>",
"sales_users": "<string>",
"settings": "<string>",
"subscriptions": "<string>",
"team": "<string>",
"webhooks": "<string>"
},
"company": {
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"computed_entitlements": {},
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"demo": true,
"email": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"id": "<string>",
"is_dev": true,
"legal_name": "<string>",
"name": "<string>",
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"phone": "<string>",
"preferred_currency": "<string>",
"preferred_timezone": "<string>",
"slug": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"created_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"image_url": "<string>",
"manager_id": "<string>",
"pending": true,
"role": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"companies": [
{
"access": {
"api_tokens": "<string>",
"approvals": "<string>",
"campaign": "<string>",
"commission_plans": "<string>",
"commission_reports": "<string>",
"companies": "<string>",
"credit_notes": "<string>",
"credits": "<string>",
"customer_portal": "<string>",
"customers": "<string>",
"developers": "<string>",
"disputes": "<string>",
"email_templates": "<string>",
"entitlement": "<string>",
"events": "<string>",
"expired_card": "<string>",
"files": "<string>",
"import": "<string>",
"integration_bank_accounts": "<string>",
"integration_transactions": "<string>",
"integrations": "<string>",
"invoices": "<string>",
"journal_accounts": "<string>",
"journal_entries": "<string>",
"logs": "<string>",
"objects": "<string>",
"one_time": "<string>",
"payments": "<string>",
"pricing": "<string>",
"promotions": "<string>",
"proposal": "<string>",
"reports": "<string>",
"sales_users": "<string>",
"settings": "<string>",
"subscriptions": "<string>",
"team": "<string>",
"webhooks": "<string>"
},
"company_id": "<string>",
"company_name": "<string>",
"id": "<string>",
"image_url": "<string>",
"role": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"id": "<string>",
"is_super_user": true,
"maple_employee_role": "<string>",
"name": "<string>",
"otp_enabled": true,
"updated_at": "2023-11-07T05:31:56Z",
"verified": true
}
},
"company_user_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"display_email": "<string>",
"display_name": "<string>",
"email": "<string>",
"id": "<string>",
"name": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"sales_user_id": "<string>",
"scheduled_changes": [
{
"actual_change_time": "2023-11-07T05:31:56Z",
"all_product_pricings": [
{
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"original_value": "<unknown>",
"overriden": true,
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"deleted_at": {},
"description": "<string>",
"external_name": "<string>",
"id": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"num_subs": 1,
"override_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"original_value": "<unknown>",
"overriden": true,
"value": "<unknown>"
}
],
"product_id": "<string>",
"product_metric_pricings": [
{
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"item_id": "<string>",
"item_pricing_id": "<string>",
"metric_id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"state": "<string>",
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"upsell_product_pricing": "<unknown>",
"upsell_product_pricing_id": "<string>"
}
],
"auto_charges": true,
"auto_renews": true,
"bundle_pricing": {
"bundle_product_pricings": [
{
"bundle_pricing_id": "<string>",
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": {},
"id": "<string>",
"product_id": "<string>",
"product_pricing_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"company_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"default_term": {
"count": 123
},
"deleted_at": {},
"description": "<string>",
"id": "<string>",
"image_url": "<string>",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"is_auto_generated": true,
"key": "<string>",
"metadata": {},
"name": "<string>",
"num_subs": 1,
"state": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
},
"bundle_pricing_id": "<string>",
"config_items": [
{
"hide_at_checkout": true,
"minimum_units": 1,
"num_licenses": 1,
"product_metric_pricing_id": "<string>",
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123,
"upsell_product_metric_pricing_id": "<string>"
}
],
"custom_change_date": "2023-11-07T05:31:56Z",
"discounts": [
{
"name": "<string>",
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"cap": {
"currency": "<string>",
"value_in_cents": 123
},
"coupon_id": "<string>",
"customer_id": "<string>",
"expiration_date": "2023-11-07T05:31:56Z",
"import_created_at_ref": "2023-11-07T05:31:56Z",
"import_ref": "<string>",
"imported_from": "<string>",
"item_pricing_id": "<string>",
"onetime_billable_id": "<string>",
"percent": 0.5,
"product_id": "<string>",
"product_pricing_id": "<string>",
"proposal_id": "<string>",
"subscription_id": "<string>"
}
],
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"onetime_items": [
{
"aggregate": 123,
"custom_price": {
"amount": {
"currency": "<string>",
"value_in_cents": 123
},
"product_id": "<string>",
"description": "<string>"
},
"product_pricing_id": "<string>",
"quantity_config": {
"allow_custom_quantity": true,
"max_quantity": 123,
"min_quantity": 123
},
"sort_order": 123
}
],
"payment_method_id": "<string>",
"product_pricing_ids": [
"<string>"
],
"relative_term": {
"count": 123
},
"reset_billing_anchor": true,
"term": {
"count": 123
},
"trial": true,
"trial_term": {
"count": 123
}
}
],
"selected_plan_id": "<string>",
"signatories": [
{
"email": "[email protected]",
"name": "<string>",
"declined": true,
"position": 123,
"signature_id": "<string>",
"signature_link": "<string>",
"signed": true,
"signed_date": "2023-11-07T05:31:56Z",
"title": "<string>",
"view_customer_input_timestamps": [
"2023-11-07T05:31:56Z"
],
"view_timestamps": [
"2023-11-07T05:31:56Z"
]
}
],
"signed_date": "2023-11-07T05:31:56Z",
"signed_file_id": "<string>",
"signed_offline": true,
"start_date": "2023-11-07T05:31:56Z",
"start_type": "<string>",
"status": "<string>",
"subscription": {
"id": "<string>"
},
"subscription_id": "<string>",
"tcv": {
"currency": "<string>",
"value_in_cents": 123
},
"template_id": "<string>",
"template_variables": [
"<string>"
],
"term": {
"count": 123
},
"title": "<string>",
"trial": true,
"trial_term": {
"count": 123
},
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"variable_configs": [
{
"default": "<string>",
"is_custom": true,
"is_editable": true,
"is_required": true,
"key": "<string>",
"name": "<string>",
"tag": "<string>",
"type": "<string>",
"validation": "<string>",
"value": "<string>"
}
]
}
