Create Question Category

create question category

post
/v1/form/question/category/create

create question category

Authorizations
AuthorizationstringRequired
Body
namestringOptional

name of category

scoreintegerOptional

score of category (used for score weight of question)

Responses
200

Response

application/json
post
/v1/form/question/category/create
POST /v1/form/question/category/create HTTP/1.1
Host: services.alkamedia.id
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 25

{
  "name": "text",
  "score": 1
}
200

Response

{
  "data": {
    "name": "text",
    "score": 1,
    "updated_at": "text",
    "uuid": "text",
    "created_at": "text",
    "id": 1
  },
  "message": "success",
  "status": true
}

Last updated