Skip to content

Palisade API (2.0)

The Palisade API enables programmatic interaction with the various features of the Palisade platform

Download OpenAPI description
Languages
Servers
Mock server
https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api
Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co
Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations

Used to view information about the platform

Operations
Operations
Operations
Operations

Request

List sessions for device

Security
TokenAuth
Query
stateFilterstringrequired
  • SESSION_STATE_SUBMITTED: Session has completed & submitted data from this device
  • SESSION_STATE_COMPLETED: Session has completed but this device did not submit data
  • SESSION_STATE_SUPER: FSM USE ONLY: Super state
  • SESSION_STATE_INITIAL: FSM USE ONLY: Initial state
Enum"SESSION_STATE_CREATED""SESSION_STATE_PENDING""SESSION_STATE_SUBMITTED""SESSION_STATE_COMPLETED""SESSION_STATE_TIMED_OUT""SESSION_STATE_FAILED""SESSION_STATE_PROCESSED""SESSION_STATE_SUPER""SESSION_STATE_INITIAL"
curl -i -X GET \
  'https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/mpc/device/sessions?stateFilter=SESSION_STATE_CREATED' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/jsonArray [
idstringrequired
organizationIdstringrequired
membershipIdstringrequired
sessionSetIdstringrequired
createdBystringrequired
createdAtstring(date-time)required
updatedAtstring(date-time)required
expiresAtstring(date-time)required
typestring(v2SessionType)required
Enum"SESSION_TYPE_QUORUM_CREATION""SESSION_TYPE_KEY_CREATION""SESSION_TYPE_TX_SIGN_POOL""SESSION_TYPE_TX_SIGN_REQUEST""SESSION_TYPE_QUORUM_JOIN""SESSION_TYPE_QUORUM_MODIFY""SESSION_TYPE_QUORUM_MODIFY_FINALIZE"
acceptedbooleanrequired
payloadIdstringrequired
devicePayloadstringrequired
notificationPayloadstring(byte)required
notificationTriggerstringrequired
notificationBodystringrequired
statestring(v2SessionState)required
Enum"SESSION_STATE_CREATED""SESSION_STATE_PENDING""SESSION_STATE_SUBMITTED""SESSION_STATE_COMPLETED""SESSION_STATE_TIMED_OUT""SESSION_STATE_FAILED""SESSION_STATE_PROCESSED""SESSION_STATE_SUPER""SESSION_STATE_INITIAL"
]
Response
application/json
[ { "id": "string", "organizationId": "string", "membershipId": "string", "sessionSetId": "string", "createdBy": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z", "type": "SESSION_TYPE_QUORUM_CREATION", "accepted": true, "payloadId": "string", "devicePayload": "string", "notificationPayload": "string", "notificationTrigger": "string", "notificationBody": "string", "state": "SESSION_STATE_CREATED" } ]

Request

Get session

Security
TokenAuth
Path
sessionIdstringrequired
curl -i -X GET \
  'https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/mpc/device/sessions/{sessionId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/json
idstringrequired
organizationIdstringrequired
membershipIdstringrequired
sessionSetIdstringrequired
createdBystringrequired
createdAtstring(date-time)required
updatedAtstring(date-time)required
expiresAtstring(date-time)required
typestring(v2SessionType)required
Enum"SESSION_TYPE_QUORUM_CREATION""SESSION_TYPE_KEY_CREATION""SESSION_TYPE_TX_SIGN_POOL""SESSION_TYPE_TX_SIGN_REQUEST""SESSION_TYPE_QUORUM_JOIN""SESSION_TYPE_QUORUM_MODIFY""SESSION_TYPE_QUORUM_MODIFY_FINALIZE"
acceptedbooleanrequired
payloadIdstringrequired
devicePayloadstringrequired
notificationPayloadstring(byte)required
notificationTriggerstringrequired
notificationBodystringrequired
statestring(v2SessionState)required
Enum"SESSION_STATE_CREATED""SESSION_STATE_PENDING""SESSION_STATE_SUBMITTED""SESSION_STATE_COMPLETED""SESSION_STATE_TIMED_OUT""SESSION_STATE_FAILED""SESSION_STATE_PROCESSED""SESSION_STATE_SUPER""SESSION_STATE_INITIAL"
Response
application/json
{ "id": "string", "organizationId": "string", "membershipId": "string", "sessionSetId": "string", "createdBy": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z", "type": "SESSION_TYPE_QUORUM_CREATION", "accepted": true, "payloadId": "string", "devicePayload": "string", "notificationPayload": "string", "notificationTrigger": "string", "notificationBody": "string", "state": "SESSION_STATE_CREATED" }

Request

Get device session data

Security
TokenAuth
Path
sessionIdstringrequired
curl -i -X GET \
  'https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/mpc/device/sessions/{sessionId}/data' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

A successful response.

Bodyapplication/json
dataobject
Response
application/json
{ "data": { "property1": "string", "property2": "string" } }

Request

Submit session

Security
TokenAuth
Path
sessionIdstringrequired
Bodyapplication/jsonrequired
acceptedbooleanrequired
devicePayloadstring
curl -i -X PATCH \
  'https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/mpc/device/{sessionId}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "accepted": true,
    "devicePayload": "string"
  }'

Responses

Bodyapplication/json
idstringrequired
organizationIdstringrequired
membershipIdstringrequired
sessionSetIdstringrequired
createdBystringrequired
createdAtstring(date-time)required
updatedAtstring(date-time)required
expiresAtstring(date-time)required
typestring(v2SessionType)required
Enum"SESSION_TYPE_QUORUM_CREATION""SESSION_TYPE_KEY_CREATION""SESSION_TYPE_TX_SIGN_POOL""SESSION_TYPE_TX_SIGN_REQUEST""SESSION_TYPE_QUORUM_JOIN""SESSION_TYPE_QUORUM_MODIFY""SESSION_TYPE_QUORUM_MODIFY_FINALIZE"
acceptedbooleanrequired
payloadIdstringrequired
devicePayloadstringrequired
notificationPayloadstring(byte)required
notificationTriggerstringrequired
notificationBodystringrequired
statestring(v2SessionState)required
Enum"SESSION_STATE_CREATED""SESSION_STATE_PENDING""SESSION_STATE_SUBMITTED""SESSION_STATE_COMPLETED""SESSION_STATE_TIMED_OUT""SESSION_STATE_FAILED""SESSION_STATE_PROCESSED""SESSION_STATE_SUPER""SESSION_STATE_INITIAL"
Response
application/json
{ "id": "string", "organizationId": "string", "membershipId": "string", "sessionSetId": "string", "createdBy": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z", "type": "SESSION_TYPE_QUORUM_CREATION", "accepted": true, "payloadId": "string", "devicePayload": "string", "notificationPayload": "string", "notificationTrigger": "string", "notificationBody": "string", "state": "SESSION_STATE_CREATED" }

Request

List session sets

Security
TokenAuth
Path
quorumIdstringrequired
curl -i -X GET \
  'https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/mpc/sessions/{quorumId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/jsonArray [
idstringrequired
organizationIdstringrequired
quorumIdstringrequired
createdBystringrequired
createdAtstring(date-time)required
updatedAtstring(date-time)required
expiresAtstring(date-time)required
typestring(v2SessionSetType)required
Enum"SESSION_SET_TYPE_QUORUM_CREATION""SESSION_SET_TYPE_KEY_CREATION""SESSION_SET_TYPE_TX_SIGN_POOL""SESSION_SET_TYPE_TX_SIGN_REQUEST""SESSION_SET_TYPE_QUORUM_JOIN""SESSION_SET_TYPE_QUORUM_MODIFY""SESSION_SET_TYPE_QUORUM_MODIFY_FINALIZE"
payloadIdstringrequired
payloadRawstringrequired
statestring(v2SessionSetState)required
Enum"SESSION_SET_STATE_CREATED""SESSION_SET_STATE_IN_PROGRESS""SESSION_SET_STATE_COMPLETE""SESSION_SET_STATE_TIMED_OUT""SESSION_SET_STATE_FAILED""SESSION_SET_STATE_SUPER""SESSION_SET_STATE_INITIAL"
]
Response
application/json
[ { "id": "string", "organizationId": "string", "quorumId": "string", "createdBy": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z", "type": "SESSION_SET_TYPE_QUORUM_CREATION", "payloadId": "string", "payloadRaw": "string", "state": "SESSION_SET_STATE_CREATED" } ]

Request

Poll session set status

Security
TokenAuth
Path
sessionSetIdstringrequired
curl -i -X GET \
  'https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/mpc/sessions/{sessionSetId}/status' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/json
expectedCountinteger(int64)required
submittedCountinteger(int64)required
acceptedCountinteger(int64)required
statestring(v2SessionSetState)required
Enum"SESSION_SET_STATE_CREATED""SESSION_SET_STATE_IN_PROGRESS""SESSION_SET_STATE_COMPLETE""SESSION_SET_STATE_TIMED_OUT""SESSION_SET_STATE_FAILED""SESSION_SET_STATE_SUPER""SESSION_SET_STATE_INITIAL"
Response
application/json
{ "expectedCount": 0, "submittedCount": 0, "acceptedCount": 0, "state": "SESSION_SET_STATE_CREATED" }
Operations
Operations
Operations

Used to manage sweep configurations

Operations
Operations
Operations

Used to manage XRP specific transactions

Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations