Customer
The person who will be receiving the signing action.
Get specific customer details
FuseSign OAuth 2. Use this for most implementations.
FuseSign Tenant Id
1347a03f-523d-4316-9608-e81c8f996055Customer Id
c4b8c524-dfd5-475b-847e-571d900beadeSuccess
Customer ID
Customer tenant ID
Customer Name
Customer Email
Customer mobile number. Required for 2FA. If NoMobile is true this is not required. Must be in international format: +61413121121
No Mobile flag, means Phone Number is ignored
Optional external lookup ID. Can be used for searching
Don't allow modification of this contact
Customer data source
Link to edit customer details directly
Number of bundles assigned to the user which are yet to be actioned
Number of bundles assigned to the user
Customer is archived
Customer preferred name. The customer will be addressed by this name when signing.
Bad Request
Unauthorized
Forbidden
GET /api/Customer/Get?TenantId=text&CustomerId=text HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"CustomerId": "text",
"TenantId": "text",
"Name": "text",
"Email": "text",
"PhoneNumber": "text",
"NoMobile": true,
"Meta": "text",
"CannotModify": true,
"Source": "Manual",
"CustomerEditLink": "text",
"TotalLiveBundlesForCustomer": 1,
"TotalBundlesForCustomer": 1,
"IsArchived": true,
"PreferredName": "text"
}Create a new customer record
FuseSign OAuth 2. Use this for most implementations.
FuseSign Tenant Id
453a4719-29f8-4b3b-a062-d2b78343383dCustomer Name (Required)
Customer Email (Required)
^[^@]+@[^@]+$Customer mobile number. Required for 2FA. If NoMobile is true this is not required. Must be in international format: +61413121121
No Mobile flag, means Phone Number is ignored
falseOptional external lookup ID. Can be used for searching later. Note: This is used to uniquely identify this contact and will cause duplicate contacts if not reused
Prevents end users from modifying this contact within the FuseSign application
falseOptions for contact creation and validation
{"IgnorePhoneNumberIfInvalid":false,"UpdateExistingCustomersByMetaMatch":false}Success
Customer ID
Customer tenant ID
Customer Name
Customer Email
Customer mobile number. Required for 2FA. If NoMobile is true this is not required. Must be in international format: +61413121121
No Mobile flag, means Phone Number is ignored
Optional external lookup ID. Can be used for searching
Don't allow modification of this contact
Customer data source
Link to edit customer details directly
Number of bundles assigned to the user which are yet to be actioned
Number of bundles assigned to the user
Customer is archived
Customer preferred name. The customer will be addressed by this name when signing.
Bad Request
Unauthorized
Forbidden
POST /api/Customer/Create?TenantId=text HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 195
{
"CustomerId": null,
"Name": "",
"Email": "",
"PhoneNumber": "",
"NoMobile": false,
"Meta": "",
"CannotModify": false,
"Options": {
"IgnorePhoneNumberIfInvalid": false,
"UpdateExistingCustomersByMetaMatch": false
}
}{
"CustomerId": "text",
"TenantId": "text",
"Name": "text",
"Email": "text",
"PhoneNumber": "text",
"NoMobile": true,
"Meta": "text",
"CannotModify": true,
"Source": "Manual",
"CustomerEditLink": "text",
"TotalLiveBundlesForCustomer": 1,
"TotalBundlesForCustomer": 1,
"IsArchived": true,
"PreferredName": "text"
}Search for customer based on Name/Email/Phone details
FuseSign OAuth 2. Use this for most implementations.
FuseSign Tenant Id
fee2d65f-7b66-4a88-93ca-806513b83f06Wildcard search text
Collapse any duplicate records
falseExclude archived contacts
trueInclude live bundle count
Include live bundle count
Success
Customer ID
Customer tenant ID
Customer Name
Customer Email
Customer mobile number. Required for 2FA. If NoMobile is true this is not required. Must be in international format: +61413121121
No Mobile flag, means Phone Number is ignored
Optional external lookup ID. Can be used for searching
Don't allow modification of this contact
Customer data source
Link to edit customer details directly
Number of bundles assigned to the user which are yet to be actioned
Number of bundles assigned to the user
Customer is archived
Customer preferred name. The customer will be addressed by this name when signing.
Bad Request
Unauthorized
Forbidden
GET /api/Customer/Search?TenantId=text&SearchString=text&CollapseDuplicates=true&ExcludeArchived=true HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"CustomerId": "text",
"TenantId": "text",
"Name": "text",
"Email": "text",
"PhoneNumber": "text",
"NoMobile": true,
"Meta": "text",
"CannotModify": true,
"Source": "Manual",
"CustomerEditLink": "text",
"TotalLiveBundlesForCustomer": 1,
"TotalBundlesForCustomer": 1,
"IsArchived": true,
"PreferredName": "text"
}
]Search for customer based on metadata field
FuseSign OAuth 2. Use this for most implementations.
FuseSign Tenant Id
14453219-32b1-4639-86d7-9ccbe3d47acbWildcard search text
metaSuccess
Customer ID
Customer tenant ID
Customer Name
Customer Email
Customer mobile number. Required for 2FA. If NoMobile is true this is not required. Must be in international format: +61413121121
No Mobile flag, means Phone Number is ignored
Optional external lookup ID. Can be used for searching
Don't allow modification of this contact
Customer data source
Link to edit customer details directly
Number of bundles assigned to the user which are yet to be actioned
Number of bundles assigned to the user
Customer is archived
Customer preferred name. The customer will be addressed by this name when signing.
Bad Request
Unauthorized
Forbidden
GET /api/Customer/SearchByMetaData?TenantId=text&MetaDataSearch=text HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"CustomerId": "text",
"TenantId": "text",
"Name": "text",
"Email": "text",
"PhoneNumber": "text",
"NoMobile": true,
"Meta": "text",
"CannotModify": true,
"Source": "Manual",
"CustomerEditLink": "text",
"TotalLiveBundlesForCustomer": 1,
"TotalBundlesForCustomer": 1,
"IsArchived": true,
"PreferredName": "text"
}
]Gets the list of all country codes supported by the platform
FuseSign OAuth 2. Use this for most implementations.
Success
Bad Request
Unauthorized
Forbidden
GET /api/Customer/GetCountryCodes HTTP/1.1
Host: api.fuse.work
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
"text"
]Last updated