Skip to main content
GET
/
question-categories
Get Question Categories
curl --request GET \
  --url https://api-dev.monyfix.tech/question-categories \
  --header 'Authorization: Bearer <token>'
[
{
"id": 123,
"name": "<string>",
"picture": "<string>",
"themes": [
{
"id": 123,
"name": "<string>",
"picture": "<string>",
"emoji": "<string>"
}
]
}
]

Authorizations

Authorization
string
header
required

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

Response

Successful Response

id
integer
required
name
string
required
picture
string | null
themes
QuestionCategoryThemeGetResponse · object[] | null