const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getpalm.com/v1/user/{user_id}/business', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "list",
"data": [
"<array>"
]
}Returns all businesses where this user is listed as a beneficial owner.
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getpalm.com/v1/user/{user_id}/business', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "list",
"data": [
"<array>"
]
}Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx
User ID
"palm_usr_1a2b3c4d5e6f7g8h"
Was this page helpful?