Endpoints Overview

Bind current owner wallet address to a publisher

post

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

ownerstringRequired

Wallet address of the owner

Example: 0x1234567890abcdef1234567890abcdef12345678
Responses
200

Ownership successfully bound

application/json
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