Edits history of script submission #14624 for ' Update user (brex)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Brex = {
      token: string;
    };
    /**
     * 
    Update user
    
     * 
    This endpoint updates a user. Any parameters not provided will be left unchanged.
    
     */
    export async function main(
      auth: Brex,
      id: string,
      body: {
        status?: ("ACTIVE" & {}) | ("DISABLED" & {});
        manager_id?: string;
        department_id?: string;
        location_id?: string;
        title_id?: string;
        metadata?: {};
      },
      Idempotency_Key?: string,
    ) {
      const url = new URL(`https://platform.brexapis.com/v2/users/${id}`);
    
      const response = await fetch(url, {
        method: "PUT",
        headers: {
          ...(Idempotency_Key ? { "Idempotency-Key": Idempotency_Key } : {}),
          "Content-Type": "application/json",
          Authorization: "Bearer " + auth.token,
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 217 days ago