{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/devapi.qiroah.com"
        }
    ],
    "info": {
        "name": "API Qiroah",
        "_postman_id": "cbe478d5-0116-4699-b358-e3898b2e5eab",
        "description": "Here is a list of APIs used for integration to other Apps, for more information please see Documentation",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Account",
            "description": "",
            "item": [
                {
                    "name": "Authentication",
                    "description": "",
                    "item": [
                        {
                            "name": "Get Access Token via GoogleSignIn",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/auth\/google",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/auth\/google"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"id_token\":null}"
                                },
                                "description": "This endpoint allows you to get the token for user access to the authenticated endpoints using GoogleSignIn.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": {\n         \"access_token\": string,\n         \"token_type\": string,\n         \"expires_at\": int,\n         \"email\": string,\n         \"is_profile_complete\": boolean,\n     }\n}",
                                    "name": "Success"
                                },
                                {
                                    "header": [],
                                    "code": 400,
                                    "body": "{\n     \"status\": 400,\n     \"message\": \"idToken is not verified\",\n     \"error\": true\n}",
                                    "name": "idToken is not verified"
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\n     \"status\": 403,\n     \"message\": \"Account user not found\",\n     \"error\": true\n}",
                                    "name": "Account user not found"
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\n     \"status\": 500,\n     \"message\": \"Internal Server Error\",\n     \"error\": true\n}",
                                    "name": "Internal Server Error"
                                }
                            ]
                        },
                        {
                            "name": "Register via Form",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/auth\/register",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/auth\/register"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"email\":null,\"name\":null,\"gender\":null,\"whatsapp\":44}"
                                },
                                "description": "This endpoint allows you to create user account via Registration Form.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 201,
                                    "body": "{\n     \"status\": 201,\n     \"error\": false\n}",
                                    "name": "Created"
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\n     \"status\": 403,\n     \"message\": \"Email already registered\",\n     \"error\": true\n}",
                                    "name": "Email already registered"
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\n     \"status\": 500,\n     \"message\": \"Internal Server Error\",\n     \"error\": true\n}",
                                    "name": "Internal Server Error"
                                }
                            ]
                        },
                        {
                            "name": "Revoke The Access Token",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/auth\/logout",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/auth\/logout"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": "This endpoint allows you to revoke the token."
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n     \"status\": 200,\n     \"error\": false\n}",
                                    "name": "Success"
                                },
                                {
                                    "header": [],
                                    "code": 401,
                                    "body": "{\n     \"status\": 401,\n     \"message\": \"Unauthorized\",\n     \"error\": true\n}",
                                    "name": "Unauthorized"
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Profile",
                    "description": "",
                    "item": [
                        {
                            "name": "Get Profile User by ID",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/users",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/users"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id\": int,\n             \"name\": string,\n             \"avatar\": string\n         }\n     ]\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 401,
                                    "body": "{\n     \"status\": 401,\n     \"message\": \"Unauthorized\",\n     \"error\": true\n}",
                                    "name": "Unauthenticated"
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\n     \"status\": 401,\n     \"message\": \"Not Found\",\n     \"error\": true\n}",
                                    "name": "Not Found"
                                }
                            ]
                        },
                        {
                            "name": "Update Profile User",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/users",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/users"
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n     \"data\": [],\n     \"status\": 200,\n     \"message\": \"Success\",\n     \"error\": false\n     }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 401,
                                    "body": "{\n     \"data\": [],\n     \"status\": 401,\n     \"message\": \"Unauthorized\",\n     \"error\": true\n}",
                                    "name": "Unauthenticated"
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\n     \"data\": [],\n     \"status\": 401,\n     \"message\": \"Not Found\",\n     \"error\": true\n}",
                                    "name": "Not Found"
                                }
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "name": "Lesson",
            "description": "",
            "item": [
                {
                    "name": "Get list of Feedback",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/feedbacks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/feedbacks"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_feedback\": string,\n             \"deskripsi\": string,\n             \"daftar_pertanyaan\": [\n                 {\n                     \"id_pertanyaan\": string,\n                     \"id_feedback\": string,\n                     \"id_kategori\": string,\n                     \"id_content\": string,\n                     \"pertanyaan\": string,\n                     \"audio_ustadz\": string,\n                     \"image_soal\": string,\n                     \"true_sound_label\": string,\n                     \"daftar_content\": [\n                         {\n                             \"id_content\": string,\n                             \"nama_content\": string,\n                             \"deskripsi\": string,\n                             \"image\": string,\n                             \"video\": string,\n                             \"rekap\": string,\n                             \"intro_text\": string,\n                         }\n                     ],\n                 }\n             ]\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of Pertanyaan",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/pertanyaans",
                            "query": [
                                {
                                    "key": "id_content",
                                    "value": "2",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/pertanyaans?id_content=2"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_pertanyaan\": string,\n             \"id_feedback\": string,\n             \"id_kategori\": string,\n             \"id_content\": string,\n             \"pertanyaan\": string,\n             \"audio_ustadz\": string,\n             \"image_soal\": string,\n             \"true_sound_label\": string,\n             \"daftar_feedbacks\": [\n                 {\n                     \"id_feedback\": string,\n                     \"deskripsi\": string\n                 }\n             ],\n             \"daftar_contents\": [\n                 {\n                     \"id_content\": string,\n                     \"nama_content\": string,\n                     \"deskripsi\": string,\n                     \"image\": string,\n                     \"video\": string,\n                     \"rekap\": string,\n                     \"intro_text\": string,\n                 }\n             ],\n             \"daftar_hurufs\": [\n                 {\n                     \"id_huruf\": string,\n                     \"huruf\": string,\n                     \"daftar_sifat\": [\n                         {\n                             \"id_sifatul_huruf\": string,\n                             \"nama_sifat\": string,\n                             \"deskripsi\": int\n                         }\n                     ]\n                 }\n             ]\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of Huruf",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/hurufs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/hurufs"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_huruf\": string,\n             \"huruf\": string,\n             \"daftar_sifat\": [\n                 {\n                     \"id_sifatul_huruf\": string,\n                     \"nama_sifat\": string,\n                     \"deskripsi\": int\n                 }\n             ]\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of Kategori",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/kategoris",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/kategoris"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_kategori\": string,\n             \"nama_kategori\": string,\n             \"deskripsi\": string,\n             \"image\": string,\n             \"deskripsi_panjang\": string,\n             \"daftar_subkategori\": [\n                 {\n                     \"id_subkategori\": string,\n                     \"id_kategori\": string,\n                     \"bagian_mulut\": string,\n                     \"daftar_content\": [\n                         {\n                             \"id_content\": string,\n                             \"nama_content\": string,\n                             \"deskripsi\": string,\n                             \"image\": string,\n                             \"video\": string,\n                             \"rekap\": string,\n                             \"intro_text\": string\n                         }\n                     ]\n                 }\n             ]\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of Sub Kategori",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/kategoris\/sub",
                            "query": [
                                {
                                    "key": "id_kategori",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/kategoris\/sub?id_kategori=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"data\": [\n         {\n             \"id_subkategori\": string,\n             \"id_kategori\": string,\n             \"bagian_mulut\": string,\n             \"daftar_content\": [\n                 {\n                     \"id_content\": string,\n                     \"nama_content\": string,\n                     \"deskripsi\": string,\n                     \"image\": string,\n                     \"video\": string,\n                     \"rekap\": string,\n                     \"intro_text\": string\n                 }\n             ]\n         }\n     ],\n     \"status\": 200,\n     \"error\": false\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Talaqqi",
            "description": "",
            "item": [
                {
                    "name": "Get list of Lembaga",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lembagas",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lembagas"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_lembaga\": string,\n             \"info\": string,\n             \"nama_lembaga\": string,\n             \"alamat\": string,\n             \"latitude\": string,\n             \"longitude\": string,\n             \"nomor_telepon\": string,\n             \"deskripsi\": string,\n             \"instagram\": string,\n             \"email\": string,\n             \"web\": string\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of Teacher",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/pengajars",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/pengajars"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"data\": [\n         {\n             \"id_teacher\": int,\n             \"id_user\": int,\n             \"nama_pengajar\": string,\n             \"info\": string,\n             \"domisili\": string,\n             \"instagram\": string,\n             \"nomor_telepon\": string,\n             \"profesi\": string,\n             \"latitude\": string,\n             \"longitude\": string,\n             \"sertifikats\": [\n                 {\n                     \"id_sertifikasipengajar\": string,\n                     \"id_pengajar\": string,\n                     \"sertifikasi\": string,\n                     \"sumber\": string\n                 }\n             ],\n             \"pengalamans\": [\n                 {\n                     \"id_pengalamanpengajar\": string,\n                     \"id_pengajar\": string,\n                     \"pengalaman\": string,\n                     \"tahun\": string,\n                     \"pengalaman_preview\": string\n                 }\n             ],\n             \"levels\": [\n                 {\n                     \"id_level\": int,\n                     \"level\": string,\n                     \"description\": string,\n                     \"s_active\": string\n                 }\n             ],\n             \"days\": [\n                 {\n                     \"id_day\": int,\n                     \"day\": string,\n                     \"times\": [\n                         {\n                             \"id_time\": int,\n                             \"time\": string,\n                             \"students\": [\n                                 {\n                                     \"id_student\": int,\n                                     \"id_user\": int,\n                                     \"name\": string,\n                                     \"whatsapp\": string,\n                                     \"gender\": string\n                                 }\n                             ]\n                         }\n                     ]\n                 }\n             ]\n         }\n     ],\n     \"status\": 200,\n     \"error\": false\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of Teacher",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/teachers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/teachers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"data\": [\n         {\n             \"id_teacher\": int,\n             \"id_user\": int,\n             \"nama_pengajar\": string,\n             \"info\": string,\n             \"domisili\": string,\n             \"instagram\": string,\n             \"nomor_telepon\": string,\n             \"profesi\": string,\n             \"latitude\": string,\n             \"longitude\": string,\n             \"sertifikats\": [\n                 {\n                     \"id_sertifikasipengajar\": string,\n                     \"id_pengajar\": string,\n                     \"sertifikasi\": string,\n                     \"sumber\": string\n                 }\n             ],\n             \"pengalamans\": [\n                 {\n                     \"id_pengalamanpengajar\": string,\n                     \"id_pengajar\": string,\n                     \"pengalaman\": string,\n                     \"tahun\": string,\n                     \"pengalaman_preview\": string\n                 }\n             ],\n             \"levels\": [\n                 {\n                     \"id_level\": int,\n                     \"level\": string,\n                     \"description\": string,\n                     \"s_active\": string\n                 }\n             ],\n             \"days\": [\n                 {\n                     \"id_day\": int,\n                     \"day\": string,\n                     \"times\": [\n                         {\n                             \"id_time\": int,\n                             \"time\": string,\n                             \"students\": [\n                                 {\n                                     \"id_student\": int,\n                                     \"id_user\": int,\n                                     \"name\": string,\n                                     \"whatsapp\": string,\n                                     \"gender\": string\n                                 }\n                             ]\n                         }\n                     ]\n                 }\n             ]\n         }\n     ],\n     \"status\": 200,\n     \"error\": false\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Teacher by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/teachers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/teachers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "labore",
                                    "description": "The ID of the teacher."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"data\": [\n         {\n             \"id_teacher\": int,\n             \"id_user\": int,\n             \"nama_pengajar\": string,\n             \"info\": string,\n             \"domisili\": string,\n             \"instagram\": string,\n             \"nomor_telepon\": string,\n             \"profesi\": string,\n             \"latitude\": string,\n             \"longitude\": string,\n             \"sertifikats\": [\n                 {\n                     \"id_sertifikasipengajar\": string,\n                     \"id_pengajar\": string,\n                     \"sertifikasi\": string,\n                     \"sumber\": string\n                 }\n             ],\n             \"pengalamans\": [\n                 {\n                     \"id_pengalamanpengajar\": string,\n                     \"id_pengajar\": string,\n                     \"pengalaman\": string,\n                     \"tahun\": string,\n                     \"pengalaman_preview\": string\n                 }\n             ],\n             \"levels\": [\n                 {\n                     \"id_level\": int,\n                     \"level\": string,\n                     \"description\": string,\n                     \"s_active\": string\n                 }\n             ],\n             \"days\": [\n                 {\n                     \"id_day\": int,\n                     \"day\": string,\n                     \"times\": [\n                         {\n                             \"id_time\": int,\n                             \"time\": string,\n                             \"students\": [\n                                 {\n                                     \"id_student\": int,\n                                     \"id_user\": int,\n                                     \"name\": string,\n                                     \"whatsapp\": string,\n                                     \"gender\": string\n                                 }\n                             ]\n                         }\n                     ]\n                 }\n             ]\n         }\n     ],\n     \"status\": 200,\n     \"message\": \"Success\",\n     \"error\": false\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Placement Test",
            "description": "",
            "item": [
                {
                    "name": "Get Placement Test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/placement-test",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/placement-test"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_placement_test\": int,\n             \"id_reviewer\": int,\n             \"id_student\": int,\n             \"test_schedule_at\": string,\n             \"actual_tested_at\": string,\n             \"level_result\": int,\n             \"notes\": string,\n             \"expired_date_at\": string,\n             \"s_progress\": int,\n             \"id_user\": int,\n             \"name\": string,\n             \"whatsapp\": string,\n             \"gender\": string,\n             \"link_catatan\": string\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Register Placement Test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/placement-test\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/placement-test\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_placement_test\": int,\n             \"id_reviewer\": int,\n             \"id_student\": int,\n             \"test_schedule_at\": string,\n             \"actual_tested_at\": string,\n             \"level_result\": int,\n             \"notes\": string,\n             \"expired_date_at\": string,\n             \"s_progress\": int,\n             \"id_user\": int,\n             \"name\": string,\n             \"whatsapp\": string,\n             \"gender\": string,\n             \"link_catatan\": string\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Package",
            "description": "",
            "item": [
                {
                    "name": "Get list of Package",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/packages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/packages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_package\": int,\n             \"name\": string,\n             \"description\": string,\n             \"price\": string,\n             \"duration\": float,\n             \"duration_in\": float,\n             \"recurred_of_meeting\": string,\n             \"level\": string,\n             \"bill_type\": string,\n             \"recurred_of_meeting_label\": string\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Package by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/packages\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/packages\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "aliquam",
                                    "description": "The ID of the package."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_package\": int,\n             \"name\": string,\n             \"description\": string,\n             \"price\": string,\n             \"duration\": float,\n             \"duration_in\": float,\n             \"recurred_of_meeting\": string,\n             \"level\": string,\n             \"bill_type\": string,\n             \"recurred_of_meeting_label\": string\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/set-schedules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/set-schedules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/set-schedules"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\"status\":500,\"message\":{\"errorInfo\":[\"42S02\",1146,\"Table 'u136005164_qiroah_dev.mpackage_students' doesn't exist\"]},\"error\":true}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Program",
            "description": "",
            "item": [
                {
                    "name": "Get list of Program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/programs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/programs"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_program\": int,\n             \"program_name\": string,\n             \"url_register\": string,\n             \"short_description\": string,\n             \"description_html\": string,\n             \"s_active\": int,\n             \"program_type\": string,\n             \"s_progress\": int\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Program by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/programs\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/programs\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "rem",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"data\": [\n         {\n             \"id_program\": int,\n             \"program_name\": string,\n             \"url_register\": string,\n             \"short_description\": string,\n             \"description_html\": string,\n             \"s_active\": int,\n             \"program_type\": string,\n             \"s_progress\": int\n         }\n     ],\n     \"status\": 200,\n     \"message\": \"Success\",\n     \"error\": false\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Teacher Slot Time",
            "description": "",
            "item": [
                {
                    "name": "Get List of Teacher Slot Time",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/teachers\/slot-time",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/teachers\/slot-time"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_teacher\": int,\n             \"id_user\": int,\n             \"nama_pengajar\": string,\n             \"info\": string,\n             \"domisili\": string,\n             \"instagram\": string,\n             \"nomor_telepon\": string,\n             \"profesi\": string,\n             \"latitude\": string,\n             \"longitude\": string,\n             \"levels\": [\n                 {\n                     \"id_level\": int,\n                     \"level\": string,\n                     \"description\": string,\n                     \"s_active\": string\n                 }\n             ],\n             \"days\": [\n                 {\n                     \"id_day\": int,\n                     \"day\": string,\n                     \"times\": [\n                         {\n                             \"id_time\": int,\n                             \"time\": string,\n                             \"students\": [\n                                 {\n                                     \"id_student\": int,\n                                     \"id_user\": int,\n                                     \"name\": string,\n                                     \"whatsapp\": string,\n                                     \"gender\": string\n                                 }\n                             ]\n                         }\n                     ]\n                 }\n             ]\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Teacher Slot Time by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/teachers\/:id\/slot-time",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/teachers\/:id\/slot-time",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "dolores",
                                    "description": "The ID of the teacher."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"status\": 200,\n     \"error\": false,\n     \"data\": [\n         {\n             \"id_teacher\": int,\n             \"id_user\": int,\n             \"nama_pengajar\": string,\n             \"info\": string,\n             \"domisili\": string,\n             \"instagram\": string,\n             \"nomor_telepon\": string,\n             \"profesi\": string,\n             \"latitude\": string,\n             \"longitude\": string,\n             \"levels\": [\n                 {\n                     \"id_level\": int,\n                     \"level\": string,\n                     \"description\": string,\n                     \"s_active\": string\n                 }\n             ],\n             \"days\": [\n                 {\n                     \"id_day\": int,\n                     \"day\": string,\n                     \"times\": [\n                         {\n                             \"id_time\": int,\n                             \"time\": string,\n                             \"students\": [\n                                 {\n                                     \"id_student\": int,\n                                     \"id_user\": int,\n                                     \"name\": string,\n                                     \"whatsapp\": string,\n                                     \"gender\": string\n                                 }\n                             ]\n                         }\n                     ]\n                 }\n             ]\n         }\n     ]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}