1. course
LeksiGo v2
  • auth
    • login
      POST
    • register
      POST
    • logout
      POST
  • child
    • get [parent]
      GET
    • post [parent]
      POST
    • get [insitution]
      GET
    • put [parent]
      PUT
    • delete [parent]
      DELETE
  • users
    • 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
    • get
    • post
    • put
    • updateStatus
  • playground
    • teacher
      • course
        • store
          POST
        • get
          GET
        • show
          GET
        • put
          PUT
        • active status
          PATCH
      • modul
        • post
        • put
        • active status
        • submit answer
  1. course

put

Developing
PUT
/playgrounds/{childId}/{playgroundId}

Request

Path Params

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff --request PUT '/playgrounds/{{childId}}/{{playgroundId}}' \
--header 'Authorization: Bearer {{accessToken}}' \
--header 'Content-Type: application/json' \
--data '{
    "title": "Judul Course Setelah Di Edit",
    "description": "Ini deskripsi dari course satu [1]"
}'
Response Response Example
{}
Modified at 2026-05-13 13:45:22
Previous
show
Next
active status
Built with