Skip to main content
POST
https://api.mpcvault.com
/
v1
/
getSigningRequestDetails
curl -X POST https://api.mpcvault.com/v1/getSigningRequestDetails \
  -H "Content-Type: application/json" \
  -H "x-mtoken: YOUR_API_TOKEN" \
  -d '{
    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  }'
{
  "signingRequest": {
    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "status": "COMPLETED",
    "vaultUuid": "550e8400-e29b-41d4-a716-446655440000",
    "walletUuid": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "txHash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
    "type": {
      "evmSendNative": {
        "walletUuid": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
        "chainId": "1",
        "to": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD58",
        "value": "1000000000000000000"
      }
    },
    "notes": "Treasury transfer",
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-15T10:31:00Z"
  }
}
Returns the details of a signing request including its status and transaction hash if completed.

Headers

x-mtoken
string
required
Your API token

Body

uuid
string
required
UUID of the signing request

Response

signingRequest
object
The signing request details
error
object
Error details (if failed)
curl -X POST https://api.mpcvault.com/v1/getSigningRequestDetails \
  -H "Content-Type: application/json" \
  -H "x-mtoken: YOUR_API_TOKEN" \
  -d '{
    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  }'
{
  "signingRequest": {
    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "status": "COMPLETED",
    "vaultUuid": "550e8400-e29b-41d4-a716-446655440000",
    "walletUuid": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "txHash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
    "type": {
      "evmSendNative": {
        "walletUuid": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
        "chainId": "1",
        "to": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD58",
        "value": "1000000000000000000"
      }
    },
    "notes": "Treasury transfer",
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-15T10:31:00Z"
  }
}