GET
/
metadata
/
v1
/
board
/
{board_id}
/
grades
List Grades for Board
curl --request GET \
  --url https://api-staging.crazygoldfish.com/metadata/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

A list of grades for the specified board.

id
string

Unique identifier for the grade.

name
string

Name of the grade.