Edits history of script submission #16584 for ' Get KObjects (custom objects) (kustomer)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Kustomer = {
      apiKey: string;
    };
    /**
     * Get KObjects (custom objects)
     * Retrieves a KObject (custom object) based on the Klass name.
    
    To learn more, see [Data Model Overview](https://support.kustomer.com/data-model-overview-SyIS1S3zM).
    
    Any one of the following roles is required for this endpoint:
    
    |Legacy Role|Equivalent Permission Set Role|
    |-----|--------|
    |org.user.klass.read|org.permission.klass.read|
    |org.admin.klass.read||
     */
    export async function main(
      auth: Kustomer,
      name: string,
      fromDate: string | undefined,
    ) {
      const url = new URL(`https://api.kustomerapp.com/v1/klasses/${name}`);
      for (const [k, v] of [["fromDate", fromDate]]) {
        if (v !== undefined && v !== "" && k !== undefined) {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + auth.apiKey,
        },
        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