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

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

contract_id
integer
required
id
integer
required

Response

200 - application/json
id
integer
required
is_deleted
boolean
default:false
required
deleted_at
string<date-time> | null
required
lines
object[]
required
bundle_name
string
required
Maximum length: 250
start_date
string<date>
required
end_date
string<date>
required
created_at
string<date-time>
required
last_modified_at
string<date-time>
required
customer
integer
required
contract
integer
required
bundle_description
string | null
Maximum length: 250
use_daily_accounting
boolean
use_catchup
boolean
catchup_date
string<date> | null
I