Endpoints Overview
Associates a given owner wallet address with a publisher within a specific project.
Authorizations
Path parameters
uidstringRequired
Project ID
Body
publisherstringRequired
Unique identifier of the publisher
ownerstringRequiredExample:
Wallet address of the owner
0x1234567890abcdef1234567890abcdef12345678
Responses
200
Ownership successfully bound
application/json
400
Invalid input (e.g., malformed wallet address)
401
Unauthorized (missing/invalid token)
404
Project or publisher not found
post
POST /api/project/{uid}/ownership HTTP/1.1
Host: api.example.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 73
{
"publisher": "text",
"owner": "0x1234567890abcdef1234567890abcdef12345678"
}
{
"message": "Ownership successfully assigned",
"publisher": "text",
"owner": "text"
}
Last updated