//native
/**
* Employee additional info template
* Lists employee additional info template by the contract type and the employment country
**Token scopes**: `contracts:read`
*/
export async function main(auth: RT.Deel, _type: 'eor' | 'gp', country: string) {
const url = new URL(
`https://api.letsdeel.com/rest/v2/employee-info/contract-types/${_type}/countries/${country}`
)
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