Liens
GET https://dmpilot.ru/api/links/
curl --request GET \
--url 'https://dmpilot.ru/api/links/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/links/' \
--header 'Authorization: Bearer {api_key}' \
| Parametres | Détails | Description |
|---|---|---|
| page | Optionnel Entier | Le numero de page dont vous voulez les resultats. Par defaut : 1. |
| results_per_page | Optionnel Entier | Nombre de resultats par page. Les valeurs autorisees sont : 10 , 25 , 50 , 100 , 250 , 500 , 1000. Par defaut : 25. |
{
"data": [
{
"id": 1,
"project_id": null,
"domain_id": 0,
"type": "link",
"url": "example",
"location_url": "https://example.com/",
"settings": {
"password": null,
"sensitive_content": false
},
"clicks": 10,
"order": 0,
"start_date": null,
"end_date": null,
"datetime": "2025-11-29 17:59:44",
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://dmpilot.ru/api/links?page=1",
"last": "https://dmpilot.ru/api/links?page=1",
"next": null,
"prev": null,
"self": "https://dmpilot.ru/api/links?page=1"
}
}
GET https://dmpilot.ru/api/links/{link_id}
curl --request GET \
--url 'https://dmpilot.ru/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"project_id": null,
"domain_id": 0,
"type": "link",
"url": "example",
"location_url": "https://example.com/",
"settings": {
"password": null,
"sensitive_content": false
},
"clicks": 10,
"order": 0,
"start_date": null,
"end_date": null,
"datetime": "2025-11-29 17:59:44",
}
}
POST https://dmpilot.ru/api/links
| Parametres | Détails | Description |
|---|---|---|
| type | Optionnel Chaine de caracteres | link |
| location_url | Obligatoire Chaine de caracteres | L URL de destination.Disponible quand : is_bulk = 0 |
| location_urls | Obligatoire Chaine de caracteres | L URL de destination.Disponible quand : is_bulk = 1 |
| url | Optionnel Chaine de caracteres | L alias URL du lien genere. Laissez vide pour en generer un aleatoirement.Disponible quand : is_bulk = 0 |
| is_bulk | Optionnel Booleen | |
| domain_id | Optionnel Entier | - |
| project_id | Optionnel Entier | - |
| pixels_ids | Optionnel Tableau Entier | - |
| email_reports | Optionnel Tableau | Identifiants des gestionnaires de notification |
| schedule | Optionnel Booleen | - |
| start_date | Optionnel Chaine de caracteres | Disponible quand : schedule = true |
| end_date | Optionnel Chaine de caracteres | Disponible quand : schedule = true |
| clicks_limit | Optionnel Entier | - |
| expiration_url | Optionnel Chaine de caracteres | - |
| sensitive_content | Optionnel Booleen | - |
| http_status_code | Optionnel Entier | Valeurs autorisees : 301, 302, 307, 308 |
| app_linking_is_enabled | Optionnel Booleen | - |
| cloaking_is_enabled | Optionnel Booleen | - |
| cloaking_title | Optionnel Chaine de caracteres | - |
| cloaking_meta_description | Optionnel Chaine de caracteres | - |
| cloaking_custom_js | Optionnel Chaine de caracteres | - |
| cloaking_favicon | Optionnel Fichier | - |
| cloaking_opengraph | Optionnel Fichier | - |
| password | Optionnel Chaine de caracteres | - |
| forward_query_parameters_is_enabled | Optionnel Booleen | - |
| utm_source | Optionnel Chaine de caracteres | - |
| utm_medium | Optionnel Chaine de caracteres | - |
| utm_campaign | Optionnel Chaine de caracteres | - |
| targeting_type | Optionnel Chaine de caracteres | continent_code , country_code , device_type , browser_language , rotation , os_name , browser_name |
| targeting_continent_code_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = continent_code |
| targeting_continent_code_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = continent_code |
| targeting_country_code_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = country_code |
| targeting_country_code_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = country_code |
| targeting_city_name_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = city_name |
| targeting_city_name_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = city_name |
| targeting_device_type_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = device_type |
| targeting_device_type_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = device_type |
| targeting_browser_language_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_language |
| targeting_browser_language_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_language |
| targeting_rotation_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = rotation |
| targeting_rotation_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = rotation |
| targeting_os_name_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = os_name |
| targeting_os_name_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = os_name |
| targeting_browser_name_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_name |
| targeting_browser_name_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_name |
curl --request POST \
--url 'https://dmpilot.ru/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://dmpilot.ru/' \
--url 'https://dmpilot.ru/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://dmpilot.ru/' \
{
"data": {
"id": 1
}
}
POST https://dmpilot.ru/api/links/{link_id}
| Parametres | Détails | Description |
|---|---|---|
| location_url | Optionnel Chaine de caracteres | L URL de destination. |
| url | Optionnel Chaine de caracteres | L alias URL du lien genere. Laissez vide pour en generer un aleatoirement. |
| domain_id | Optionnel Entier | - |
| project_id | Optionnel Entier | - |
| pixels_ids | Optionnel Tableau Entier | - |
| email_reports | Optionnel Tableau | Identifiants des gestionnaires de notification |
| schedule | Optionnel Booleen | - |
| start_date | Optionnel Chaine de caracteres | Disponible quand : schedule = true |
| end_date | Optionnel Chaine de caracteres | Disponible quand : schedule = true |
| clicks_limit | Optionnel Entier | - |
| expiration_url | Optionnel Chaine de caracteres | - |
| sensitive_content | Optionnel Booleen | - |
| http_status_code | Optionnel Entier | Valeurs autorisees : 301, 302, 307, 308 |
| app_linking_is_enabled | Optionnel Booleen | - |
| cloaking_is_enabled | Optionnel Booleen | - |
| cloaking_title | Optionnel Chaine de caracteres | - |
| cloaking_meta_description | Optionnel Chaine de caracteres | - |
| cloaking_custom_js | Optionnel Chaine de caracteres | - |
| cloaking_favicon | Optionnel Fichier | - |
| cloaking_opengraph | Optionnel Fichier | - |
| password | Optionnel Chaine de caracteres | - |
| forward_query_parameters_is_enabled | Optionnel Booleen | - |
| utm_source | Optionnel Chaine de caracteres | - |
| utm_medium | Optionnel Chaine de caracteres | - |
| utm_campaign | Optionnel Chaine de caracteres | - |
| targeting_type | Optionnel Chaine de caracteres | continent_code , country_code , device_type , browser_language , rotation , os_name , browser_name |
| targeting_continent_code_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = continent_code |
| targeting_continent_code_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = continent_code |
| targeting_country_code_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = country_code |
| targeting_country_code_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = country_code |
| targeting_city_name_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = city_name |
| targeting_city_name_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = city_name |
| targeting_device_type_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = device_type |
| targeting_device_type_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = device_type |
| targeting_browser_language_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_language |
| targeting_browser_language_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_language |
| targeting_rotation_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = rotation |
| targeting_rotation_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = rotation |
| targeting_os_name_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = os_name |
| targeting_os_name_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = os_name |
| targeting_browser_name_key[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_name |
| targeting_browser_name_value[index] | Optionnel Chaine de caracteres | Disponible quand : targeting_type = browser_name |
curl --request POST \
--url 'https://dmpilot.ru/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'is_enabled=0' \
--url 'https://dmpilot.ru/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'is_enabled=0' \
{
"data": {
"id": 1
}
}
DELETE https://dmpilot.ru/api/links/{link_id}
curl --request DELETE \
--url 'https://dmpilot.ru/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \