Get owner information
curl -L \ --url 'http://api.client.nbcgate.tech//api/owner/info' \ --header 'Authorization: YOUR_API_KEY'
{ "data": { "avatar": "text", "countryId": 1, "createdDate": "text", "id": 1, "nameOwner": "text", "ownerSubType": 1, "ownerType": 1, "referral_program_level_id": 1, "siteUrl": "text", "status": 1 } }
Update owner information
Type int json:"type" db:"owner_type_id" binding:"required"
json:"type" db:"owner_type_id" binding:"required"
curl -L \ --request PUT \ --url 'http://api.client.nbcgate.tech//api/owner/info' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "avatar": { "content": "text", "extension": "text", "name": "text" }, "countryId": 1, "id": 1, "name": "text", "siteUrl": "text" }'
No body