GET
/
v1
/
signs
/
{request-id}
curl --request GET \
  --url https://omnisafe.sandbox.ecrop.de/omni-safe/v1/signs/{request-id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "PENDING",
  "signature": "0x...",
  "error": "Signing failed"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

request-id
string
required

ID of the signing request.

Response

200
application/json
Request status.
status
enum<string>
Available options:
PENDING,
DONE,
FAILED
Example:

"PENDING"

signature
string

The signature (hexadecimal).

Example:

"0x..."

error
string

Error message.

Example:

"Signing failed"