1. generate
LeksiGo v2
  • auth
    • login
      POST
    • register
      POST
    • logout
      POST
    • refresh token
      POST
  • child
    • get [parent]
      GET
    • post [parent]
      POST
    • get [insitution]
      GET
    • put [parent]
      PUT
    • delete [parent]
      DELETE
  • users [admin]
    • get
      GET
    • post
      POST
    • show
      GET
    • put
      PUT
    • delete
      DELETE
  • institution
    • get
      GET
    • post [admin]
      POST
    • show
      GET
    • updateStatus
      PATCH
    • get applicants [institution]
      GET
    • apply applicants [institution]
      POST
  • teacher [institution]
    • get
      GET
    • post
      POST
    • put
      PUT
    • updateStatus
      PATCH
  • playground
    • teacher
      • course
        • store
        • get
        • show
        • put
        • active status
      • modul
        • post
        • put
        • active status
        • show
    • student
      • submit answer
  • generate
    • question sugesstion
      POST
  1. generate

question sugesstion

Developing
POST
/suggestion/question

Request

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.leksigo.com/api/v2/suggestion/question' \
--header 'Content-Type: application/json' \
--data '{
    "quantity": 10,
    "categories": [4]
}'
Response Response Example
OK
{"success":true,"data":[{"soal":"a","method":1},{"soal":"b","method":2},{"soal":"c","method":3},{"soal":"d","method":1},{"soal":"e","method":2},{"soal":"f","method":3},{"soal":"g","method":1},{"soal":"h","method":2},{"soal":"i","method":3},{"soal":"j","method":1}]}
Modified at 2026-07-28 13:26:05
Previous
submit answer
Built with