Framework

This document describes the API for reading Frameworks.

List Frameworks

Returns a list of Frameworks.

Search parameters

Filter Description
created_at The date when this Framework was created
id The ID of the Framework
title The title of the Framework
updated_at The date the Framework was last updated
Securityheader_authorization
Request
query Parameters
include
boolean

Set to true along with relationships to return the entire relationship data in the included key within the response.

page
integer

Used for pagination of response data (default: page 1). Specifies the offset of the next block of data to receive.

per_page
integer

Used for pagination of response data (default: 1000 items per response). Specifies the number of results for a given page.

q
string

Search and filter the Framework data using Lucene syntax.

relationships
boolean

Set to true to return the associated relationships data within the response. (default: false)

Responses
400

Bad Request

401

Unauthorized

403

Forbidden

default
get/frameworks
Request samples
Response samples
application/json
[
  • {
    }
]

Get a Framework

Returns a Framework by ID

Securityheader_authorization
Request
path Parameters
id
required
string

Scope response to id

Responses
400

Bad Request

401

Unauthorized

403

Forbidden

404

Resource not found

default
get/frameworks/{id}
Request samples
Response samples
application/json
{
  • "data": {
    },
  • "includes": { }
}