Tenant
An organisational construct within FuseSign.
Get the list of available tenants for the current OAuth token
Authorizations
Responses
200
Success
application/json
400
Error message
application/json
401
Unauthorized
application/json
403
Forbidden
get
/api/Tenant/ListGET /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
Authorizations
Query parameters
TenantIdstring · guidRequiredExample:
FuseSign Tenant Id
bcf3376f-0025-4f73-aead-80bb3f3eeeacResponses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
get
/api/Tenant/GetBillingStateGET /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": "2025-11-05T07:07:50.798Z",
"CreditsRemaining": 1,
"NextUpdating": "2025-11-05T07:07:50.798Z"
}
}Produces the summary of the business configuration for this tenant. The requesting user must be a FuseSign user to access this information.
Authorizations
Query parameters
TenantIdstring · guidRequiredExample:
FuseSign Tenant Id
de46a5f3-acff-456a-8035-75e9bbe9325aResponses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
get
/api/Tenant/GetDefaultSettingsGET /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)
Authorizations
Query parameters
tenantIdstring · guidRequired
FuseSign Tenant ID
Responses
200Success
application/json
400
Error message
application/json
get
/api/Tenant/GetTeamsGET /api/Tenant/GetTeams?tenantId=text HTTP/1.1
Host: localhost:3003
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"Id": "text",
"Name": "text"
}
]Last updated