SmartSignPlusModifyPackage

Overview

The SmartSignPlusModifyPackage operation allows users to delete, cancel, reactivate, or make any corrections to the package.

Table 1. Method
Method URL Description
POST /api/v1/Document/account/{accountId}/SmartSignPlusModifyPackage The POST method submits an account identifier, package identifier, and SmartSignPlusModifyPackageEnum collection as parameters on the input.
Table 2. Request Parameters
Name Type Constraints Description
accountId string required The account used to associate to the request.
packageIdentifier string required The unique identifier for the specific package.
SmartSignPlusModifyPackageEnum string required Collection containing different enumerated values.

Sample Request


{
  "packageId": "VvkYKjsysg41Mn9KW7KIZ"
  "smartSignPlusModifyPackageEnum": "Delete"
}

Sample Responses

Successful response:

{
    "status": "Sucessful",          
}
Failure response:

{
    "status": "Failed",
    "messages": [
        "Cancel: Call to SmartSignPlus failed.  Error: {\"title\":\"Internal Server Error\",\"status\":500} (code:InternalServerError/minor:)"
    ]
}