amazon_spapi/apis/
tokens_2021_03_01.rs

1/*
2 * Selling Partner API for Tokens 
3 *
4 * The Selling Partner API for Tokens provides a secure way to access a customer's PII (Personally Identifiable Information). You can call the Tokens API to get a Restricted Data Token (RDT) for one or more restricted resources that you specify. The RDT authorizes subsequent calls to restricted operations that correspond to the restricted resources that you specified.  For more information, see the [Tokens API Use Case Guide](doc:tokens-api-use-case-guide).
5 *
6 * The version of the OpenAPI document: 2021-03-01
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 [`create_restricted_data_token`]
19#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum CreateRestrictedDataTokenError {
22    Status400(models::tokens_2021_03_01::ErrorList),
23    Status401(models::tokens_2021_03_01::ErrorList),
24    Status403(models::tokens_2021_03_01::ErrorList),
25    Status404(models::tokens_2021_03_01::ErrorList),
26    Status415(models::tokens_2021_03_01::ErrorList),
27    Status429(models::tokens_2021_03_01::ErrorList),
28    Status500(models::tokens_2021_03_01::ErrorList),
29    Status503(models::tokens_2021_03_01::ErrorList),
30    UnknownValue(serde_json::Value),
31}
32
33
34/// Returns a Restricted Data Token (RDT) for one or more restricted resources that you specify. A restricted resource is the HTTP method and path from a restricted operation that returns Personally Identifiable Information (PII), plus a dataElements value that indicates the type of PII requested. See the Tokens API Use Case Guide for a list of restricted operations. Use the RDT returned here as the access token in subsequent calls to the corresponding restricted operations.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 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 create_restricted_data_token(configuration: &configuration::Configuration, body: models::tokens_2021_03_01::CreateRestrictedDataTokenRequest) -> Result<models::tokens_2021_03_01::CreateRestrictedDataTokenResponse, Error<CreateRestrictedDataTokenError>> {
36    // add a prefix to parameters to efficiently prevent name collisions
37    let p_body = body;
38
39    let uri_str = format!("{}/tokens/2021-03-01/restrictedDataToken", configuration.base_path);
40    let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
41
42    if let Some(ref user_agent) = configuration.user_agent {
43        req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
44    }
45    req_builder = req_builder.json(&p_body);
46
47    let req = req_builder.build()?;
48    let resp = configuration.client.execute(req).await?;
49
50    let status = resp.status();
51    let content_type = resp
52        .headers()
53        .get("content-type")
54        .and_then(|v| v.to_str().ok())
55        .unwrap_or("application/octet-stream");
56    let content_type = super::ContentType::from(content_type);
57
58    if !status.is_client_error() && !status.is_server_error() {
59        let content = resp.text().await?;
60        match content_type {
61            ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
62            ContentType::Text => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::tokens_2021_03_01::CreateRestrictedDataTokenResponse`"))),
63            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::tokens_2021_03_01::CreateRestrictedDataTokenResponse`")))),
64        }
65    } else {
66        let content = resp.text().await?;
67        let entity: Option<CreateRestrictedDataTokenError> = serde_json::from_str(&content).ok();
68        Err(Error::ResponseError(ResponseContent { status, content, entity }))
69    }
70}
71