👤Profile Registries

  1. Create Registrant

  • POST /api/v1/reseller-logic/registrant

This API endpoint allows users to create a registrant.

Request Headers

Name

Description

Authorization

Required: Bearer {Authorization}

Request Body

{
  "name": "Test-Registrant",
  "organization": "Goodcode",
  "street": "via Rime 33",
  "city": "Mendrisio",
  "postalCode": "6826",
  "country": "Switzerland",
  "phone": "+41782711212",
  "fax": "",
  "email": "goodcode@gmail.com",
  "web": "",
  "dnsSec": "",
  "walletAddress": "312317x1312321"
}

Response

201 Created

  1. Fetch Registrars

  • GET /api/v1/reseller-logic/registrar

This API endpoint allows users to fetch all registrars.

Request Headers

Name

Description

Bearer Token

[Required] The authorization token for accessing the API.

Response

200 OK

  1. Fetch Profile Registry by Wallet Address

  • GET /api/v1/reseller-logic/profile-registry/{walletAddress}

This API endpoint allows to fetch a profile registry by wallet address.

Request Headers

Name

Description

Bearer Token

[Required] The authorization token for accessing the API.

Response

200 OK

Last updated