Tenant
An organisational construct within FuseSign.
Get the list of available tenants for the current OAuth token
FuseSign OAuth 2. Use this for most implementations.
Success
Tenant ID
Tenant Name
Error message
Unauthorized
Forbidden
GET /api/Tenant/List HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"Id": "text",
"Name": "text"
}
]Produces the summary of the billing state for this tenant. The requesting user must be a FuseSign user to access this information. A credit consumed summary is also produced
FuseSign OAuth 2. Use this for most implementations.
FuseSign Tenant Id
03b05481-1a1d-49b5-b8a2-7e77e33f8a45Success
Tenants Billing plan information
Tenants current subscription state information
Tenants credit summary information
Bad Request
Unauthorized
Forbidden
GET /api/Tenant/GetBillingState?TenantId=text HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"CurrentBillingPlan": {
"Id": "text",
"PlanLabel": "text",
"AllowFuseDocsIntegration": true,
"IsTrial": true,
"IsRetired": true,
"PlanCreditsPerPeriod": 1
},
"SubscriptionStatus": "None",
"CreditSummary": {
"LastUpdated": "2026-01-01T00:00:00.000Z",
"CreditsRemaining": 1,
"NextUpdating": "2026-01-01T00:00:00.000Z"
}
}Produces the summary of the business configuration for this tenant. The requesting user must be a FuseSign user to access this information.
FuseSign OAuth 2. Use this for most implementations.
FuseSign Tenant Id
e5f59fd1-dc67-4872-baff-85a53a0604eaSuccess
Default reminder setting
Default overdue reminder setting
The bundle view mode setting. If this is blank the business default is selected and the system falls back to the highest available authentication
Mixed mode (customers can have different view modes) Enabled. If a business has this mode enabled it is suggested to not pass view mode on bundles. The system will select the highest mode for each recipient by default
Default recipient receive mode setting
Default country code
Automatically apply a default due date span when a bundle is created. Default is 30 days and can be modified via DefaultDueDateSpan.
Number of days into the future to set the due date for new bundles, if EnableDefaultDueDate is enabled.
Default signature placement mode [Signing Placements Required if CreateAndSend and Sending]
Default bundle rejection mode
Default SMS Notification Mode
Bad Request
Unauthorized
Forbidden
GET /api/Tenant/GetDefaultSettings?TenantId=text HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"DefaultBundleReminder": "DontRemind",
"DefaultOverdueBundleReminder": "DontRemind",
"DefaultViewMode": "SmsToSign",
"EnabledMixedViewMode": true,
"DefaultRecipientReceiveMode": "EmailWithAttachments",
"DefaultCountryCode": "text",
"EnableDefaultDueDate": true,
"DefaultDueDateSpan": 1,
"DefaultSigningMode": "SignWhole",
"DefaultRejectionMode": "RejectDocumentAllowBundleFinalisation",
"DefaultSMSNotificationMode": "Off"
}Get the list of a tenants teams (accessible to the logged in user)
FuseSign OAuth 2. Use this for most implementations.
FuseSign Tenant ID
Error message
GET /api/Tenant/GetTeams?tenantId=text HTTP/1.1
Host: localhost:3003
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"Id": "text",
"Name": "text"
}
]Last updated