create and upload document file
Deprecated
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params multipart/form-data
Request samples
curl --location --request POST '/document-file' \
--form 'refObjectType="Wallet"' \
--form 'refObjectId="WA12002310001"' \
--form 'documentType="SourceOfFunds"' \
--form 'file=@""' \
--form 'fileName=""' \
--form 'description=""'
Responses
application/json {
"id": "DF23030001",
"refObjectType": "Wallet",
"refObjectId": "WA24200001",
"documentType": "SourceOfFunds",
"description": "string",
"status": "Init",
"createdTime": "string",
"uploadInfo": {
"host": "string",
"accessKeyId": "string",
"key": "string",
"policy": "string",
"signature": "string",
"callback": "string"
}
}
Modified at 2023-11-01 02:54:56