Integrated Supplier Setting
list
GET /api/v2/integrated-suppliers/1/settings HTTP/1.1
Parameter | Description |
---|---|
|
Id поставщика |
HTTP/1.1 200 OK
[ {
"integratedSupplierId" : 1,
"legalEntity" : {
"id" : 1,
"shortName" : "ИП Валеева Людмила Александровна"
},
"companyName" : "test",
"supplierEmail" : "test@test.com",
"additionalSupplierEmail" : "test@test.com",
"confirmationEmail" : "test@test.com",
"clientUid" : "test",
"organizationUid" : "test"
} ]
Path | Type | Description |
---|---|---|
|
|
Название компании |
|
|
Имя поставщика |
|
|
Доп. почта |
|
|
Почта для подтверждения |
|
|
Uid клиента |
|
|
Uid организации |
get
GET /api/v2/integrated-suppliers/1/legal-entities/1/settings HTTP/1.1
Parameter | Description |
---|---|
|
Id поставщика |
|
Id юрлица |
HTTP/1.1 200 OK
{
"integratedSupplierId" : 1,
"legalEntity" : {
"id" : 1,
"shortName" : "ИП Валеева Людмила Александровна"
},
"companyName" : "test",
"supplierEmail" : "test@test.com",
"additionalSupplierEmail" : "test@test.com",
"confirmationEmail" : "test@test.com",
"clientUid" : "test",
"organizationUid" : "test"
}
Path | Type | Description |
---|---|---|
|
|
Название компании |
|
|
Имя поставщика |
|
|
Доп. почта |
|
|
Почта для подтверждения |
|
|
Uid клиента |
|
|
Uid организации |
create
POST /api/v2/integrated-suppliers/2/legal-entities/1/settings HTTP/1.1
{
"companyName" : "test",
"supplierEmail" : "test@test.com",
"additionalSupplierEmail" : "test@test.com",
"confirmationEmail" : "test@test.com",
"clientUid" : "test",
"organizationUid" : "test"
}
Parameter | Description |
---|---|
|
Id поставщика |
|
Id юрлица |
HTTP/1.1 200 OK
update
PUT /api/v2/integrated-suppliers/1/legal-entities/1/settings HTTP/1.1
{
"companyName" : "test",
"supplierEmail" : "test@test.com",
"additionalSupplierEmail" : "test@test.com",
"confirmationEmail" : "test@test.com",
"clientUid" : "test",
"organizationUid" : "test"
}
Parameter | Description |
---|---|
|
Id поставщика |
|
Id юрлица |
Path | Type | Description | Constraints |
---|---|---|---|
companyName |
String |
Название компании |
Size must be between 0 and 100 inclusive |
supplierEmail |
String |
Имя поставщика |
Size must be between 0 and 320 inclusive |
additionalSupplierEmail |
String |
Доп. почта |
Size must be between 0 and 320 inclusive |
confirmationEmail |
String |
Почта для подтверждения |
Size must be between 0 and 320 inclusive |
clientUid |
String |
Uid клиента |
Must not be blank. |
organizationUid |
String |
Uid организации |
Size must be between 0 and 2000 inclusive |
HTTP/1.1 200 OK