Bundle

A bundle is a collection of messages, settings, recipients, documents and optionally placeholders.

Gets the details of a bundle.

get

Gets the detailed information of a bundle

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: 3e6e9dbc-b726-40ac-ad56-7250104fe97e
BundleIdstring · guidRequired

Bundle Id

Example: 52c67cc2-a929-461e-b090-41e9810f25b0
Responses
200

Success

application/json
get
/api/Bundle/Get

see Bundle Createfor a deep dive with more explanation

Creates a new bundle.

post

Submit a bundle to request to Sign with other options. FuseSign offers two different methods for document signing: Sign Entire Document and Signature Placeholders. Sign Entire Document is default. Whereas placeholder mode requires values in Documents > CustomerInputElements. We recommend uploading your documents to /Document/Upload to use DocumentId.

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Body
Subjectstring · max: 200Optional

Bundle subject

Example: test
BodystringOptional

Bundle Body message

Example: body
CreateModeone ofOptional

Create and send or create as draft

Example: CreateAndSend
string · enumOptionalPossible values:
CreatedBystring · emailOptional

Sets the created by user email. If the user exists and the requestor has permissions, then the bundle will be "created" by the specified user. Will cause an error to throw if the user does not have permissions to do this.

Pattern: ^[^@]+@[^@]+$
DueDatestring · date-time | nullableOptional

The bundle due date (optional)

DueReminderModeone of | nullableOptional

Bundle reminder mode (optional)

string · enumOptionalPossible values:
OverdueReminderModeone of | nullableOptional

Bundle overdue reminder mode (optional)

string · enumOptionalPossible values:
ViewModeone of | nullableOptional

The bundle view mode setting. If this is blank the business default is selected and the system falls back to the highest available authentication

string · enumOptionalPossible values:
RecipientReceiveModeone of | nullableOptional

How the recipients receive signed documents

string · enumOptionalPossible values:
SigningModeone of | nullableOptional

Describe how the document(s) will be processed. I.e. if signature placements are used [I.e. if SENDING SignPlacements then all Documents must have CustomerSignerLocations set. Otherwise CustomerSigners.].

Example: SignPlacements
string · enumOptionalPossible values:
Settingsone ofOptional

Bundle settings object - API related options.

Metastring · max: 1000Optional

Bundle lookup metadata

TeamIdstring · guid | nullableOptional

If assigned - apply this team to the bundle. Verify that the user sending the bundle can send on behalf of this team.

SenderIPstringOptional

IP Address applied to the bundle Audit. Automatic Field - no need to set.

Responses
200

Success

application/json
post
/api/Bundle/Create

Get bundle audit history.

get

Get a bundles history, including things like Finalisation, Errors and other actions. We recommend using Webhooks instead where appropriate.

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: 18e8359b-6148-4532-a118-8bfb085deb0d
BundleIdstring · guidRequired

Bundle Id

Example: af417e46-24e9-4717-9c1d-9f415ee80253
Responses
200

Success

application/json
get
/api/Bundle/GetHistory

Retract a bundle.

post

Request bundle retraction. This will cancel the outstanding sign request

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: bd879378-b0fb-4a86-b498-f54ab9515bde
Body
BundleIdstring · guid · min: 1Required

Bundle Id

Example: ba2eaeb2-0ad7-4ea6-8a85-4875c2afa121
Reasonstring · min: 1Required

[Mandatory] Reason for retraction

Example: Reason
Messagestring | nullableOptional

[Optional] Additional message

Responses
200

Success

application/json
post
/api/Bundle/Retract

Mark Bundle for Archive

post

Mark the bundle as "Closed" which will allow it to be archived

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: 93b9b45b-a578-4a50-b9ca-642e4cf5f568
Body
BundleIdstring · guid · min: 1Required

Bundle Id

Example: cf0851be-49be-426f-b391-c7256042b947
Responses
200

Success

application/json
post
/api/Bundle/MarkReadyForArchive

Gets a list of bundles.

post

Gets a list of bundles for the specified tenant.

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: 96478e07-a339-4093-958d-82649a43a91c
Body
Pageinteger · int32Optional

Search page (50 records per page). 0 Based indexing.

Example: 0
Responses
200

Success

application/json
post
/api/Bundle/Search

Archive a completed bundle

post

Request bundle Archive. This will schedule any bundle documents for deletion. Bundles can only be archived if they are in a Retracted, Rejected or Finalised state

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: 240e6f52-fe34-45f9-9c4d-d9abe81bc4ac
Body
BundleIdstring · guid · min: 1Required

Bundle Id

Example: 11e0ea69-d223-4ce5-903d-c7f4f2653d68
Responses
200

Success

application/json
post
/api/Bundle/Archive

Remind a bundle.

post

Send a reminder for a bundle (Requires Emails to be enabled for the bundle)

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: d3b531a7-8a1b-4720-8255-e733873993b0
Body
BundleIdstring · guid · min: 1Required

Bundle Id

Example: 4a10932e-5ac5-4ef1-82d3-882845a4a58d
ReminderNotesstring | nullableOptional

Notes to include in the email

TargetCustomerIdsstring · guid[] · min: 1Required

List of customer IDs (can be retrieved on Bundle/Get

Example: ["91e861ce-4a6e-476d-a9c5-c6c4b9ccfdb0"]
Responses
200

Success

application/json
post
/api/Bundle/SendReminder

Delete a Bundle Draft

post

For a given bundle in draft state, delete the draft. This will consequently unlink associated documents and customer actions. Documents will not be deleted.

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: 6608f064-c6e2-424a-920d-020bff743c6f
Body
BundleIdstring · guid · min: 1Required

Bundle Id

Example: 5ac0f0e7-a2ce-45ec-a3b5-cbb416ed7909
Responses
200

Success

application/json
post
/api/Bundle/DeleteBundleDraft

Update the webhook URL for a bundle

post

Update the webhook URL. All future webhooks will be sent to the new URL.

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: fb607a24-314a-468b-81b7-fc4645a2dcf7
Body
BundleIdstring · guid · min: 1Required

Bundle Id

Example: 79188ee3-8faf-4f2a-a754-d8eb6f31741a
EventWebhookUrlstring · min: 1Required

New webhook URL

Responses
200

Success

application/json
post
/api/Bundle/UpdateWebhookUrl

List Pending archive bundles

get

Request a list of all bundles which have been finalised/retracted or rejected which are yet to be archived. These bundles and associated documents will be automatically archived in 14 days

Authorizations
OAuth2authorizationCodeRequired

FuseSign OAuth 2. Use this for most implementations.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : Manage FuseSign Bundles and corresponding data.
  • : Ability to send bundles and extract bundles created by this user only. Special purpose scope, contact support@fuse.work.
Query parameters
TenantIdstring · guidRequired

FuseSign Tenant Id

Example: 29ee48cc-8444-49c9-a158-41d4d6070e86
Responses
200

Success

application/json
get
/api/Bundle/ListPendingArchive

Last updated