0

Get a line in a named inventory document

by
Published Oct 17, 2025

Returns detailed information for a specified Inventory Control document line. For example, to get a line within a document that is based on the Inventory Transfer In transaction definition, specify `Inventory Transfer In` as the `documentName` in the request URL. Permissions and other requirements SubscriptionInventory User typeBusiness, Employee, Project Manager, Warehouse PermissionsList, View Inventory documents

Script sage_intacct Verified

The script

Submitted by hugo697 Bun
Verified 235 days ago
1
//native
2
type SageIntacct = {
3
	token: string
4
}
5
/**
6
 * Get a line in a named inventory document
7
 * Returns detailed information for a specified Inventory Control document line. For example, to get a line within a document that is based on the Inventory Transfer In transaction definition, specify `Inventory Transfer In` as the `documentName` in the request URL.
8

9

10
Permissions and other requirements
11

12
SubscriptionInventory
13
User typeBusiness, Employee, Project Manager, Warehouse
14
PermissionsList, View Inventory documents
15

16

17

18

19
 */
20
export async function main(auth: SageIntacct, key: string, documentName: string) {
21
	const url = new URL(
22
		`https://api.intacct.com/ia/api/v1/objects/inventory-control/document-line::${documentName}/${key}`
23
	)
24

25
	const response = await fetch(url, {
26
		method: 'GET',
27
		headers: {
28
			Authorization: 'Bearer ' + auth.token
29
		},
30
		body: undefined
31
	})
32
	if (!response.ok) {
33
		const text = await response.text()
34
		throw new Error(`${response.status} ${text}`)
35
	}
36
	return await response.json()
37
}
38