amazon_spapi/apis/
update_inventory_api.rs

1/*
2 * Selling Partner API for Direct Fulfillment Inventory Updates
3 *
4 * The Selling Partner API for Direct Fulfillment Inventory Updates provides programmatic access to a direct fulfillment vendor's inventory updates.
5 *
6 * The version of the OpenAPI document: v1
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12use reqwest;
13use serde::{Deserialize, Serialize, de::Error as _};
14use crate::{apis::ResponseContent, models};
15use super::{Error, configuration, ContentType};
16
17
18/// struct for typed errors of method [`submit_inventory_update`]
19#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum SubmitInventoryUpdateError {
22    Status400(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
23    Status403(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
24    Status404(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
25    Status413(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
26    Status415(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
27    Status429(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
28    Status500(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
29    Status503(models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse),
30    UnknownValue(serde_json::Value),
31}
32
33
34/// Submits inventory updates for the specified warehouse for either a partial or full feed of inventory items.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 10 | 10 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
35pub async fn submit_inventory_update(configuration: &configuration::Configuration, warehouse_id: &str, body: models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateRequest) -> Result<models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse, Error<SubmitInventoryUpdateError>> {
36    // add a prefix to parameters to efficiently prevent name collisions
37    let p_warehouse_id = warehouse_id;
38    let p_body = body;
39
40    let uri_str = format!("{}/vendor/directFulfillment/inventory/v1/warehouses/{warehouseId}/items", configuration.base_path, warehouseId=crate::apis::urlencode(p_warehouse_id));
41    let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
42
43    if let Some(ref user_agent) = configuration.user_agent {
44        req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
45    }
46    req_builder = req_builder.json(&p_body);
47
48    let req = req_builder.build()?;
49    let resp = configuration.client.execute(req).await?;
50
51    let status = resp.status();
52    let content_type = resp
53        .headers()
54        .get("content-type")
55        .and_then(|v| v.to_str().ok())
56        .unwrap_or("application/octet-stream");
57    let content_type = super::ContentType::from(content_type);
58
59    if !status.is_client_error() && !status.is_server_error() {
60        let content = resp.text().await?;
61        match content_type {
62            ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
63            ContentType::Text => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse`"))),
64            ContentType::Unsupported(unknown_type) => return Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `models::vendor_direct_fulfillment_inventory_v1::SubmitInventoryUpdateResponse`")))),
65        }
66    } else {
67        let content = resp.text().await?;
68        let entity: Option<SubmitInventoryUpdateError> = serde_json::from_str(&content).ok();
69        Err(Error::ResponseError(ResponseContent { status, content, entity }))
70    }
71}
72