Wildberries API TypeScript SDK / <internal> / B2BInfoResult
Interface: B2BInfoResult
Defined in: types/orders-dbs.types.ts:226
B2B buyer information result
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
<a id="orderid"></a> orderId? | number | Order ID | types/orders-dbs.types.ts:228 |
<a id="iserror"></a> isError? | boolean | Whether an error occurred | types/orders-dbs.types.ts:230 |
<a id="data"></a> data? | { orgName?: string; inn?: string; kpp?: string; } | B2B buyer data (present if isError is false) | types/orders-dbs.types.ts:232 |
data.orgName? | string | Organization name | types/orders-dbs.types.ts:234 |
data.inn? | string | INN (Tax ID) | types/orders-dbs.types.ts:236 |
data.kpp? | string | KPP (may be empty for individual entrepreneurs) | types/orders-dbs.types.ts:238 |
<a id="errors"></a> errors? | { code?: number; detail?: string; }[] | Array of errors (present if isError is true) | types/orders-dbs.types.ts:241 |