Skip to main content
POST
/
rr
/
api
/
v1
/
contracts
/
{contract_id}
/
subscriptions
Create Contract Subscription
curl --request POST \
  --url https://api.meetcampfire.com/rr/api/v1/contracts/{contract_id}/subscriptions \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contract": 123,
  "is_contract_amendment": true,
  "start_date": "2023-12-25",
  "end_date": "2023-12-25",
  "mrr": 0,
  "quantity": 0,
  "rate": 0,
  "notes": "<string>",
  "use_daily_accounting": true,
  "use_catchup": true,
  "catchup_date": "2023-12-25",
  "invoice_calculation": "FIXED_RATE",
  "product": 123,
  "modified_subscription": 123
}
'
{
  "id": 123,
  "is_deleted": false,
  "deleted_at": "2023-11-07T05:31:56Z",
  "lines": "<string>",
  "product_name": "<string>",
  "product_bundle": "<string>",
  "product_bundle_name": "<string>",
  "contract_product_bundle": {
    "id": 123,
    "source_bundle_name": "<string>",
    "total_amount": 0,
    "lines": [
      {
        "id": 123,
        "product": 123,
        "product_name": "<string>",
        "amount": 0,
        "percentage": "<string>",
        "original_percentage": 0
      }
    ],
    "source_bundle": 123,
    "currency": "<string>"
  },
  "total_value": 0,
  "last_modified_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "customer": 123,
  "contract": 123,
  "is_contract_amendment": true,
  "start_date": "2023-12-25",
  "end_date": "2023-12-25",
  "mrr": 0,
  "quantity": 0,
  "rate": 0,
  "notes": "<string>",
  "use_daily_accounting": true,
  "use_catchup": true,
  "catchup_date": "2023-12-25",
  "invoice_calculation": "FIXED_RATE",
  "product": 123,
  "modified_subscription": 123
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

contract_id
integer
required

Body

contract
integer
required
is_contract_amendment
boolean
start_date
string<date> | null
end_date
string<date> | null
mrr
number<double> | null
Required range: -1000000000000000000 < x < 1000000000000000000
quantity
number<double> | null
Required range: -100000000000000 < x < 100000000000000
rate
number<double> | null
Required range: -100000000000000 < x < 100000000000000
notes
string | null
use_daily_accounting
boolean
use_catchup
boolean
catchup_date
string<date> | null
invoice_calculation
enum<string>

Fixed Rate: rate stays constant, quantity calculated. Fixed Quantity: quantity stays constant (e.g., seats), rate calculated.

  • FIXED_RATE - Fixed Rate
  • FIXED_QUANTITY - Fixed Quantity
Available options:
FIXED_RATE,
FIXED_QUANTITY
product
integer | null
modified_subscription
integer | null

Response

201 - application/json
id
integer
required
is_deleted
boolean
default:false
required
deleted_at
string<date-time> | null
required
lines
string
required
product_name
string
required
product_bundle
string
required
product_bundle_name
string
required
contract_product_bundle
object
required

Read-only serializer for ContractProductBundle in milestone responses.

total_value
number<double>
required
Required range: -100000000 < x < 100000000
last_modified_at
string<date-time>
required
created_at
string<date-time>
required
customer
integer
required
contract
integer
required
is_contract_amendment
boolean
start_date
string<date> | null
end_date
string<date> | null
mrr
number<double> | null
Required range: -1000000000000000000 < x < 1000000000000000000
quantity
number<double> | null
Required range: -100000000000000 < x < 100000000000000
rate
number<double> | null
Required range: -100000000000000 < x < 100000000000000
notes
string | null
use_daily_accounting
boolean
use_catchup
boolean
catchup_date
string<date> | null
invoice_calculation
enum<string>

Fixed Rate: rate stays constant, quantity calculated. Fixed Quantity: quantity stays constant (e.g., seats), rate calculated.

  • FIXED_RATE - Fixed Rate
  • FIXED_QUANTITY - Fixed Quantity
Available options:
FIXED_RATE,
FIXED_QUANTITY
product
integer | null
modified_subscription
integer | null