curl --request POST \
--url http://localhost:4000/wallets/create/{type} \
--header 'Content-Type: application/json' \
--header 'api_key: <api_key>' \
--data '{
"address": "<string>",
"projectId": 123
}'
{
"address": "<string>",
"created_at": "<string>",
"id": "<string>",
"projectId": 123,
"status": "<string>",
"type": "<string>",
"updated_at": "<string>"
}
curl --request POST \
--url http://localhost:4000/wallets/create/{type} \
--header 'Content-Type: application/json' \
--header 'api_key: <api_key>' \
--data '{
"address": "<string>",
"projectId": 123
}'
{
"address": "<string>",
"created_at": "<string>",
"id": "<string>",
"projectId": 123,
"status": "<string>",
"type": "<string>",
"updated_at": "<string>"
}
Success response
The response is of type object
.