Get Contact Lists ( sendgrid)
One script reply has been approved by the moderators Verified

Created by rubenanitaceballos 296 days ago Viewed 52 times 0 Points

No comments yet

Login to be able to comment
Points: 0
deno
One script reply has been approved by the moderators
Ap­pro­ved
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts"
import sendgrid from "npm:@sendgrid/client@^7.7.0"

/**
 * @param page_size Maximum number of elements to return. Defaults to 100, returns 1000 max.
 * 
 * @param page_token Token corresponding to a specific page of results.
 */
export async function main(
  api_token: wmill.Resource<"sendgrid">,
  page_size?: number,
  page_token?: number,
) {
  sendgrid.setApiKey(api_token.token)

  const request = {
  url: `/v3/marketing/lists`,
  method: 'GET',
  qs: {
    page_size,
    page_token
  }
}

  try {
    const [_, body] = await sendgrid.request(request)
    return body
  } catch (error) {
    throw Error('\n' + (JSON.stringify(error?.response?.body || error)))
  }
}

Submitted by adam186 117 days ago

Edited 29 days ago

No comments yet

Login to be able to comment