//native
type Kustomer = {
apiKey: string;
};
/**
* Update search positions
* Updates the order in which searches and folders display for the entire organization.
Note that folders cannot be placed into other folders. Folders and searches cannot be removed or added from this endpoint, only reordered.
#### NOTE
> Requires **org.admin** privileges
*/
export async function main(
auth: Kustomer,
body: {
positions:
| { type: "search"; id: string }
| {
type: "folder";
id: string;
children?: { type: "search"; id: string }[];
}[];
rev?: number;
},
) {
const url = new URL(
`https://api.kustomerapp.com/v1/customers/searches/positions`,
);
const response = await fetch(url, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + 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