Get request types

Please use this (https://blkem.com/mobile_api/get_request_types) API for accessing the endpoint of fetching all the request types


Get parameters

Field Value Remarks
session_id ​Access token ID E.g. de25cc16eb00960f076...

Success response

{
    "code": 200,
    "message": "Fetched successfully",
    "data": [
        {
            "id": 1,
            "name": "test",
            "options": [
                {
                    "title": "asd",
                    "desc": "asd"
                }
            ],
            "thumbnail": ""
        },
        {
            "id": 2,
            "name": "asd",
            "options": [
                {
                    "title": "asd",
                    "desc": "asd"
                }
            ],
            "thumbnail": "http://localhost/blkem-new//upload/images/2022/06/v5HUKnreRtXHoitdJ8BT_07_89f6decf09f3a9721b2e3692b6bd3efe_image_thumbnail.png"
        }
    ]
}
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }

    {
        "code": 404,
        "message": "No data found",
        "data": []
    }