RU: Эта документация предназначена для предоставления всей информации, необходимой для работы с нашим API.
UZ: Ushbu hujjat API bilan ishlash uchun barcha kerakli ma'lumotlarni taqdim etishga qaratilgan.
To authenticate requests, include an Authorization header with the value "Bearer {YOUR_BEARER_TOKEN}".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
Получение токен через авторизация на сайте.
const url = new URL(
"https://1anketa.uz/api/promotion/add"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "Aksiya",
"description": "...",
"image": "\/storage\/image.jpg",
"start_date": "2022-04-01 00:00:00",
"end_date": "2022-05-01 00:00:00"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/promotion/update"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"name": "Aksiya",
"description": "...",
"image": "\/storage\/image.jpg",
"start_date": "2022-04-01 00:00:00",
"end_date": "2022-05-01 00:00:00"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Aksiya ID.
const url = new URL(
"https://1anketa.uz/api/promotion/get/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/promotion/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"name": "Pro..."
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/add"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"branch_id": 1,
"client_id": 1,
"family_status_id": 1,
"work_activity_id": 1,
"work_position": "Lake Lilyborough",
"count_child": 14,
"education_level_id": 1,
"experience": 8,
"salary": 15750890,
"period": "12",
"phones": {
"main": 998001002030,
"additional": []
},
"addresses": {
"birth": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
},
"residence": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
},
"registration": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
}
},
"cards": [
{
"id": 1,
"status": 2,
"number": "1234123412341234",
"expire": "1226"
}
],
"client_files": {
"face": "https:\/\/xidea.uz\/face.jpg",
"passport": "https:\/\/xidea.uz\/passport.jpg",
"passport_selfie": "https:\/\/xidea.uz\/passport_selfie.jpg",
"passport_address": "https:\/\/xidea.uz\/passport_address.jpg",
"registration": "https:\/\/xidea.uz\/registration.jpg",
"married_divorced": "https:\/\/xidea.uz\/married_divorced.jpg",
"product_contract": "https:\/\/xidea.uz\/product_contract.jpg",
"client_product": "https:\/\/xidea.uz\/client_product.jpg",
"reject_document": "https:\/\/xidea.uz\/reject_document.jpg",
"merchant_sign": "https:\/\/xidea.uz\/merchant_sign.jpg",
"client_sign": "https:\/\/xidea.uz\/client_sign.jpg"
},
"products": [
{
"sku": 1,
"buh_name": "ABC12345",
"imei": [
"1234567890",
"1234567891",
"1234567892"
],
"is_env_friendly": false,
"is_markable": "abc",
"catalog_code": "gvbwrbqsfojlnadwvlyq"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
face: yuz rasmi [1, 2, 3]
passport: pasport [1, 3]
passport_selfie: pasport selfi [1, 3]
passport_address: pasport manzili [1, 3]
registration: propiska hujjati (ID karta uchun) [1, 3]
married_divorced: turmush qurgan, ajrashgan [1, 3]
product_contract: mahsulot shartnomasi [1, 2, 3]
client_product: Mijozning mahsulot bilan tushgan rasmi [1, 2, 3]
reject_document: Arizani bekor qilish uchun fayl (integratsiya vaqtida yuklanadi) [1, 2, 3]
merchant_sign: Shartnoma uchun xodim imzosi [1, 3]
client_sign: Shartnoma uchun mijoz imzosi [1, 3]
const url = new URL(
"https://1anketa.uz/api/application/add_photo"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"type": "passport",
"url": "\/uploads\/image.jpg",
"order": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
ClientFile ID.
const url = new URL(
"https://1anketa.uz/api/application/delete_photo"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"image_id": [
1554
]
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/update"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"branch_id": 1,
"family_status_id": 1,
"work_activity_id": 1,
"work_position": "Lake Lilyborough",
"count_child": 14,
"education_level_id": 1,
"experience": 8,
"salary": 15750890,
"period": "12",
"phones": {
"main": 998001002030,
"additional": []
},
"addresses": {
"birth": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
},
"residence": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
},
"registration": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
}
},
"cards": [
{
"id": 1,
"status": 2,
"number": "1234123412341234",
"expire": "1226"
}
],
"client_files": {
"face": "https:\/\/xidea.uz\/face.jpg",
"passport": "https:\/\/xidea.uz\/passport.jpg",
"passport_selfie": "https:\/\/xidea.uz\/passport_selfie.jpg",
"passport_address": "https:\/\/xidea.uz\/passport_address.jpg",
"registration": "https:\/\/xidea.uz\/registration.jpg",
"married_divorced": "https:\/\/xidea.uz\/married_divorced.jpg",
"product_contract": "https:\/\/xidea.uz\/product_contract.jpg",
"client_product": "https:\/\/xidea.uz\/client_product.jpg",
"reject_document": "https:\/\/xidea.uz\/reject_document.jpg",
"merchant_sign": "https:\/\/xidea.uz\/merchant_sign.jpg",
"client_sign": "https:\/\/xidea.uz\/client_sign.jpg"
},
"products": [
{
"sku": 1,
"buh_name": "ABC12345",
"imei": [
"1234567890",
"1234567891",
"1234567892"
],
"is_env_friendly": false,
"is_markable": "abc",
"catalog_code": "rntypkgkaemkwqndk"
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/update_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"phones": {
"main": 998001002030,
"additional": []
},
"addresses": {
"birth": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
},
"residence": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
},
"registration": {
"region_id": 1,
"district_id": 1,
"street": "WallStreet",
"house": "10 a",
"apartment": 100,
"address": "WallStreet 10-a 22, USA, New-York"
}
},
"cards": [
{
"id": 1,
"status": 2,
"number": "1234123412341234",
"expire": "1226"
}
],
"products": [
{
"sku": 1,
"buh_name": "ABC12345",
"imei": [
"1234567890",
"1234567891",
"1234567892"
],
"is_env_friendly": false,
"is_markable": "abc",
"catalog_code": "yogy"
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/update_products"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"products": [
{
"sku": 1,
"buh_name": "ABC12345",
"imei": [
"1234567890",
"1234567891",
"1234567892"
],
"is_env_friendly": false,
"is_markable": "abc",
"catalog_code": "lofpnswievbknzmlwqcelux"
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/update_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 4,
"status": "-1"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
App ID
nullable Mobile uchun
const url = new URL(
"https://1anketa.uz/api/application/get/1"
);
const params = {
"for_mobile": "0",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Mijoz ID
const url = new URL(
"https://1anketa.uz/api/application/get_client_last_app/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
App ID [status=2]
const url = new URL(
"https://1anketa.uz/api/application/get_partner_application/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
App ID [status=4]
const url = new URL(
"https://1anketa.uz/api/application/get_success_partner/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"id": 1,
"user_id": 1,
"branch_id": 1,
"client_id": 1,
"client_pinfl": "...123...",
"client_name": "Jho...",
"for_mobile": false,
"client_dashboard": false,
"exel": false,
"start_date": "2023-11-17",
"end_date": "2074-06-08",
"partner_id": 10
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/change_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"status": 2,
"comment": "comment..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
App ID
const url = new URL(
"https://1anketa.uz/api/application/rollback/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
App ID
const url = new URL(
"https://1anketa.uz/api/application/clone/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Anketa ID
Hamkor ID
const url = new URL(
"https://1anketa.uz/api/application/log/1/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application/product/update"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 15,
"is_markable": "skl-wl_.->dso,kden02"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the app.
const url = new URL(
"https://1anketa.uz/api/application/product/products/883"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the app.
const url = new URL(
"https://1anketa.uz/api/anor/start/voluptas"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the test.
const url = new URL(
"https://1anketa.uz/api/test/id"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"message": "Unable to create lockable file: /var/www/1anketa/storage/framework/cache/data/44/d1/44d142505dd1a3b497197e2f459d2aec779e9ed6. Please ensure you have permission to create files in this location.",
"exception": "Exception",
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Filesystem/LockableFile.php",
"line": 73,
"trace": [
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Filesystem/LockableFile.php",
"line": 43,
"function": "createResource",
"class": "Illuminate\\Filesystem\\LockableFile",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Cache/FileStore.php",
"line": 101,
"function": "__construct",
"class": "Illuminate\\Filesystem\\LockableFile",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Cache/Repository.php",
"line": 319,
"function": "add",
"class": "Illuminate\\Cache\\FileStore",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Cache/RateLimiter.php",
"line": 115,
"function": "add",
"class": "Illuminate\\Cache\\Repository",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php",
"line": 123,
"function": "hit",
"class": "Illuminate\\Cache\\RateLimiter",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php",
"line": 62,
"function": "handleRequest",
"class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 116,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 799,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 776,
"function": "runRouteWithinStack",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 740,
"function": "runRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 729,
"function": "dispatchToRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php",
"line": 190,
"function": "dispatch",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 141,
"function": "Illuminate\\Foundation\\Http\\{closure}",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php",
"line": 31,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php",
"line": 40,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php",
"line": 27,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php",
"line": 86,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php",
"line": 62,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\HandleCors",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php",
"line": 39,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\TrustProxies",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 116,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php",
"line": 165,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php",
"line": 134,
"function": "sendRequestThroughRouter",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 299,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 287,
"function": "callLaravelOrLumenRoute",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 92,
"function": "makeApiCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 45,
"function": "makeResponseCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 35,
"function": "makeResponseCallIfConditionsPass",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Extractor.php",
"line": 209,
"function": "__invoke",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Extractor.php",
"line": 166,
"function": "iterateThroughStrategies",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Extractor.php",
"line": 95,
"function": "fetchResponses",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/GroupedEndpoints/GroupedEndpointsFromApp.php",
"line": 124,
"function": "processRoute",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/GroupedEndpoints/GroupedEndpointsFromApp.php",
"line": 71,
"function": "extractEndpointsInfoFromLaravelApp",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/GroupedEndpoints/GroupedEndpointsFromApp.php",
"line": 49,
"function": "extractEndpointsInfoAndWriteToDisk",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Commands/GenerateDocumentation.php",
"line": 51,
"function": "get",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php",
"line": 36,
"function": "handle",
"class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/Util.php",
"line": 41,
"function": "Illuminate\\Container\\{closure}",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php",
"line": 93,
"function": "unwrapIfClosure",
"class": "Illuminate\\Container\\Util",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php",
"line": 37,
"function": "callBoundMethod",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/Container.php",
"line": 661,
"function": "call",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Console/Command.php",
"line": 183,
"function": "call",
"class": "Illuminate\\Container\\Container",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Command/Command.php",
"line": 326,
"function": "execute",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Console/Command.php",
"line": 153,
"function": "run",
"class": "Symfony\\Component\\Console\\Command\\Command",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Application.php",
"line": 1063,
"function": "run",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Application.php",
"line": 320,
"function": "doRunCommand",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Application.php",
"line": 174,
"function": "doRun",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Console/Application.php",
"line": 102,
"function": "run",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php",
"line": 155,
"function": "run",
"class": "Illuminate\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/artisan",
"line": 37,
"function": "handle",
"class": "Illuminate\\Foundation\\Console\\Kernel",
"type": "->"
}
]
}
App ID
nullable Izoh
const url = new URL(
"https://1anketa.uz/api/application_product_request/send_request/1"
);
const params = {
"comment": "comment...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application_product_request/list_of_requests"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"client_pinfl": "...123...",
"client_name": "Jho..."
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/application_product_request/apply"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": 1,
"products": []
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
To'plam ID
const url = new URL(
"https://1anketa.uz/api/application_product_request/reject/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
App ID
Period
const url = new URL(
"https://1anketa.uz/api/application_product_request/apply_market_prices/1/6"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/outsider/came"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 1,
"name": "Ali Valiyev",
"purpose": "Dostavka"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/outsider/update"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"user_id": 1,
"name": "Ali Valiyev",
"purpose": "Dostavka"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/outsider/went"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"departure_time": "2023-06-22 13:00:00"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Bo'lim ID.
const url = new URL(
"https://1anketa.uz/api/outsider/get/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/outsider/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"query": "Jho...",
"user_id": 1,
"date_start": "2023-01-01 12:00:00",
"date_end": "2023-09-01 12:00:00",
"diff_start": 10,
"diff_end": 60
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/department/add"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"parent_id": 1,
"key": "manager",
"name": "Менеджер"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/department/update"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 2,
"parent_id": 1,
"key": "manager",
"name": "Менеджер"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Bo'lim ID.
const url = new URL(
"https://1anketa.uz/api/department/get/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/department/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"parent_id": 1,
"query": "Jho..."
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/department/set_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 2,
"status": 0
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
STIR/JShShIR
1-STIR (yur), 2-JShShIR, 3-STIR (jis)
const url = new URL(
"https://1anketa.uz/api/connect/get_by_tin/123456789/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/dashboard/main"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"date_start": "2022-01-01",
"date_end": "2022-01-01",
"exel": true,
"per_page": 25
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/dashboard/userBonus"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"start_date": "maxime",
"end_date": "2072-02-02"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/dashboard/app_step_log"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"start_date": "quibusdam",
"end_date": "1982-02-23",
"partner_id": "suscipit"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/dashboard/app_duration_log"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"start_date": "dolor",
"end_date": "1972-04-27"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/branch/select"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"name": "Yakk...",
"region_id": 1,
"id": 1
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"message": "Unable to create lockable file: /var/www/1anketa/storage/framework/cache/data/44/d1/44d142505dd1a3b497197e2f459d2aec779e9ed6. Please ensure you have permission to create files in this location.",
"exception": "Exception",
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Filesystem/LockableFile.php",
"line": 73,
"trace": [
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Filesystem/LockableFile.php",
"line": 43,
"function": "createResource",
"class": "Illuminate\\Filesystem\\LockableFile",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Cache/FileStore.php",
"line": 101,
"function": "__construct",
"class": "Illuminate\\Filesystem\\LockableFile",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Cache/Repository.php",
"line": 319,
"function": "add",
"class": "Illuminate\\Cache\\FileStore",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Cache/RateLimiter.php",
"line": 115,
"function": "add",
"class": "Illuminate\\Cache\\Repository",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php",
"line": 123,
"function": "hit",
"class": "Illuminate\\Cache\\RateLimiter",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php",
"line": 62,
"function": "handleRequest",
"class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 116,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 799,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 776,
"function": "runRouteWithinStack",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 740,
"function": "runRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
"line": 729,
"function": "dispatchToRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php",
"line": 190,
"function": "dispatch",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 141,
"function": "Illuminate\\Foundation\\Http\\{closure}",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php",
"line": 31,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php",
"line": 40,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php",
"line": 27,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php",
"line": 86,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php",
"line": 62,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\HandleCors",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php",
"line": 39,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 180,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\TrustProxies",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
"line": 116,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php",
"line": 165,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php",
"line": 134,
"function": "sendRequestThroughRouter",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 299,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 287,
"function": "callLaravelOrLumenRoute",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 92,
"function": "makeApiCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 45,
"function": "makeResponseCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Strategies/Responses/ResponseCalls.php",
"line": 35,
"function": "makeResponseCallIfConditionsPass",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Extractor.php",
"line": 209,
"function": "__invoke",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Extractor.php",
"line": 166,
"function": "iterateThroughStrategies",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Extracting/Extractor.php",
"line": 95,
"function": "fetchResponses",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/GroupedEndpoints/GroupedEndpointsFromApp.php",
"line": 124,
"function": "processRoute",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/GroupedEndpoints/GroupedEndpointsFromApp.php",
"line": 71,
"function": "extractEndpointsInfoFromLaravelApp",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/GroupedEndpoints/GroupedEndpointsFromApp.php",
"line": 49,
"function": "extractEndpointsInfoAndWriteToDisk",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/knuckleswtf/scribe/src/Commands/GenerateDocumentation.php",
"line": 51,
"function": "get",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php",
"line": 36,
"function": "handle",
"class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/Util.php",
"line": 41,
"function": "Illuminate\\Container\\{closure}",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php",
"line": 93,
"function": "unwrapIfClosure",
"class": "Illuminate\\Container\\Util",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php",
"line": 37,
"function": "callBoundMethod",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Container/Container.php",
"line": 661,
"function": "call",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Console/Command.php",
"line": 183,
"function": "call",
"class": "Illuminate\\Container\\Container",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Command/Command.php",
"line": 326,
"function": "execute",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Console/Command.php",
"line": 153,
"function": "run",
"class": "Symfony\\Component\\Console\\Command\\Command",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Application.php",
"line": 1063,
"function": "run",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Application.php",
"line": 320,
"function": "doRunCommand",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/symfony/console/Application.php",
"line": 174,
"function": "doRun",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Console/Application.php",
"line": 102,
"function": "run",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php",
"line": 155,
"function": "run",
"class": "Illuminate\\Console\\Application",
"type": "->"
},
{
"file": "/var/www/1anketa/artisan",
"line": 37,
"function": "handle",
"class": "Illuminate\\Foundation\\Console\\Kernel",
"type": "->"
}
]
}
const url = new URL(
"https://1anketa.uz/api/branch/add"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "Yakkasaroy",
"address": "Yakkasaroy Qushbegi",
"location": "https:\/\/location.com\/1",
"token": "abcd-1234",
"region_id": 1,
"phones": "71 111 22 33, 88 111 44 55",
"link": "wbzqzxxvxyzrwmmmebirlrmfpkpyxhecjlbktrmdxayfsmszaeqioddbzjwmhmsqzjjnoyoigngngcwcrtgla",
"info": "iste"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/branch/update"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"name": "Yakkasaroy",
"address": "Yakkasaroy Qushbegi",
"location": "https:\/\/location.com\/1",
"region_id": 1,
"phones": "71 111 22 33, 88 111 44 55",
"link": "atwrknyysrxqgtvozvzktheqhccntompvrqdqmm",
"info": "sequi"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
ID
const url = new URL(
"https://1anketa.uz/api/branch/get/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/branch/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"name": "Yakk...",
"region_id": 1,
"id": 1
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
ID
const url = new URL(
"https://1anketa.uz/api/branch/delete/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/branch/recovery"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"ids": [
16
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the photo.
const url = new URL(
"https://1anketa.uz/api/branch/delete/photo/et"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/forms/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/forms/set_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"status": 0
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/forms/save_partner_form_items"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"form_items": [
17
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/add"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"tin": 123456789,
"name": "OOO BEST PARTNER",
"account": "20212300121231010",
"address": "New York, st. Partners",
"mfo": "00020",
"director": "Jhon Doe",
"image": "https:\/\/ourwebsite.com\/partner_logo.jpg",
"is_markable": 1,
"age": 21
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/update"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"tin": 123456789,
"name": "OOO BEST PARTNER",
"account": "20212300121231010",
"address": "New York, st. Partners",
"mfo": "00020",
"director": "Jhon Doe",
"image": "https:\/\/ourwebsite.com\/partner_logo.jpg",
"is_markable": 1,
"age": 21
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
ID
const url = new URL(
"https://1anketa.uz/api/partner/get/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"priority": 1,
"tin": "305...",
"name": "OOO B...",
"account": "20200...",
"mfo": "...025",
"director": "Jhon D..."
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/set_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"status": 1
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/set_priority"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"priority": 1
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/period/save"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"periods": [
"et"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/card/sync"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 19,
"prefix_ids": [
4
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/partner/card/list/27516"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Hamkor ID
const url = new URL(
"https://1anketa.uz/api/forms/partner_form_items/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/anor_login_status/get"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/anor_login_status/set_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/country"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"country_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/education_level"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"education_level_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/family_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"family_status_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/nationality"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"nationality_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/region"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"region_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/district"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"district_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/work_activity"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"work_activity_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/product_category"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"product_category_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/relation"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"relation_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/branch"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"partner_id": 1,
"data": [
{
"branch_id": 1,
"partner_item_id": "abcd-1234"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/country/list/aspernatur"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/education_level/list/labore"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/family_status/list/temporibus"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/nationality/list/tempora"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/region/list/vel"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/district/list/voluptatem"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/work_activity/list/hic"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/product_category/list/molestiae"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/relation/list/porro"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
The ID of the partner.
const url = new URL(
"https://1anketa.uz/api/bind/branch/list/animi"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/bind/tbc/new_category_list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/config/client_files"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/config/save_mobile_version"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"os_type": "iOS",
"version": "16.4",
"upload_id": 124
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/config/get_mobile_versions"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/menu/requests/count"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); const url = new URL(
"https://1anketa.uz/api/client/add"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pinfl": 12345678901234,
"name": "Jhon",
"surname": "Doe",
"patronymic": "...",
"birth_date": "1970-01-01",
"sex": 1,
"nationality_id": 1,
"lang": "uz",
"passport_series": "ZZ",
"passport_number": "1234567",
"passport_given": "Toshkent, Chilonzor IIB",
"passport_issue_date": "2020-01-01",
"passport_expire_date": "2030-01-01",
"is_pensioner": 0,
"has_green_card": 0
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Mijoz ID
const url = new URL(
"https://1anketa.uz/api/client/update/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pinfl": 12345678901234,
"name": "Jhon",
"surname": "Doe",
"patronymic": "...",
"birth_date": "1970-01-01",
"sex": 1,
"nationality_id": 1,
"lang": "uz",
"passport_series": "ZZ",
"passport_number": "1234567",
"passport_given": "Toshkent, Chilonzor IIB",
"passport_issue_date": "2020-01-01",
"passport_expire_date": "2030-01-01",
"is_pensioner": 0,
"has_green_card": 0
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Mijoz ID
const url = new URL(
"https://1anketa.uz/api/client/get/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/client/list"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"page": 1,
"per_page": 10,
"order_by": "id",
"order_direction": "asc",
"status": 1,
"query": "Jho...",
"pinfl": "...32131...",
"id": 1,
"name": "Jho...",
"nationality_id": 1,
"lang": "uz"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Mijoz ID
const url = new URL(
"https://1anketa.uz/api/client/delete/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/client/recovery"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"ids": [
4
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/client/save_option"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"key": "mrz",
"value": "P<BLAH<BLAH<<<...."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/directory/work_activities"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/directory/family_statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/directory/regions"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/directory/relation_degrees"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/directory/conditions"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/directory/cancel_reasons"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/create_client"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/verify_client"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/check_client_agreement"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/request_client_agreement"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/agree_client_agreement"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/store_passport"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/send_files"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/add_card"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/confirm_card"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "123456"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/add_phones"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/questionnaire"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/change_add_card"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/change_add_phones"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/client_info"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/application_info"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/create_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"condition_id": 1,
"condition_period": 12,
"prepayment": 0,
"first_payment_date": "2023-27-01",
"store_type": "2023-27-01"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/request_approval"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/get_contract_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/verify_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/confirm_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "1111",
"close_without_signature": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/send_sign"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"merchant_sign": "https:\/\/oursite.com\/merchant_sign.png",
"client_sign": "https:\/\/oursite.com\/client_sign.png"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/cancel_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"cancel_reason_id": 1,
"cancel_reason_message": "reject comment"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Ariza identifikatori
const url = new URL(
"https://1anketa.uz/api/partner/111111111/get_contract/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Ariza identifikatori
const url = new URL(
"https://1anketa.uz/api/partner/111111111/get_limit/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Ariza identifikatori
const url = new URL(
"https://1anketa.uz/api/partner/111111111/get_comments/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); const url = new URL(
"https://1anketa.uz/api/partner/111111111/send_files"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/add_card"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/cancel_request_approval"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/send_product"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": false
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/111111111/request_review"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"retry_sms": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/directory/family_statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/directory/education_levels"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/directory/regions"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/directory/relation_degrees"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
get_status API sidan statusni bilib turish uchun foydalanib tursa bo'ladi.
const url = new URL(
"https://1anketa.uz/api/partner/333333333/pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/get_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/get_client_info"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/verify"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/confirm"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/resend_sms"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/send_cards"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/confirm_card"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/send_additional_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"employment_category": 1,
"organization_type": 1,
"position": 1,
"additional_income": 1,
"self_employed": 200000
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/get_scoring_result"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/send_decision"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"period": 12
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/get_documents"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/send_scans"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/finish"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Ariza identifikatori
const url = new URL(
"https://1anketa.uz/api/partner/333333333/get_contract/1"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/333333333/cancel_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"reject_reason_message": "Reject comment..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/resend_sms"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/confirm_pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "123456"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/get_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/send_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/limit"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/pay"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/confirm_pay"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/send_address"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/201053901/cancel_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"url": "https:\/\/oursite.com\/reject_document.jpg",
"reject_reason_message": "Reject comment..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/310123822/scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/310123822/basket"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 19,
"month": 19
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/family_statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"text": "abc...",
"return_ours": 1
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/education_levels"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"text": "abc...",
"return_ours": 1
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/regions"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"text": "abc...",
"return_ours": 1
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Viloyat ID
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/districts/1a2b3c"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/agent_recommendations"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/preliminary_category"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/relation_degrees"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/client_reject_reasons"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/products_categories"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"text": "abc...",
"return_ours": 1
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/work_activities"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/directory/branches"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"first_payment_date": 10,
"retry": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/send_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"otp_value": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/resend_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/confirm_pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"svgate_code": "1234ab"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/get_limit"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/send_data/send-sms"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/retry_sms"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/confirm_card_otp"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "123456"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/customer_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"agent_recommendation": {
"guid": "1234-abcd",
"label": "Label Agent..."
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/customer-data/resend-sms"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/get_offers"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/accept_offer"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"offer_id": "abcd-1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/confirm_sign_contract_otp"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/send_signed_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"url": "https:\/\/oursite.com\/passport_selfie_contract.jpg"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/get_otp_state"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"external_id": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/add_card"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/create_application"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/agreement_agree"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/disburse_installment"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"url": "https:\/\/oursite.com\/passport_selfie_contract.jpg"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/finish"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/222222222/cancel_loan"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"client_reject_reason_id": "1234-abcd",
"reject_reason_message": "Reject comment..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/callback"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/family_statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/education_levels"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/regions"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Viloyat ID
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/districts/1a2b3c"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/agent_recommendations"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/preliminary_category"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/relation_degrees"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/client_reject_reasons"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/products_categories"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/work_activities"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/directory/branches"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"first_payment_date": 10,
"retry": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/send_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"otp_value": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/resend_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/confirm_pre_scoring"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"svgate_code": "1234ab"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/send_data_send_sms"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/get_limit"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/customer_data"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"agent_recommendation": {
"guid": "1234-abcd",
"label": "Label Agent..."
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/get_offers"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/accept_offer"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"offer_id": "abcd-1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/contract_otp"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/customer_data_resend_sms"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/send_signed_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/check_iframe"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"external_id": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/add_card"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/create_application"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/agreement_agree"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/disburse_installment"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/release_loan"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/306776074/cancel_loan"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"client_reject_reason_id": "1234-abcd",
"reject_reason_message": "Reject comment..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/308349548/directory/products_categories"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Statuslar:
const url = new URL(
"https://1anketa.uz/api/partner/308349548/check_status"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/308349548/create_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"period": 12
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/308349548/confirm_contract_client"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"sms_code": "1234"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/308349548/confirm_contract_vendor"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/308349548/send_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"url": "\/uploads\/product_contract.jpg"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/308349548/send_client_photo"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"url": "\/uploads\/client_product.jpg"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
const url = new URL(
"https://1anketa.uz/api/partner/308349548/cancel_contract"
);
const headers = {
"Authorization": "Bearer {YOUR_BEARER_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json()); cache-control
: no-cache, private
content-type
: application/json
access-control-allow-origin
: *
{
"errors": [
{
"message": "Войдите, чтобы использовать систему!"
}
]
}
Headers