Pagine splash
GET https://1li.ch/api/splash-pages/
curl --request GET \
--url 'https://1li.ch/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://1li.ch/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
| Parametri | Dettagli | Descrizione |
|---|---|---|
| page | Opzionale Integer | Il numero di pagina dal quale desideri ricevere i risultati. Il valore predefinito è 1. |
| results_per_page | Opzionale Integer | Quanti risultati desideri per pagina. I valori ammessi sono: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Il valore predefinito è 25. |
{
"data": [
{
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": null,
"datetime": "2025-10-30 14:37:37",
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://1li.ch/api/projects?page=1",
"last": "https://1li.ch/api/projects?page=1",
"next": null,
"prev": null,
"self": "https://1li.ch/api/projects?page=1"
}
}
GET https://1li.ch/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://1li.ch/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://1li.ch/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": null,
"datetime": "2025-10-30 14:37:37",
}
}
POST https://1li.ch/api/projects
| Parametri | Dettagli | Descrizione |
|---|---|---|
| name | Obbligatorio String | - |
| title | Opzionale String | - |
| logo | Opzionale File | - |
| favicon | Opzionale File | - |
| opengraph | Opzionale File | - |
| description | Opzionale String | - |
| secondary_button_name | Opzionale String | - |
| secondary_button_url | Opzionale String | - |
| custom_css | Opzionale String | - |
| custom_js | Opzionale String | - |
| ads_header | Opzionale String | - |
| ads_footer | Opzionale String | - |
| link_unlock_seconds | Opzionale Integer | - |
| auto_redirect | Opzionale Boolean | - |
curl --request POST \
--url 'https://1li.ch/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://1li.ch/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://1li.ch/api/splash-pages/{splash_page_id}
| Parametri | Dettagli | Descrizione |
|---|---|---|
| name | Opzionale String | - |
| title | Opzionale String | - |
| logo | Opzionale File | - |
| favicon | Opzionale File | - |
| opengraph | Opzionale File | - |
| description | Opzionale String | - |
| secondary_button_name | Opzionale String | - |
| secondary_button_url | Opzionale String | - |
| custom_css | Opzionale String | - |
| custom_js | Opzionale String | - |
| ads_header | Opzionale String | - |
| ads_footer | Opzionale String | - |
| link_unlock_seconds | Opzionale Integer | - |
| auto_redirect | Opzionale Boolean | - |
curl --request POST \
--url 'https://1li.ch/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://1li.ch/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://1li.ch/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://1li.ch/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://1li.ch/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \