Factify API is currently in Beta.
import { Factify } from "@factify/sdk";
const factify = new Factify({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await factify.organizations.update({
organizationId: "org_01h2xcejqtf2nbrexx3vqjhp41",
body: {},
});
console.log(result);
}
run();{
"organization": {
"created_at": "2023-11-07T05:31:56Z",
"id": "org_01h2xcejqtf2nbrexx3vqjhp41",
"name": "Acme Corporation",
"logo_image_url": "<string>"
}
}Update an organization’s display name. Authorization: Requires organization#administer permission (owner or admin).
import { Factify } from "@factify/sdk";
const factify = new Factify({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await factify.organizations.update({
organizationId: "org_01h2xcejqtf2nbrexx3vqjhp41",
body: {},
});
console.log(result);
}
run();{
"organization": {
"created_at": "2023-11-07T05:31:56Z",
"id": "org_01h2xcejqtf2nbrexx3vqjhp41",
"name": "Acme Corporation",
"logo_image_url": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://developers.factify.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer , where is your auth token.
Organization ID. Pattern: org_[0-9a-hjkmnp-tv-z]{26}
^org_[0-9a-hjkmnp-tv-z]{26}$"org_01h2xcejqtf2nbrexx3vqjhp41"
UpdateOrganizationRequest contains the fields to update on an organization.
Success
UpdateOrganizationResponse contains the updated organization.
The updated organization.
Show child attributes