cURL
curl --request POST \ --url https://api.onchainden.com/api/v1/members/registrations \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'X-Idempotency-Key: <x-idempotency-key>' \ --data ' { "walletAddress": "<string>", "signature": "<string>" } '
200
Example
{ "data": { "walletAddress": "<string>", "registered": true, "registeredAt": "2023-11-07T05:31:56Z" }}
Complete member registration with a signed message.
API key authentication. Include your API key in the Authorization header.
Idempotency key for safely retrying mutation requests.
Registration successful
Show child attributes