//native
type Clickup = {
token: string;
};
/**
* Set Custom Field Value
* Add data to a Custom field on a task. \
\
You'll need to know the `task_id` of the task you want to update, and the universal unique identifier (UUID) `field_id` of the Custom Field you want to set. \
\
You can use [Get Accessible Custom Fields](ref:getaccessiblecustomfields) or the [Get Task](ref:gettask) endpoint to find the `field_id`.
*/
export async function main(
auth: Clickup,
task_id: string,
field_id: string,
custom_task_ids: string | undefined,
team_id: string | undefined,
body:
| { value: string }
| { value: string }
| { value: string }
| { value: string }
| { value?: number; value_options?: { time: false | true } }
| { value: string }
| { value: number }
| { value: number }
| { value: { add?: string[]; rem?: string[] } }
| { value: { add?: number[]; rem?: number[] } }
| { value: number }
| { value: { current: number } }
| { value: string[] }
| {
value: {
location?: { lat?: number; lng?: number };
formatted_address?: string;
};
},
) {
const url = new URL(
`https://api.clickup.com/api/v2/task/${task_id}/field/${field_id}`,
);
for (const [k, v] of [
["custom_task_ids", custom_task_ids],
["team_id", team_id],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: 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 168 days ago