Skip to main content
GET
/
rr
/
api
/
v1
/
contracts
/
{contract_id}
/
subscriptions
List Contract Subscriptions
curl --request GET \
  --url https://api.meetcampfire.com/rr/api/v1/contracts/{contract_id}/subscriptions \
  --header 'Authorization: <api-key>'
[
  {
    "id": 123,
    "is_deleted": false,
    "deleted_at": "2023-11-07T05:31:56Z",
    "lines": "<string>",
    "product_name": "<string>",
    "total_value": 0,
    "last_modified_at": "2023-11-07T05:31:56Z",
    "is_contract_amendment": true,
    "start_date": "2023-12-25",
    "end_date": "2023-12-25",
    "mrr": 0,
    "notes": "<string>",
    "use_daily_accounting": true,
    "use_catchup": true,
    "catchup_date": "2023-12-25",
    "created_at": "2023-11-07T05:31:56Z",
    "customer": 123,
    "contract": 123,
    "product": 123,
    "modified_subscription": 123
  }
]

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

contract_id
integer
required

Query Parameters

include_deleted
boolean
default:false

When set to 'true', returns ONLY deleted records instead of active records. Deleted records contain minimal data: 'id', 'is_deleted=true', 'deleted_at' timestamp, and 'last_modified_at'. When 'false' or omitted, returns ONLY active records. This provides clean separation between active and deleted data.

last_modified_at__gte
string

Filter for records modified on or after this timestamp. Format: ISO 8601 (e.g., '2024-01-01T00:00:00Z' or '2024-01-01'). Works with both active records and deleted records (filters by deletion time for deleted records).

last_modified_at__lte
string

Filter for records modified on or before this timestamp. Format: ISO 8601 (e.g., '2024-12-31T23:59:59Z' or '2024-12-31'). Works with both active records and deleted records (filters by deletion time for deleted records).

Response

200 - 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
total_value
number
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 | null
Required range: -1000000000000000000 < x < 1000000000000000000
notes
string | null
use_daily_accounting
boolean
use_catchup
boolean
catchup_date
string<date> | null
product
integer | null
modified_subscription
integer | null
I