new module:api/NotaryApi(apiClient)
- Source:
Constructs a new NotaryApi.
Parameters:
Name | Type | Description |
---|---|---|
apiClient |
module:ApiClient | Optional API client implementation to use, |
Methods
createNotary(optsOrCallback, callback)
- Source:
Add a notary to the system
Registers the current user as a notary.
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
optsOrCallback |
Object | Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely. Properties
|
||||||
callback |
module:api/NotaryApi~createNotaryCallback | The callback function, accepting three arguments: error, data, response |
createNotaryJurisdictions(optsOrCallback, callback)
- Source:
Add a notary jurisdiction to the system
Creates a jurisdiction object.
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
optsOrCallback |
Object | Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely. Properties
|
||||||
callback |
module:api/NotaryApi~createNotaryJurisdictionsCallback | The callback function, accepting three arguments: error, data, response |
deleteNotaryJurisdiction(jurisdictionId, callback)
- Source:
Delete a notary jurisdiction a specified user.
Deletes the specified jurisdiction.
Parameters:
Name | Type | Description |
---|---|---|
jurisdictionId |
String | |
callback |
module:api/NotaryApi~deleteNotaryJurisdictionCallback | The callback function, accepting three arguments: error, data, response |
getNotary(optsOrCallback, callback)
- Source:
Get notary settings for a user
Gets settings for a notary user.
The current user must be a notary.
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
optsOrCallback |
Object | Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely. Properties
|
||||||
callback |
module:api/NotaryApi~getNotaryCallback | The callback function, accepting three arguments: error, data, response |
getNotaryJurisdiction(jurisdictionId, callback)
- Source:
Get notary a jurisdiction for a user
Gets a jurisdiction object for the current user. The following restrictions apply:
- The current user must be a notary.
- The
jurisdictionId
must be a jurisdiction that the notary is registered for.
Parameters:
Name | Type | Description |
---|---|---|
jurisdictionId |
String | |
callback |
module:api/NotaryApi~getNotaryJurisdictionCallback | The callback function, accepting three arguments: error, data, response |
getNotaryJurisdictions(callback)
- Source:
Get notary jurisdictions for a user
Returns a list of jurisdictions that the notary is registered in.
The current user must be a notary.
Parameters:
Name | Type | Description |
---|---|---|
callback |
module:api/NotaryApi~getNotaryJurisdictionsCallback | The callback function, accepting three arguments: error, data, response |
getNotaryJurisdictionSeal(jurisdictionId, callback)
- Source:
Get notary seal for a jurisdiction
Parameters:
Name | Type | Description |
---|---|---|
jurisdictionId |
String | |
callback |
module:api/NotaryApi~getNotaryJurisdictionSealCallback | The callback function, accepting three arguments: error, data, response |
listNotaryJournals(optsOrCallback, callback)
- Source:
Get notary jurisdictions for a user
Parameters:
Name | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
optsOrCallback |
Object | Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely. Properties
|
||||||||||||
callback |
module:api/NotaryApi~listNotaryJournalsCallback | The callback function, accepting three arguments: error, data, response |
updateNotary(optsOrCallback, callback)
- Source:
Update a notary
Updates notary information for the current user.
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
optsOrCallback |
Object | Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely. Properties
|
||||||
callback |
module:api/NotaryApi~updateNotaryCallback | The callback function, accepting three arguments: error, data, response |
updateNotaryJurisdiction(jurisdictionId, optsOrCallback, callback)
- Source:
Update a notary jurisdiction
Updates the jurisdiction information about a notary.
The following restrictions apply:
- The current user must be a notary.
- The
jurisdictionId
path parameter must be a jurisdiction that the notary is registered for. - The
jurisdictionId
path parameter must match the request body'sjurisdiction.jurisdictionId
.
The request body must have a full jurisdiction
object for the jurisdiction property.
The best way to do this is to use getNotaryJurisdiction
to obtain the current values and update the properties you want to change.
For example, assume getNotaryJurisdiction
returns this:
{
"jurisdiction": {
"jurisdictionId": "15",
"name": "Iowa",
"county": "",
"enabled": "true",
"countyInSeal": "false",
"commissionIdInSeal": "true",
"stateNameInSeal": "true",
"notaryPublicInSeal": "true",
"allowSystemCreatedSeal": "true",
"allowUserUploadedSeal": "false"
},
"commissionId": "123456",
"commissionExpiration": "2020-08-31T07:00:00.0000000Z",
"registeredName": "Bob Notary",
"county": "Adams",
"sealType": "system_created"
}
If you want to change the name of the notary from "Bob Notary" to "Robert Notary", your request body would be:
{
"jurisdiction": {
"jurisdictionId": "15",
"name": "Iowa",
"county": "",
"enabled": "true",
"countyInSeal": "false",
"commissionIdInSeal": "true",
"stateNameInSeal": "true",
"notaryPublicInSeal": "true",
"allowSystemCreatedSeal": "true",
"allowUserUploadedSeal": "false"
},
"commissionId": "123456",
"commissionExpiration": "2020-08-31T07:00:00.0000000Z",
"registeredName": "Robert Notary",
"county": "Adams",
"sealType": "system_created"
}
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
jurisdictionId |
String | |||||||
optsOrCallback |
Object | Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely. Properties
|
||||||
callback |
module:api/NotaryApi~updateNotaryJurisdictionCallback | The callback function, accepting three arguments: error, data, response |
Type Definitions
createNotaryCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the createNotary operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/Notary | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
createNotaryJurisdictionsCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the createNotaryJurisdictions operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/NotaryJurisdiction | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
deleteNotaryJurisdictionCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the deleteNotaryJurisdiction operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
This operation does not return a value. |
|
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
getNotaryCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the getNotary operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/NotaryResult | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
getNotaryJurisdictionCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the getNotaryJurisdiction operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/NotaryJurisdiction | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
getNotaryJurisdictionsCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the getNotaryJurisdictions operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/NotaryJurisdictionList | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
getNotaryJurisdictionSealCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the getNotaryJurisdictionSeal operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
This operation does not return a value. |
|
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
listNotaryJournalsCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the listNotaryJournals operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/NotaryJournalList | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
updateNotaryCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the updateNotary operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/Notary | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |
updateNotaryJurisdictionCallback(error, data, If)
- Source:
(Optional) Callback function to receive the result of the updateNotaryJurisdiction operation. If none specified a Promise will be returned.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
module:model/NotaryJurisdiction | The data returned by the service call. |
If |
String | a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data. |