GET
/
ai
/
v1
/
board
/
{board_id}
/
grades
List Grades for Board
curl --request GET \
  --url https://api-staging.crazygoldfish.com/ai/v1/board/{board_id}/grades \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "657d1bf2-e5dd-46a9-9bf6-eebbe88fe958",
    "name": "Grade 12"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

board_id
string
required

Unique identifier of the board.

Response

200
application/json

A list of grades for the specified board.

The response is of type object[].