//native
/**
* List contract amendments
* Retrieve amendments of a contract
**Token scopes**: `contracts:read`, `contracts:write`
*/
export async function main(
auth: RT.Deel,
contract_id: string,
statuses?: string | undefined,
sign_statuses?: string | undefined,
limit?: string | undefined,
cursor?: string | undefined
) {
const url = new URL(`https://api.letsdeel.com/rest/v2/contracts/${contract_id}/amendments`)
for (const [k, v] of [
['statuses', statuses],
['sign_statuses', sign_statuses],
['limit', limit],
['cursor', cursor]
]) {
if (v !== undefined && v !== '') {
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