List person current assets
GET
/api/people/{id}/assets
const url = 'http://localhost:3000/api/people/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/assets';const options = {method: 'GET', headers: {cookie: 'session=<session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/api/people/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/assets \ --cookie session=<session>Open assignments only.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
Responses
Section titled “ Responses ”Success
Media type application/json
object
data
Array<object>
object
id
required
string format: uuid
assetId
required
string format: uuid
personId
string format: uuid
userId
string format: uuid
assignedAt
required
string format: date-time
returnedAt
string format: date-time
notes
string
personName
string
personEmail
string
Example generated
{ "data": [ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "assetId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "personId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "userId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "assignedAt": "2026-04-15T12:00:00Z", "returnedAt": "2026-04-15T12:00:00Z", "notes": "example", "personName": "example", "personEmail": "example" } ]}Not authenticated
Media type application/json
object
error
required
string
Example
{ "error": "Not found"}