Authorizations
Response
Successful Response
import Profound from 'profoundai';
const client = new Profound({
apiKey: 'My API Key',
});
const response = await client.organizations.listAssets();
console.log(response.data);{
"data": [
{
"id": "<string>",
"name": "<string>",
"website": "<string>",
"alternate_domains": [
"<string>"
],
"is_owned": true,
"created_at": "2023-11-07T05:31:56Z",
"category": {
"id": "<string>",
"name": "<string>"
}
}
]
}import Profound from 'profoundai';
const client = new Profound({
apiKey: 'My API Key',
});
const response = await client.organizations.listAssets();
console.log(response.data);{
"data": [
{
"id": "<string>",
"name": "<string>",
"website": "<string>",
"alternate_domains": [
"<string>"
],
"is_owned": true,
"created_at": "2023-11-07T05:31:56Z",
"category": {
"id": "<string>",
"name": "<string>"
}
}
]
}Successful Response
Show child attributes
Was this page helpful?