Developer Hub
Relation ProtocolRelation ONE APIRelation Graph API
English
English
  • Overview
    • RelationONE
  • Developer Guide
    • Glossary
    • Service Address
    • Rate Limits
    • JS-SDK
    • Quick Start
  • Introducing Relation ONE IM
  • API
    • Introduction
    • Signature
    • Auth
    • Profile
      • Bind Address
      • Unbind Address
      • User Info
      • List Address
      • Web2 Account
    • Follows
      • Follow
      • Unfollow
      • Follower
      • Following
      • Web3 Follower
      • Web3 Following
    • Recommendation
    • Groups
      • Create
      • Join
      • Remove Members
      • Leave
      • Disband
      • Transfer Owner
      • Info
      • Members
      • Is Admin
      • Get Announcement
      • Update Announcement
    • Chats
      • Pin
      • Mute
      • List
      • Hide
    • Message
      • Send
      • Read
      • Hide
      • List
      • Unread Count
  • JS-SDK
    • Relation-Auth
      • Quick Start
      • Method
    • IM-JS-SDK
      • Quick Start
      • Static Method
      • Events
      • Method
      • Parse Message
    • Plugin-JS-SDK
      • Quick Start
  • Appendix
    • Error Code
    • Contract Address
Powered by GitBook
On this page
  1. API
  2. Profile

Unbind Address

POST /api/v1/unbindAddress

  • Note: It is for a user to unbind an address that was binded before.

  • Header

Field
Type
Remarks

ApiKey

String

Authorization

String

Bearer ${unifiedAuthToken} , in which the unifiedAuthToken is the result returned by /api/v1/auth

  • Request Parameters

Field
Type
Remarks

address

String

web3 address

  • Request Example

curl  POST 'https://api.relationlabs.ai/api/v1/unbindAddress' \
--header 'ApiKey: <ApiKey>' \
--header 'Authorization: bearer eyJhbGciOiJFUzI1NiJ9.eyJqdGkiOiIxNDUwM2VlYjhhMTk0OWE1YWMzODQ1NGM2YjQwZGExNyIsImlzcyI6InJlbGF0aW9ubGFicy5haSIsImlhdCI6MTY2MTMyNzUxNSwic3ViIjoiYmFmMzQta2lhYWEtYWFhYWstYWNnamEtY2FpIiwiZXhwIjoxNjYxOTMyMzE1fQ.m4CYvKS_9hhabSThIydWRMAGCWhw9S-3Vi9KZmK6fUig2edt1gkw_swkBwkeL7aUSi08RPEozjZ3iwkW-4YRZw' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address":"0x9bd286ef4e3d9ec1af6c6ae9da2f0b3617deab13"
}'
  • Response Parameters

Field
Type
Remarks

code

String

the Return Code

desc

String

the Return Message

data

Object

the Data

  • Response Body

{
    "code": "0",
    "desc": "success",
    "data": null
}
  • Return Code

code
desc
Remarks

0

success

the flag for a successful request

11202

address is not binded

This address is not binded yet.

11203

not the address holder

This address does not belong to the caller.

PreviousBind AddressNextUser Info

Last updated 1 year ago

acquired from the admin

ApiKey