دامین های دلخواه
GET https://qr32test.rbsrv.in/api/domains/
curl --request GET \
--url 'https://qr32test.rbsrv.in/api/domains/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qr32test.rbsrv.in/api/domains/' \
--header 'Authorization: Bearer {api_key}' \
| پارامتر ها | جزئیات | توضیحات |
|---|---|---|
| page | اختیاری Integer | شماره صفحه ای که می خواهید از آن نتیجه بگیرید. پیشفرض 1 است. |
| results_per_page | اختیاری Integer | در هر صفحه چند نتیجه می خواهید. مقادیر مجاز عبارتند از: 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": "2025-11-08 08:43:10"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://qr32test.rbsrv.in/api/domains?&page=1",
"last": "https://qr32test.rbsrv.in/api/domains?&page=1",
"next": null,
"prev": null,
"self": "https://qr32test.rbsrv.in/api/domains?&page=1"
}
}
GET https://qr32test.rbsrv.in/api/domains/{domain_id}
curl --request GET \
--url 'https://qr32test.rbsrv.in/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qr32test.rbsrv.in/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": "2025-11-08 08:43:10"
}
}
POST https://qr32test.rbsrv.in/api/domains
| پارامتر ها | جزئیات | توضیحات |
|---|---|---|
| host | اجباری String | - |
| custom_index_url | اختیاری String | - |
| custom_not_found_url | اختیاری String | - |
curl --request POST \
--url 'https://qr32test.rbsrv.in/api/domains' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=example.com' \
--form 'custom_index_url=https://example.com/' \
--form 'custom_not_found_url=https://example.com/404-page'
--url 'https://qr32test.rbsrv.in/api/domains' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=example.com' \
--form 'custom_index_url=https://example.com/' \
--form 'custom_not_found_url=https://example.com/404-page'
{
"data": {
"id": 1
}
}
POST https://qr32test.rbsrv.in/api/domains/{domain_id}
| پارامتر ها | جزئیات | توضیحات |
|---|---|---|
| host | اختیاری String | - |
| custom_index_url | اختیاری String | - |
| custom_not_found_url | اختیاری String | - |
curl --request POST \
--url 'https://qr32test.rbsrv.in/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=example.com' \
--url 'https://qr32test.rbsrv.in/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=example.com' \
{
"data": {
"id": 1
}
}
DELETE https://qr32test.rbsrv.in/api/domains/{domain_id}
curl --request DELETE \
--url 'https://qr32test.rbsrv.in/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qr32test.rbsrv.in/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \