API for Schuman's stablecoin platform.
- Retrieve all customers created by the superclient
Create customer via superclient API
Retrieve customer information
Get superclient info
Retrieve all customers cr...
Schuman API (1.0)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://docs.api.schuman.io/_mock/openapi/
- Mock server
https://docs.api.schuman.io/_mock/openapi/customer
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.api.schuman.io/_mock/openapi/customer?page=1&limit=10' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "customers": [ { … } ], "pagination": { "page": 0, "limit": 0, "total": 0, "totalPages": 0 } }
- Mock server
https://docs.api.schuman.io/_mock/openapi/customer
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.api.schuman.io/_mock/openapi/customer \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"name": "Acme Corporation"
}'Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "companyIco": "string", "defaultChain": "string", "defaultChainAddress": "string", "defaultBankAddress": "string", "kycVerified": true, "balance": 0, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
- Mock server
https://docs.api.schuman.io/_mock/openapi/customer/{customerId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.api.schuman.io/_mock/openapi/customer/{customerId}' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "companyIco": "string", "defaultChain": "string", "defaultChainAddress": "string", "defaultBankAddress": "string", "kycVerified": true, "balance": 0, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "addresses": [ {} ], "vibans": [ {} ] }
- Mock server
https://docs.api.schuman.io/_mock/openapi/customer/superclient/info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.api.schuman.io/_mock/openapi/customer/superclient/info \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "createdAt": "2019-08-24T14:15:22Z" }