v1
latestOpenAPI 3.0.32026-07-12254440.6 KBPrice
patchPrice
Partially update a specific price entity's properties by a given id and a given payload
patch/v1/price/{priceId}
Path parameters
priceIdstring uuid required
Example:123e4567-e89b-12d3-a456-426614174000
The price id
Request body
Example request
{
"unit_amount_currency": "EUR",
"tax": {
"$relation": [
{
"entity_id": "123e4567-e89b-12d3-a456-426614174000"
}
]
},
"_files": {
"$relation": [
{
"entity_id": "123e4567-e89b-12d3-a456-426614174000"
}
]
},
"_manifest": [
"123e4567-e89b-12d3-a456-426614174000"
],
"__additional": {}
}Response
Price entity with id
Example response
{
"_id": "123e4567-e89b-12d3-a456-426614174000",
"_files": {
"$relation": [
{
"entity_id": "123e4567-e89b-12d3-a456-426614174000"
}
]
},
"_owners": [
{
"org_id": "123",
"user_id": "123"
}
],
"_acl": {
"view": [
"org:456"
],
"edit": [
"org:456"
],
"delete": [
"org:456"
]
},
"unit_amount_currency": "EUR",
"tax": {
"$relation": [
{
"entity_id": "123e4567-e89b-12d3-a456-426614174000"
}
]
},
"_manifest": [
"123e4567-e89b-12d3-a456-426614174000"
],
"__additional": {}
}