amazon_spapi/apis/
sellingpartners_api.rs1use reqwest;
13use serde::{Deserialize, Serialize, de::Error as _};
14use crate::{apis::ResponseContent, models};
15use super::{Error, configuration, ContentType};
16
17
18#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum GetSellingPartnerMetricsError {
22 Status400(models::replenishment_2022_11_07::ErrorList),
23 Status401(models::replenishment_2022_11_07::ErrorList),
24 Status403(models::replenishment_2022_11_07::ErrorList),
25 Status404(models::replenishment_2022_11_07::ErrorList),
26 Status413(models::replenishment_2022_11_07::ErrorList),
27 Status415(models::replenishment_2022_11_07::ErrorList),
28 Status429(models::replenishment_2022_11_07::ErrorList),
29 Status500(models::replenishment_2022_11_07::ErrorList),
30 Status503(models::replenishment_2022_11_07::ErrorList),
31 UnknownValue(serde_json::Value),
32}
33
34
35pub async fn get_selling_partner_metrics(configuration: &configuration::Configuration, body: Option<models::replenishment_2022_11_07::GetSellingPartnerMetricsRequest>) -> Result<models::replenishment_2022_11_07::GetSellingPartnerMetricsResponse, Error<GetSellingPartnerMetricsError>> {
37 let p_body = body;
39
40 let uri_str = format!("{}/replenishment/2022-11-07/sellingPartners/metrics/search", configuration.base_path);
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::replenishment_2022_11_07::GetSellingPartnerMetricsResponse`"))),
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::replenishment_2022_11_07::GetSellingPartnerMetricsResponse`")))),
65 }
66 } else {
67 let content = resp.text().await?;
68 let entity: Option<GetSellingPartnerMetricsError> = serde_json::from_str(&content).ok();
69 Err(Error::ResponseError(ResponseContent { status, content, entity }))
70 }
71}
72