Skip to main content
GET
/
ramp
/
order
/
{order_id}
/
approvals
Get order approval
curl --request GET \
  --url https://api.etherfuse.com/ramp/order/{order_id}/approvals \
  --header 'Authorization: <api-key>'
{
  "approvalMessageId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "approvalMessage": "<string>",
  "summary": "<string>"
}

Authorizations

Authorization
string
header
required

API key sent in the Authorization header.

Path Parameters

order_id
string<uuid>
required

The order ID

Response

The pending approval packet

approvalMessageId
string<uuid>
required

Identifies the proposal being approved. Echoed back on submit so a superseded proposal (re-proposed on expiry) is rejected as stale.

approvalMessage
string
required

The exact bytes the owner signs with their key. Built fresh on each read so the request is current when signed; submitted back verbatim alongside the signature.

summary
string

Human-readable description of what is being approved. Present only when set.