Skip to content

AssignmentType


OpenAPI Spec

GET
/v1/assignment-types/spec

Get OpenAPI 3.1.0 spec for AssignmentType API

Responses

Returns OpenAPI 3.1.0 spec for AssignmentType API

application/json
JSON
{
}

Playground

Samples

cURL
JavaScript
PHP
Python

List AssignmentTypes

GET
/v1/assignment-types

List AssignmentTypes

Authorizations

apiKey
TypeHTTP (bearer)

Parameters

Query Parameters

page
Typenumber
Minimum0
Default0
size
Typenumber
Minimum1
Maximum20
Default10
deactivatedAt
createdAt
updatedAt

Responses

List response

application/json
JSON
{
"page": 0,
"pages": 0,
"size": 10,
"items": [
{
"id": 0,
"name": "string",
"color": "string",
"order": 0,
"deactivatedAt": "string",
"createdAt": "string",
"updatedAt": "string"
}
]
}

Playground

Server
Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python

Get an AssignmentType

GET
/v1/assignment-types/{assignmentTypeId}

Get an AssignmentType by ID

Authorizations

apiKey
TypeHTTP (bearer)

Parameters

Path Parameters

assignmentTypeId*
Typeinteger
Required
Format"int32"

Responses

AssignmentType found

application/json
JSON
{
"id": 0,
"name": "string",
"color": "string",
"order": 0,
"deactivatedAt": "string",
"createdAt": "string",
"updatedAt": "string"
}

Playground

Server
Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python