Edits history of script submission #17982 for ' Get one product (pipedrive)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Pipedrive = {
      apiToken: string;
    };
    /**
     * Get one product
     * Returns data about a specific product.
     */
    export async function main(auth: Pipedrive, id: string) {
      const url = new URL(`https://api.pipedrive.com/api/v2/products/${id}`);
    
      const response = await fetch(url, {
        method: "GET",
        headers: {
          "x-api-token": auth.apiToken,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 235 days ago