صفحات البداية
GET https://dmpilot.ru/api/splash-pages/
curl --request GET \
--url 'https://dmpilot.ru/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
| المعاملات | تفاصيل | الوصف |
|---|---|---|
| page | اختياري عدد صحيح | رقم الصفحة التي تريد النتائج منها. القيمة الافتراضية هي 1. |
| results_per_page | اختياري عدد صحيح | عدد النتائج التي تريدها في كل صفحة. القيم المسموح بها هي: 10 , 25 , 50 , 100 , 250 , 500 , 1000. القيمة الافتراضية هي 25. |
{
"data": [
{
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": null,
"datetime": "2025-11-29 17:58:47",
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://dmpilot.ru/api/projects?page=1",
"last": "https://dmpilot.ru/api/projects?page=1",
"next": null,
"prev": null,
"self": "https://dmpilot.ru/api/projects?page=1"
}
}
GET https://dmpilot.ru/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://dmpilot.ru/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": null,
"datetime": "2025-11-29 17:58:47",
}
}
POST https://dmpilot.ru/api/projects
| المعاملات | تفاصيل | الوصف |
|---|---|---|
| name | مطلوب سلسلة نصية | - |
| title | اختياري سلسلة نصية | - |
| logo | اختياري ملف | - |
| favicon | اختياري ملف | - |
| opengraph | اختياري ملف | - |
| description | اختياري سلسلة نصية | - |
| secondary_button_name | اختياري سلسلة نصية | - |
| secondary_button_url | اختياري سلسلة نصية | - |
| custom_css | اختياري سلسلة نصية | - |
| custom_js | اختياري سلسلة نصية | - |
| ads_header | اختياري سلسلة نصية | - |
| ads_footer | اختياري سلسلة نصية | - |
| link_unlock_seconds | اختياري عدد صحيح | - |
| auto_redirect | اختياري منطقي | - |
curl --request POST \
--url 'https://dmpilot.ru/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
--url 'https://dmpilot.ru/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
{
"data": {
"id": 1
}
}
POST https://dmpilot.ru/api/splash-pages/{splash_page_id}
| المعاملات | تفاصيل | الوصف |
|---|---|---|
| name | اختياري سلسلة نصية | - |
| title | اختياري سلسلة نصية | - |
| logo | اختياري ملف | - |
| favicon | اختياري ملف | - |
| opengraph | اختياري ملف | - |
| description | اختياري سلسلة نصية | - |
| secondary_button_name | اختياري سلسلة نصية | - |
| secondary_button_url | اختياري سلسلة نصية | - |
| custom_css | اختياري سلسلة نصية | - |
| custom_js | اختياري سلسلة نصية | - |
| ads_header | اختياري سلسلة نصية | - |
| ads_footer | اختياري سلسلة نصية | - |
| link_unlock_seconds | اختياري عدد صحيح | - |
| auto_redirect | اختياري منطقي | - |
curl --request POST \
--url 'https://dmpilot.ru/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
--url 'https://dmpilot.ru/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
{
"data": {
"id": 1
}
}
DELETE https://dmpilot.ru/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://dmpilot.ru/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \