Skip to main content
PATCH
/
companies
/
{company_id}
/
pricing
/
{id}
Update Product Pricing
curl --request PATCH \
  --url https://api.getmeasure.com/api/v1/companies/{company_id}/pricing/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "entitlements": [
    {
      "entitlement_id": "<string>",
      "id": "<string>",
      "key": "<string>",
      "value": "<unknown>"
    }
  ],
  "external_name": "<string>",
  "metadata": {},
  "minimum_spend": {
    "currency": "<string>",
    "value_in_cents": 123
  },
  "name": "<string>",
  "state": "<string>",
  "tags": [
    "<string>"
  ],
  "upsell_product_pricing_id": "<string>"
}
'
import requests

url = "https://api.getmeasure.com/api/v1/companies/{company_id}/pricing/{id}"

payload = {
"description": "<string>",
"entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"key": "<string>",
"value": "<unknown>"
}
],
"external_name": "<string>",
"metadata": {},
"minimum_spend": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"state": "<string>",
"tags": ["<string>"],
"upsell_product_pricing_id": "<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({
description: '<string>',
entitlements: [
{
entitlement_id: '<string>',
id: '<string>',
key: '<string>',
value: '<unknown>'
}
],
external_name: '<string>',
metadata: {},
minimum_spend: {currency: '<string>', value_in_cents: 123},
name: '<string>',
state: '<string>',
tags: ['<string>'],
upsell_product_pricing_id: '<string>'
})
};

fetch('https://api.getmeasure.com/api/v1/companies/{company_id}/pricing/{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}/pricing/{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([
'description' => '<string>',
'entitlements' => [
[
'entitlement_id' => '<string>',
'id' => '<string>',
'key' => '<string>',
'value' => '<unknown>'
]
],
'external_name' => '<string>',
'metadata' => [

],
'minimum_spend' => [
'currency' => '<string>',
'value_in_cents' => 123
],
'name' => '<string>',
'state' => '<string>',
'tags' => [
'<string>'
],
'upsell_product_pricing_id' => '<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}/pricing/{id}"

payload := strings.NewReader("{\n \"description\": \"<string>\",\n \"entitlements\": [\n {\n \"entitlement_id\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n ],\n \"external_name\": \"<string>\",\n \"metadata\": {},\n \"minimum_spend\": {\n \"currency\": \"<string>\",\n \"value_in_cents\": 123\n },\n \"name\": \"<string>\",\n \"state\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"upsell_product_pricing_id\": \"<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}/pricing/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"description\": \"<string>\",\n \"entitlements\": [\n {\n \"entitlement_id\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n ],\n \"external_name\": \"<string>\",\n \"metadata\": {},\n \"minimum_spend\": {\n \"currency\": \"<string>\",\n \"value_in_cents\": 123\n },\n \"name\": \"<string>\",\n \"state\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"upsell_product_pricing_id\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.getmeasure.com/api/v1/companies/{company_id}/pricing/{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 \"description\": \"<string>\",\n \"entitlements\": [\n {\n \"entitlement_id\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n ],\n \"external_name\": \"<string>\",\n \"metadata\": {},\n \"minimum_spend\": {\n \"currency\": \"<string>\",\n \"value_in_cents\": 123\n },\n \"name\": \"<string>\",\n \"state\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"upsell_product_pricing_id\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "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>",
  "metadata": {},
  "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_id": "<string>",
  "state": "<string>",
  "tags": [
    "<string>"
  ],
  "type": "<string>",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Headers

Idempotency-Key
string

The idempotency key that will be used to ensure the request is only performed once

Path Parameters

company_id
string
required

The company ID with the prefix 'cmp_'.

id
string
required

The resource ID

Body

application/json
description
null | string

The internal description for the product pricing

entitlements
null | object[]

The entitlements that enable features for the product pricing

external_name
null | string

The externally visible name for the product pricing

metadata
object

Any additional data as key-value pairs that need to be attached to the product pricing

minimum_spend
object

The minimum spend across the entire term of the product pricing

name
null | string

The name of the product pricing

state
null | string

The state of the product pricing whether ACTIVE or ARCHIVED

tags
null | string[]

Any string tags associated with this product pricing

upsell_product_pricing_id
string | null

The upsell product pricing ID

Response

200 - application/json

OK

company_id
string

The company ID for the product pricing

computed_entitlements
object[] | null

The final computed features for the product pricing

created_at
string<date-time>

The date the product pricing was created

currency
string

The currency for the product pricing

description
string

The description for the product pricing

external_name
string

The externally exposed name for the product pricing used on invoices

id
string

The ID of the product pricing in Measure

metadata
object

Any additional data as key-value pairs attached to the product pricing

name
string

The name of the product pricing

num_subs
integer

The number of subscriptions in the company with the product pricing

Required range: x >= 0
override_entitlements
object[] | null

The overridden features for the product pricing

product_id
string

The product ID that the product pricing is attached to

state
string

The state of the product pricing such as ACTIVE or ARCHIVED

tags
string[] | null

Any tags on the product pricing

type
string

The type of product pricing such as recurring or one-time

updated_at
string<date-time>

The date the product pricing was last updated