Skip to content

Assignment-Event-Group explained

OpenAPI Spec

GET
/v1/assignment-event-groups/spec

Get OpenAPI 3.1.0 spec for AssignmentEventGroup API

Responses

The spec itself as json
application/json
JSON
{
}

Playground

Samples

cURL
JavaScript
PHP
Python

List AssignmentEventGroups

GET
/v1/assignment-event-groups

List AssignmentEventGroups

Authorizations

apiKey
TypeHTTP (bearer)

Parameters

Query Parameters

page
Typenumber
minimum0
default0
size
Typenumber
minimum1
maximum20
default10
typeId
assignmentId
externalId
createdAt
updatedAt

Responses

List response
application/json
JSON
{
"page": 0,
"pages": 0,
"size": 10,
"items": [
{
"id": 0,
"note": "string",
"order": 0,
"typeId": 0,
"assignmentId": 0,
"externalId": "string",
"createdAt": "string",
"updatedAt": "string"
}
]
}

Playground

Server
Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python

Create a new AssignmentEventGroup

POST
/v1/assignment-event-groups

Create a new AssignmentEventGroup

Authorizations

apiKey
TypeHTTP (bearer)

Request Body

application/json
JSON
{
"note": null,
"order": 1,
"typeId": 0,
"assignmentId": 0,
"externalId": null
}

Responses

AssignmentEventGroup found
application/json
JSON
{
"id": 0,
"note": "string",
"order": 0,
"typeId": 0,
"assignmentId": 0,
"externalId": "string",
"createdAt": "string",
"updatedAt": "string"
}

Playground

Server
Authorization
Body

Samples

cURL
JavaScript
PHP
Python

Get an AssignmentEventGroup

GET
/v1/assignment-event-groups/{assignmentEventGroupId}

Get an AssignmentEventGroup by ID

Authorizations

apiKey
TypeHTTP (bearer)

Parameters

Path Parameters

assignmentEventGroupId*
Typeinteger
Required
formatint32

Responses

AssignmentEventGroup found
application/json
JSON
{
"id": 0,
"note": "string",
"order": 0,
"typeId": 0,
"assignmentId": 0,
"externalId": "string",
"createdAt": "string",
"updatedAt": "string"
}

Playground

Server
Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python

Delete an AssignmentEventGroup

DELETE
/v1/assignment-event-groups/{assignmentEventGroupId}

Delete an AssignmentEventGroup by ID

Authorizations

apiKey
TypeHTTP (bearer)

Parameters

Path Parameters

assignmentEventGroupId*
Typeinteger
Required
formatint32

Responses

Successfully removed

Playground

Server
Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python

Update an AssignmentEventGroup

PATCH
/v1/assignment-event-groups/{assignmentEventGroupId}

Update an AssignmentEventGroup by ID

Authorizations

apiKey
TypeHTTP (bearer)

Parameters

Path Parameters

assignmentEventGroupId*
Typeinteger
Required
formatint32

Request Body

application/json
JSON
{
"note": "string",
"order": 0,
"typeId": 0,
"assignmentId": 0,
"externalId": "string"
}

Responses

AssignmentEventGroup found
application/json
JSON
{
"id": 0,
"note": "string",
"order": 0,
"typeId": 0,
"assignmentId": 0,
"externalId": "string",
"createdAt": "string",
"updatedAt": "string"
}

Playground

Server
Authorization
Variables
Key
Value
Body

Samples

cURL
JavaScript
PHP
Python