Unfollow

POST /api/v1/unfollow

  • Note: It is for unfollwing a user. A successful request would remove the target user from the list of following of the caller. Meanwhile, the caller would be removed from the target user's list of followers as well.

  • Header

FieldTypeRemarks

ApiKey

String

ApiKey acquired from the admin

Authorization

String

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

  • Request Parameters

FieldTypeRemarks

address

String

The target user's relationId or address

  • Request Example

curl POST 'https://api.relationlabs.ai/api/v1/unfollow' \
--header 'ApiKey: <ApiKey>' \
--header 'Authorization: Bearer eyJhbGciOiJFUzI1NiJ9.eyJqdGkiOiJiOTE5N1Y1OGJmYTY0NDRlYmU2ODA1OTc2MmViNzdlZSIsImlzcyI6InJlbGF0aW9ubGFicy5haSIsImlhdCI6MTY2MDgyNDM0MSwic3ViIjoiYmFmMzQta2lhYWEtYWFhYWstYWNnamEtY2FpIiwiZXhwIjoxNjYxNDI5MTQxfQ.Y_1NR0N3NgQCzaR1owS6Ga4AbOIfvH7ucZJJ9-HUK_FrXBtG_WjTa3XNDfmHZIwCFDOzAjSHNcRdDaR0NZGUIw' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address":"1edvh-qqaaa-aaaaj-abina-cai"
}'
  • Response Parameters

FieldTypeRemarks

code

String

the Return Code

desc

String

the Return Message

data

Object

the Data

  • Response Body

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

codedescRemarks

0

success

the flag for a successful request

Last updated