POST
/
wallets
/
create
/
{type}
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>"
}

Headers

api_key
string
required

Path Parameters

type
string
required

Body

application/json
address
string
required
projectId
number
required

Response

200
application/json
Success response
address
string
required
created_at
string
required
id
string
required
projectId
number
required
status
string
required
type
string
required
updated_at
string
required