Skip to main content
PUT
/
v1
/
plans
/
{plan_id}
Update a plan
curl --request PUT \
  --url https://api.monigo.co/v1/plans/{plan_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "billing_period": "<string>",
  "currency": "<string>",
  "description": "<string>",
  "name": "<string>",
  "plan_type": "<string>",
  "prices": "<array>"
}
'
{}

Authorizations

Authorization
string
header
required

API key with Bearer prefix (for programmatic/server-to-server access), format: Bearer {api_key}

Path Parameters

plan_id
string
required

Plan ID

Body

application/json

Plan update fields

billing_period
string
currency
string
description
string
name
string
plan_type
string
prices
array

Response

OK

The response is of type object.