Linked Users
Retrieve Linked Users
Core Resources
- Connections
- Webhooks
- Field Mappings
- Linked Users
- Projects
- Events
- Passthrough
Linked Users
Retrieve Linked Users
GET
/
linked_users
/
{id}
import { Panora } from "@panora/sdk";
const panora = new Panora({
apiKey: "<YOUR_API_KEY_HERE>",
});
async function run() {
const result = await panora.linkedUsers.retrieve({
id: "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
});
// Handle the result
console.log(result)
}
run();
{
"id_linked_user": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
"linked_user_origin_id": "id_1",
"alias": "acme",
"id_project": "801f9ede-c698-4e66-a7fc-48d19eebaa4f"
}
Authorizations
Path Parameters
Response
200 - application/json
The response is of type object
.
Was this page helpful?
import { Panora } from "@panora/sdk";
const panora = new Panora({
apiKey: "<YOUR_API_KEY_HERE>",
});
async function run() {
const result = await panora.linkedUsers.retrieve({
id: "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
});
// Handle the result
console.log(result)
}
run();
{
"id_linked_user": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
"linked_user_origin_id": "id_1",
"alias": "acme",
"id_project": "801f9ede-c698-4e66-a7fc-48d19eebaa4f"
}