Арнайы домендер
GET https://taplanding.com/api/domains/
curl --request GET \
--url 'https://taplanding.com/api/domains/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://taplanding.com/api/domains/' \
--header 'Authorization: Bearer {api_key}' \
Параметрлер | Егжей-тегжейлер | Сипаттама |
---|---|---|
page | Міндетті емес Бүтін сан | Сіз нәтижелерді алғыңыз келетін бет нөмірі. Әдепкі бойынша 1 . |
results_per_page | Міндетті емес Бүтін сан | Бір бетте қанша нәтиже көрсеткіңіз келеді. Рұқсат етілген мәндер: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Әдепкі бойынша 25 . |
{ "data": [ { "id": 1, "scheme": "https://", "host": "example.com", "custom_index_url": "", "is_enabled": true, "last_datetime": null, "datetime": "2021-02-04 23:29:18" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://taplanding.com/api/domains?&page=1", "last": "https://taplanding.com/api/domains?&page=1", "next": null, "prev": null, "self": "https://taplanding.com/api/domains?&page=1" } }
GET https://taplanding.com/api/domains/{domain_id}
curl --request GET \
--url 'https://taplanding.com/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://taplanding.com/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "scheme": "https://", "host": "example.com", "custom_index_url": "", "is_enabled": true, "last_datetime": null, "datetime": "2021-02-04 23:29:18" } }
POST https://taplanding.com/api/domains
Параметрлер | Егжей-тегжейлер | Сипаттама |
---|---|---|
host | Қажет Жолақ | - |
custom_index_url | Міндетті емес Жолақ | - |
custom_not_found_url | Міндетті емес Жолақ | - |
curl --request POST \
--url 'https://taplanding.com/api/domains' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=domain.com' \
--form 'custom_index_url=https://mywebsite.com/' \
--form 'custom_not_found_url=https://mywebsite.com/404-page'
--url 'https://taplanding.com/api/domains' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=domain.com' \
--form 'custom_index_url=https://mywebsite.com/' \
--form 'custom_not_found_url=https://mywebsite.com/404-page'
{ "data": { "id": 1 } }
POST https://taplanding.com/api/domains/{domain_id}
Параметрлер | Егжей-тегжейлер | Сипаттама |
---|---|---|
host | Міндетті емес Жолақ | - |
custom_index_url | Міндетті емес Жолақ | - |
custom_not_found_url | Міндетті емес Жолақ | - |
curl --request POST \
--url 'https://taplanding.com/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=domain.com' \
--url 'https://taplanding.com/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=domain.com' \
{ "data": { "id": 1 } }
DELETE https://taplanding.com/api/domains/{domain_id}
curl --request DELETE \
--url 'https://taplanding.com/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://taplanding.com/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \