//native
type Gorgias = {
username: string;
apiKey: string;
domain: string;
};
/**
* Search for resources
*
*/
export async function main(
auth: Gorgias,
body: {
size?: number;
type:
| "agent"
| "customer"
| "customer_profile"
| "customer_channel"
| "customer_channel_email"
| "customer_channel_phone"
| "customers_by_phone"
| "integration"
| "team"
| "tag";
query?: string;
},
) {
const url = new URL(`https://${auth.domain}.gorgias.com/api/search`);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Basic " + btoa(`${auth.username}:${auth.apiKey}`),
},
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 235 days ago