Edits history of script submission #225 for ' Remove Contact From List (sendgrid)'

  • deno
    import sendgrid from "npm:@sendgrid/client@^7.7.0";
    
    /**
     * @param contact_ids Important: contact IDs are not email addresses.
     */
    type Sendgrid = {
      token: string;
    };
    export async function main(
      api_token: Sendgrid,
      list_id: string,
      contact_ids: string[],
    ) {
      sendgrid.setApiKey(api_token.token);
    
      const request = {
        url: `/v3/marketing/lists/${list_id}/contacts`,
        method: "DELETE",
        qs: {
          contact_ids: contact_ids?.join(",") || "",
        },
      };
    
      try {
        const [_, body] = await sendgrid.request(request);
        return body;
      } catch (error) {
        throw Error("\n" + JSON.stringify(error?.response?.body || error));
      }
    }
    

    Submitted by hugo697 395 days ago

  • deno
    import sendgrid from "npm:@sendgrid/client@^7.7.0";
    
    /**
     * @param contact_ids Important: contact IDs are not email addresses.
     */
    type Sendgrid = {
      token: string;
    };
    export async function main(
      api_token: Sendgrid,
      list_id: string,
      contact_ids: string[],
    ) {
      sendgrid.setApiKey(api_token.token);
    
      const request = {
        url: `/v3/marketing/lists/${list_id}/contacts`,
        method: "DELETE",
        qs: {
          contact_ids: contact_ids?.join(",") || "",
        },
      };
    
      try {
        const [_, body] = await sendgrid.request(request);
        return body;
      } catch (error) {
        throw Error("\n" + JSON.stringify(error?.response?.body || error));
      }
    }
    

    Submitted by admin 1028 days ago

  • deno
    import sendgrid from "npm:@sendgrid/client@^7.7.0"
    
    /**
     * @param contact_ids Important: contact IDs are not email addresses.
     */
    type Sendgrid = {
      token: string;
    };
    export async function main(
      api_token: Sendgrid,
      list_id: string,
      contact_ids: string[],
    ) {
      sendgrid.setApiKey(api_token.token)
    
      const request = {
        url: `/v3/marketing/lists/${list_id}/contacts`,
        method: 'DELETE',
        qs: {
          contact_ids: contact_ids?.join(',') || ''
        }
      }
    
      try {
        const [_, body] = await sendgrid.request(request)
        return body
      } catch (error) {
        throw Error('\n' + (JSON.stringify(error?.response?.body || error)))
      }
    }
    

    Submitted by admin 1031 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts"
    import sendgrid from "npm:@sendgrid/client@^7.7.0"
    
    /**
     * @param contact_ids Important: contact IDs are not email addresses.
     */
    export async function main(
      api_token: wmill.Resource<"sendgrid">,
      list_id: string,
      contact_ids: string[],
    ) {
      sendgrid.setApiKey(api_token.token)
    
      const request = {
        url: `/v3/marketing/lists/${list_id}/contacts`,
        method: 'DELETE',
        qs: {
          contact_ids: contact_ids?.join(',') || ''
        }
      }
    
      try {
        const [_, body] = await sendgrid.request(request)
        return body
      } catch (error) {
        throw Error('\n' + (JSON.stringify(error?.response?.body || error)))
      }
    }
    

    Submitted by adam186 1159 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts"
    import sendgrid from "npm:@sendgrid/client@^7.7.0"
    
    /**
     * @param contact_ids Important: contact IDs are not email addresses.
     */
    export async function main(
      api_token: wmill.Resource<"sendgrid">,
      list_id: string,
      contact_ids: string[],
    ) {
      sendgrid.setApiKey(api_token.token)
    
      const request = {
        url: `/v3/marketing/lists/${list_id}/contacts`,
        method: 'DELETE',
        qs: {
          contact_ids: contact_ids?.join(',') || ''
        }
      }
    
      try {
        const [_, body] = await sendgrid.request(request)
        return body
      } catch (error) {
        throw Error('\n' + (JSON.stringify(error?.response?.body || error)))
      }
    }
    

    Submitted by adam186 1194 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts"
    import sendgrid from "npm:@sendgrid/client@^7.7.0"
    
    /**
     * @param contact_ids Important: contact IDs are not email addresses.
     */
    export async function main(
      api_token: wmill.Resource<"sendgrid">,
      list_id: string,
      contact_ids: string[],
    ) {
      sendgrid.setApiKey(api_token.token)
    
      const request = {
        url: `/v3/marketing/lists/${list_id}/contacts`,
        method: 'DELETE',
        qs: {
          contact_ids: contact_ids?.join(',') || ''
        }
      }
    
      try {
        const [_, body] = await sendgrid.request(request)
        return body
      } catch (error) {
        throw Error('\n' + (JSON.stringify(error?.response?.body || error)))
      }
    }
    

    Submitted by adam186 1282 days ago