Skip to main content

Categories Endpoint

This guide explains how to interact with the Categories endpoint in the Sumaya369 web application. The endpoint provides category data for the home page.

Get Categories Data

Retrieve all categories data for the home page.

Endpoint

  • Method: GET
  • URL: /v1/customer/home-categories

Request Headers

HeaderValueRequired
Content-Typeapplication/jsonYes
Acceptapplication/jsonYes
AuthorizationBearer tokenNo

Success Response

{
"success": true,
"message": "تم جلب البيانات بنجاح.",
"data": {
"categories": {
"مواد الشهر": {
"id": "eb8fec80-b43f-11ec-8195-abf33b22a6c8",
"courses": [],
"description": "المواد المتاحة لهذا الشهر",
"childrenCategories": []
},
"المواد المتاحة للاشتراك": {
"id": "e4e0bb10-db44-11ec-91f3-dff7c0899e8e",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية الثراء": {
"id": "265f31ad-1b4e-355f-844a-af92d88de7b0",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية النجاح": {
"id": "a0c9414c-c43b-3916-91e5-4a95bd9e4908",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية الروحانية": {
"id": "b55070c4-144c-3ceb-a8e6-2edf7dd9e740",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية الحظ": {
"id": "47cd4b03-e2fb-38db-8d4b-9d3cfa2f565f",
"courses": [],
"description": "خحهخحكخهنمك",
"childrenCategories": []
},
"نية تشافي العلاقات": {
"id": "5e4597a3-1f56-332b-9933-7c60c9f049dc",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية تطوير الجسد المشاعري": {
"id": "df4a0ec0-f847-11ec-856a-9139cbe3cce3",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية توازن الذكورة والأنوثة": {
"id": "e538ac1f-cda1-33f2-a496-c58a15ad549c",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية المتعة": {
"id": "a0e4d679-df3e-3269-8e4f-5d0792c50028",
"courses": [],
"description": null,
"childrenCategories": []
},
"نية العظمة": {
"id": "c025e060-4840-11ee-861c-e517e86b9b43",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية التطوير": {
"id": "a105dc70-c0fb-11ef-9994-59b02452f53b",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية التحرر من الصدمات": {
"id": "fe1802d7-576b-36b5-a768-9d5cdf185ba3",
"courses": [],
"description": "null",
"childrenCategories": []
},
"نية التنظيف": {
"id": "5d4ccf60-6232-11ee-b35d-4daaea0f5fd6",
"courses": [],
"description": "مع نية التنظيف اعمل على تنظيف جميع جوانب حياتك",
"childrenCategories": []
},
"نية الاستعداد للعام الجديد": {
"id": "3dec10fa-82b4-39b4-8e76-3c55003053db",
"courses": [],
"description": "null",
"childrenCategories": []
},
"مواد مجانية": {
"id": "759db400-0bef-11ed-aa92-d3c10a92b0c6",
"courses": [],
"description": null,
"childrenCategories": []
},
"قريباً": {
"id": "1df77750-0b1f-11ed-a1e6-2df6b5b7b0a9",
"courses": [],
"description": "تشير نية العظمة إلى الطموح لتحقيق إنجازات كبيرة وترك أثر واضح في العالم. تركز على تبني أهداف سامية تهدف إلى إلهام الآخرين وتحقيق التميز. من خلال هذه النية، يسعى الفرد إلى تحقيق تأثير إيجابي ومستدام في حياته وحياة من حوله.",
"childrenCategories": []
},
"نية التغيير": {
"id": "0e9ae2f0-c0fd-11ef-99ef-83896c642db2",
"courses": [],
"description": "null",
"childrenCategories": []
},
"لاتتا": {
"id": "75932bb0-c694-11ef-9002-e1f155debd8a",
"courses": [],
"description": "wqeqwe",
"childrenCategories": []
}
}
},
"status_code": 200
}

Implementation Notes

  • Returns a collection of categories formatted for the home page display
  • Categories are used for organizing and filtering content
  • No caching is implemented for this endpoint
  • All users receive the same category data regardless of authentication status