The Palisade API enables programmatic interaction with the various features of the Palisade platform
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/
https://api.sandbox.palisade.co/
https://api.palisade.co/
- Mock server
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/mpc/device/memberships
- Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co/v2/mpc/device/memberships
- Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co/v2/mpc/device/memberships
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/mpc/device/memberships \
-H 'Authorization: YOUR_API_KEY_HERE'MEMBERSHIP_STATE_CREATED: Freshly created, but no push notification sent
MEMBERSHIP_STATE_PENDING: Push notification to member device sent, but not received public key yet
MEMBERSHIP_STATE_CONFIRMED: Device has confirmed with a public key
MEMBERSHIP_STATE_REJECTED: Device has rejected membership
MEMBERSHIP_STATE_FAILED: Generic error state
MEMBERSHIP_STATE_SUPER: FSM USE ONLY: Super state
MEMBERSHIP_STATE_INITIAL: FSM USE ONLY: Initial state
[ { "id": "string", "deviceId": "string", "organizationId": "string", "quorumId": "string", "quorumName": "string", "createdBy": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "publicKey": "string", "playerId": 0, "state": "MEMBERSHIP_STATE_CREATED" } ]
- Mock server
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/mpc/memberships/{quorumId}
- Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co/v2/mpc/memberships/{quorumId}
- Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co/v2/mpc/memberships/{quorumId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/mpc/memberships/{quorumId}' \
-H 'Authorization: YOUR_API_KEY_HERE'MEMBERSHIP_STATE_CREATED: Freshly created, but no push notification sent
MEMBERSHIP_STATE_PENDING: Push notification to member device sent, but not received public key yet
MEMBERSHIP_STATE_CONFIRMED: Device has confirmed with a public key
MEMBERSHIP_STATE_REJECTED: Device has rejected membership
MEMBERSHIP_STATE_FAILED: Generic error state
MEMBERSHIP_STATE_SUPER: FSM USE ONLY: Super state
MEMBERSHIP_STATE_INITIAL: FSM USE ONLY: Initial state
[ { "id": "string", "deviceId": "string", "organizationId": "string", "quorumId": "string", "quorumName": "string", "createdBy": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "publicKey": "string", "playerId": 0, "state": "MEMBERSHIP_STATE_CREATED" } ]