Flavours API
BannerFeature

Detail Banner Feature

GET
/api/v2/banners/features/{featureId}

Get details of a specific banner feature by its ID.

AuthorizationBearer <token>

You can retrieve your token by logging in.

In: header

Path Parameters

featureId*string

Header Parameters

X-API-Version*string

API contract version to target. See the Changelog for what changed in each version.

Default"2.0.0"
Value in"2.3.0" | "2.2.0" | "2.1.0" | "2.0.0"

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.flavours.sa/dev/api/v2/banners/features/temporibus" \  -H "X-API-Version: 2.3.0"
{
  "meta": {
    "code": 200,
    "status": "success",
    "message": "Data Loaded Successfully"
  },
  "data": {
    "id": "00adb1ce-2712-46fb-b64f-3d4b736f442f",
    "banner_id": "0c902889-e760-42de-920e-48b145a60907",
    "role": "USER_SUBSCRIBER",
    "feature_key": "ACCOUNTING_SUPPLIER",
    "feature": {
      "key": "ACCOUNTING_SUPPLIER",
      "name_en": "Suppliers",
      "name_ar": "الموردين",
      "description_en": "Manage and track supplier details.",
      "description_ar": "إدارة وتتبع تفاصيل الموردين.",
      "roles": [
        "USER_SUBSCRIBER"
      ]
    }
  }
}
{
  "meta": {
    "code": 401,
    "status": "error",
    "message": "Unauthenticated."
  },
  "data": null
}
{
  "meta": {
    "code": 403,
    "status": "error",
    "message": "Unauthorized."
  },
  "data": null
}
{
  "meta": {
    "code": 404,
    "status": "error",
    "message": "Resource not found."
  },
  "data": null
}
{
  "meta": {
    "code": 500,
    "status": "error",
    "message": "Internal server error."
  },
  "data": null
}