Edits history of script submission #22705 for ' List Mega Signs (adobe_acrobat_sign)'

  • bunnative
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    
    async function apiBase(auth: RT.AdobeAcrobatSign): Promise<string> {
      if (auth.base_uri) return auth.base_uri.replace(/\/+$/, "")
      const r = await fetch("https://api.adobesign.com/api/rest/v6/baseUris", {
        headers: {
          Authorization: `Bearer ${auth.token}`,
          Accept: "application/json",
        },
      })
      if (!r.ok) throw new Error(`${r.status} ${await r.text()}`)
      const { apiAccessPoint } = (await r.json()) as { apiAccessPoint: string }
      return apiAccessPoint.replace(/\/+$/, "")
    }
    
    /**
     * List Mega Signs
     * List the MegaSign (bulk send) parent agreements visible to the user.
     */
    export async function main(
      auth: RT.AdobeAcrobatSign,
      cursor: string | undefined,
      page_size: number | undefined
    ) {
      const base = await apiBase(auth)
      const url = new URL(`${base}/api/rest/v6/megaSigns`)
      for (const [k, v] of [
        ["cursor", cursor],
        ["pageSize", page_size],
      ] as const) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, String(v))
        }
      }
    
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: `Bearer ${auth.token}`,
          Accept: "application/json",
        },
      })
    
      if (!response.ok) {
        throw new Error(`${response.status} ${await response.text()}`)
      }
    
      return await response.json()
    }
    

    Submitted by hugo989 5 days ago