Menu

Fire this api to show list of menus.

api/menu

GET https://yourdomain.com/api/menu

This end point will get you list of menus

Query Parameters

Name
Type
Description

secret

string

Client secret key will goes here which you get from admin panel.

Headers

Name
Type
Description

Authorization*

string

Bearer { bearer_token without bracket }

Accept*

string

application/json

{
    "menu": [
        {
            "id": 1,
            "name": "Browse",
            "slug": "browse",
            "position": 1,
            "created_at": "2021-08-03T15:41:06.000000Z",
            "updated_at": "2021-08-03T15:41:06.000000Z"
        },
        {
            "id": 2,
            "name": "Movies",
            "slug": "movies",
            "position": 2,
            "created_at": "2021-08-03T15:42:31.000000Z",
            "updated_at": "2021-08-03T15:42:31.000000Z"
        },
        {
            "id": 3,
            "name": "TV Shows",
            "slug": "tv-shows",
            "position": 3,
            "created_at": "2021-08-03T15:43:41.000000Z",
            "updated_at": "2021-08-03T15:43:41.000000Z"
        },
        {
            "id": 4,
            "name": "Kids",
            "slug": "kids",
            "position": 4,
            "created_at": "2021-08-03T15:46:16.000000Z",
            "updated_at": "2021-08-03T16:30:31.000000Z"
        }
    ]
}

Last updated