Bill Summary

The endpoint for summaries of Bills.

Retrieve multiple Bill Summaries based on search critera passed as GET Arguments

get/api/newbillsummary/

The endpoint for summaries of Bills.

Securityapi_key and user_name
Request
query Parameters
bill_id
integer <int64>

The newbill with which this billsummary is associated.

NOTE: Parameter accepts additional qualifiers appended to the end:
bill__in - The value for the record is in the provided array parameter (comma-separated values).

limit
integer <int64>
Default: 20

The number of records to return (for pagination).

offset
integer <int64>
Default: 0

The number of records to offset the start of the data being returned (for pagination).

Responses
200

NewBillSummary retrieved successfully

400

improperly configured request

401

authorization failure

500

internal server error

Response samples
application/json
{
  • "_extra": { },
  • "bill": "/api/newbill/1/",
  • "content": "string",
  • "id": 0,
  • "resource_uri": "string"
}

Retrieve information on a single Bill Summary

get/api/newbillsummary/{id}/

The endpoint for summaries of Bills.

Securityapi_key and user_name
Request
path Parameters
id
required
integer <int64>

The Quorum primary key for this record; guaranteed to be persistent and unique across all objects at this endpoint.

Responses
200

NewBillSummary retrieved successfully

400

improperly configured request

401

authorization failure

500

internal server error

Response samples
application/json
{
  • "_extra": { },
  • "bill": "/api/newbill/1/",
  • "content": "string",
  • "id": 0,
  • "resource_uri": "string"
}