Skip to main content
POST
/
api
/
v1
/
object
/
sign
Python
from everos import EverOS

client = EverOS()
obj = client.v1.object

response = obj.sign(
    object_list=[
        {
            "file_id": "<string>",
            "file_name": "<string>",
            "file_type": "<string>"
        }
    ]
)
print(response)
{
  "error": "<string>",
  "request_id": "<string>",
  "status": 123,
  "result": {
    "data": {
      "objectList": [
        {
          "fileName": "<string>",
          "fileType": "<string>",
          "fileId": "<string>",
          "objectKey": "<string>",
          "objectSignedInfo": {
            "url": "<string>",
            "fields": {},
            "maxSize": 123
          }
        }
      ]
    }
  }
}
Note: This endpoint is a transparent proxy to MMS. Request body must use {objectList: [...]} array wrapper. Response and error format follow MMS conventions (not the standard ErrorResponse schema used by other endpoints).

Authorizations

Authorization
string
header
default:Bearer <api_key>
required

Bearer authentication header of the form Bearer 'api_key', obtain your API key from everos.evermind.ai.

Body

application/json
objectList
object[]
required

List of files to sign (supports batch signing)

Minimum array length: 1

Response

Pre-signed URL generated

error
string

Error message. 'OK' on success, error description on failure

Examples:

"OK"

"参数验证失败"

request_id
string

MMS request tracking ID

status
integer

MMS status code. 0 = success, 2018 = validation error

Examples:

0

2018

result
object