Skip to main content
POST
/
v2
/
sign-requests
/
video-translation
/
multipart
/
complete
Once a multi part request has been submitted the complete endpoint needs to be called to ensure that the file is generated correctly within the Signapse system.
curl --request POST \
  --url https://api.example.com/v2/sign-requests/video-translation/multipart/complete \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "parts": {},
  "firstName": "<string>",
  "lastName": "<string>",
  "companyName": "<string>",
  "uploadSettings": {}
}
'
{
  "application/json": {
    "errors": [
      {
        "message": "Authorization bearer token is missing."
      }
    ]
  }
}
This endpoint has to be called after the multipart endpoint. When called this endpoint will stitch the parts of the uploaded file back together for editing.

Headers

Authorization
string
required

Bearer authentication header of the form Bearer , where is your auth token.

Body

application/json
parts
object
firstName
string
lastName
string
companyName
string
uploadSettings
object

Response

Successful request sent