Get Bundle List

get bundle list

get
/v2/module/bundle/list

get bundle list

Authorizations
AuthorizationstringRequired
Query parameters
sortstring · enumOptional

sorting

Possible values:
categorySlugstringOptional

filter by category

authorIdintegerOptional

filter by author

searchstringOptional

search bundle by name

pageintegerOptional

page number

pageSizeintegerOptional

total items in 1 page

Responses
200

Response

application/json
get
/v2/module/bundle/list
GET /v2/module/bundle/list HTTP/1.1
Host: services.alkamedia.id
Authorization: YOUR_API_KEY
Accept: */*
200

Response

{
  "message": "success",
  "status": true,
  "data": {
    "items": [
      {
        "description": "text",
        "id": 1,
        "title": "text",
        "created_at": "text",
        "price": 1,
        "updated_at": "text",
        "slug": "text",
        "authorId": 1,
        "categoryId": 1,
        "cover": "text",
        "moduleIds": [
          1
        ],
        "modules": [
          {
            "cover": "text",
            "description": "text",
            "id": 1,
            "slug": "text",
            "summary": "text",
            "title": "text"
          }
        ],
        "owned": true,
        "author": {
          "id": 1,
          "name": "text",
          "photo": "text"
        }
      }
    ],
    "page": 1,
    "perPage": 1,
    "totalItems": 1,
    "totalPages": 1
  }
}

Last updated