//native
type SageIntacct = {
token: string
}
/**
* Get an object model definition
* List all the fields and relationships for an object, service, or other resource.
*/
export async function main(
auth: SageIntacct,
name: string | undefined,
_type: string | undefined,
version: string | undefined,
schema: string | undefined,
tags: string | undefined
) {
const url = new URL(`https://api.intacct.com/ia/api/v1/services/core/model`)
for (const [k, v] of [
['name', name],
['type', _type],
['version', version],
['schema', schema],
['tags', tags]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Bearer ' + auth.token
},
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