Edit Question Category

edit question category

post
/v1/form/question/category/edit

edit question category

Authorizations
AuthorizationstringRequired
Query parameters
categoryIdintegerOptional

id of category

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/edit
POST /v1/form/question/category/edit 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

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

Last updated