-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathТарифы.json
More file actions
471 lines (471 loc) · 16.8 KB
/
Тарифы.json
File metadata and controls
471 lines (471 loc) · 16.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
{
"components": {
"headers": {
"X-RateLimit-Limit": {
"description": "Количество запросов в минуту",
"schema": {
"format": "int32",
"type": "integer"
}
},
"X-RateLimit-Remaining": {
"description": "Доступное количество запросов в текущем временном окне",
"schema": {
"format": "int32",
"type": "integer"
}
}
},
"parameters": {
"authHeader": {
"description": "Токен для авторизации",
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"example": "Bearer ACCESS_TOKEN",
"type": "string"
}
},
"pathItemId": {
"description": "Идентификатор объявления на сайте",
"in": "path",
"name": "item_id",
"required": true,
"schema": {
"format": "int64",
"type": "integer"
}
},
"pathUserId": {
"description": "Номер пользователя в Личном кабинете Авито",
"in": "path",
"name": "user_id",
"required": true,
"schema": {
"format": "int64",
"type": "integer"
}
},
"sourceHeader": {
"description": "Имя сервиса, отправляющего запрос",
"in": "header",
"name": "X-Source",
"required": true,
"schema": {
"example": "someName",
"type": "string"
}
}
},
"schemas": {
"TariffContract": {
"properties": {
"bonus": {
"description": "Количество бонусов на продвижение по тарифу",
"type": "integer"
},
"closeTime": {
"description": "Дата и время окончания в формате Unix time. Для неактивных тарифов значение поля будет null",
"example": 1616589821,
"type": "integer"
},
"isActive": {
"description": "Признак активности",
"example": true,
"type": "boolean"
},
"level": {
"description": "Уровень тарифа",
"example": "Тариф «Максимальный +»",
"type": "string"
},
"packages": {
"description": "Пакеты размещений, доступные в рамках тарифа",
"items": {
"$ref": "#/components/schemas/TariffContractPackage"
},
"type": "array"
},
"price": {
"description": "Стоимость тарифа",
"properties": {
"originalPrice": {
"description": "Цена тарифа без учёта скидки",
"type": "number"
},
"price": {
"description": "Цена тарифа со скидкой",
"type": "number"
}
},
"type": "object"
},
"startTime": {
"description": "Дата и время начала в формате Unix time",
"example": 1613997821,
"type": "integer"
}
}
},
"TariffContractPackage": {
"properties": {
"categories": {
"description": "Доступные категории для размещений из пакета",
"items": {
"properties": {
"name": {
"description": "Название категории",
"example": "Автомобили",
"type": "string"
},
"subCategories": {
"description": "Список выбранных подкатегорий.\nЕсли категория выбрана целиком, со всеми подкатегориями, здесь будет пустой массив.\n",
"items": {
"example": "С пробегом",
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"type": "array"
},
"locations": {
"description": "Доступные локации для размещений из пакета",
"items": {
"example": "Санкт-Петербург и Ленинградская область",
"type": "string"
},
"type": "array"
},
"priceConditions": {
"description": "Ценовая группа",
"items": {
"properties": {
"categoryName": {
"description": "Название ценовой группы",
"type": "string"
},
"originalPrice": {
"description": "Стоимость в ценовой группе без учёта скидки",
"type": "number"
},
"price": {
"description": "Стоимость в ценой группе со скидкой",
"type": "number"
},
"sort": {
"description": "Порядок сортировки ценовых групп",
"type": "integer"
},
"total": {
"description": "Количество размещений в ценовой группе",
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"remain": {
"description": "Оставшееся число размещений в пакете",
"type": "integer"
},
"total": {
"description": "Размер пакета",
"type": "integer"
}
},
"type": "object"
},
"TariffInfo": {
"description": "Информация по текущему и запланированному контракту",
"properties": {
"current": {
"$ref": "#/components/schemas/TariffContract"
},
"scheduled": {
"$ref": "#/components/schemas/TariffContract"
}
},
"type": "object"
},
"authError": {
"properties": {
"error": {
"properties": {
"code": {
"description": "Код ошибки",
"example": 401,
"format": "int32",
"type": "integer"
},
"message": {
"description": "Сообщение об ошибке",
"example": "Unauthorized",
"type": "string"
}
},
"required": [
"code",
"message"
],
"type": "object"
}
},
"type": "object"
},
"notFoundError": {
"properties": {
"error": {
"properties": {
"code": {
"description": "Код ошибки",
"example": 404,
"format": "int32",
"type": "integer"
},
"message": {
"description": "Сообщение об ошибке",
"example": "Not found",
"type": "string"
}
},
"required": [
"code",
"message"
],
"type": "object"
}
},
"type": "object"
},
"serviceError": {
"properties": {
"error": {
"properties": {
"code": {
"description": "Код ошибки",
"example": 500,
"format": "int32",
"type": "integer"
},
"message": {
"description": "Описание ошибки",
"example": "Error while processing request. Please, contact support",
"type": "string"
}
},
"required": [
"code",
"message"
],
"type": "object"
}
},
"type": "object"
}
},
"securitySchemes": {
"AuthorizationCode": {
"description": "Это API использует OAuth 2 с механизмом authorization_code. Используйте его для доступа к данным других пользователей при разработке стороннего приложения. [Подробнее](/api-catalog/auth/documentation#tag/ApplicationAccess)",
"flows": {
"authorizationCode": {
"authorizationUrl": "https://avito.ru/oauth",
"scopes": {
"autoload:reports": "Получение отчетов Автозагрузки",
"items:apply_vas": "Применение дополнительных услуг",
"items:info": "Получение информации об объявлениях",
"job:applications": "Получение информации об откликах на вакансии",
"job:cv": "Получение информации резюме",
"job:write": "Изменение объявлений вертикали Работа",
"messenger:read": "Чтение сообщений в мессенджере Авито",
"messenger:write": "Модифицирование сообщений в мессенджере Авито",
"short_term_rent:read": "Получение информации об объявлениях краткосрочной аренды",
"short_term_rent:write": "Изменение объявлений краткосрочной аренды",
"stats:read": "Получение статистики объявлений",
"user:read": "Получение информации о пользователе",
"user_balance:read": "Получение баланса пользователя",
"user_operations:read": "Получение истории операций пользователя"
},
"tokenUrl": "https://api.avito.ru/token"
}
},
"type": "oauth2"
},
"ClientCredentials": {
"description": "Это API использует OAuth 2 с механизмом client_credentials. Используйте его для доступа к возможностям своей личной учетной записи. [Подробнее](#tag/Access)",
"flows": {
"clientCredentials": {
"scopes": {},
"tokenUrl": "https://api.avito.ru/token"
}
},
"type": "oauth2"
}
}
},
"info": {
"contact": {
"email": "supportautoload@avito.ru"
},
"description": "API для работы с тарифами в категории транспорт\n**Авито API для бизнеса предоставляется согласно [Условиям использования](https://www.avito.ru/legal/pro_tools/public-api).**\n<!-- ReDoc-Inject: <security-definitions> -->\n",
"title": "Тарифы",
"version": "1"
},
"openapi": "3.0.0",
"paths": {
"/tariff/info/1": {
"get": {
"description": "Получение информации по тарифу.\n\n**Внимание:** информация доступна только для тарифов в категории \"Транспорт\". **Тариф должен быть не \"СРА\"**\n",
"operationId": "getTariffInfo",
"responses": {
"200": {
"content": {
"application/json": {
"example": {
"current": {
"bonus": 34432,
"closeTime": 1616589821,
"isActive": true,
"level": "Тариф «Максимальный +»",
"packages": [
{
"categories": [
{
"name": "Автомобили",
"subCategories": [
"С пробегом"
]
}
],
"locations": [
"Санкт-Петербург и Ленинградская область"
],
"priceConditions": [
{
"categoryName": "От 500 000 до 1 000 000",
"originalPrice": 88001,
"price": 80200,
"sort": 1,
"total": 140
}
],
"remain": 105,
"total": 140
}
],
"price": {
"originalPrice": 128441,
"price": 114777
},
"startTime": 1613997821
},
"scheduled": {
"bonus": 36696,
"closeTime": null,
"isActive": false,
"level": "Тариф «Максимальный +»",
"packages": [
{
"categories": [
{
"name": "Автомобили",
"subCategories": [
"С пробегом"
]
}
],
"locations": [
"Санкт-Петербург и Ленинградская область"
],
"priceConditions": [
{
"categoryName": "От 500 000 до 1 000 000",
"originalPrice": 81000,
"price": 75200,
"sort": 1,
"total": 151
}
],
"remain": 151,
"total": 151
}
],
"price": {
"originalPrice": 137980,
"price": 122321
},
"startTime": 1616589821
}
},
"schema": {
"$ref": "#/components/schemas/TariffInfo"
}
}
},
"description": "Успешный ответ"
},
"401": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/authError"
}
}
},
"description": "Требуется аутентификация"
},
"404": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/notFoundError"
}
}
},
"description": "Тариф не найден"
},
"500": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/serviceError"
}
}
},
"description": "Внутренняя ошибка метода API"
}
},
"security": [
{
"ClientCredentials": []
}
],
"summary": "Информация по тарифу",
"tags": [
"Tariff"
]
},
"parameters": [
{
"$ref": "#/components/parameters/authHeader"
}
]
}
},
"servers": [
{
"url": "https://api.avito.ru/"
}
],
"tags": [
{
"description": "API для работы с Тарифами\n",
"name": "Tariff",
"x-displayName": "Tariff"
}
]
}