API Method /users/relations/add

Adds a new relation between the logged in user and a target user.

Arguments

authentication
This method requires user authentication.
member_id string
The target user ID of the user to create a relationship with. The authenticated user is the user creating the relationship.
relation string
The relation type, either "friends", "family", or "contacts".
 

Example Request

Here's an example request URL:

http://api.evdb.com/rest/users/relations/add?...&member_id=eventor&relation=contacts

Output Parameters

Output from this function is an XML block with the following constructs:
status string
ok
messagestring
User 'user' set as relationship 'relation'

Example XML Response

<?xml version="1.0" encoding="UTF-8"?>

<response status="ok">
  <message>User 'eventor' set as relationship 'contacts'</message>
</response>

Error Codes

This method may return these errors in an error document:

Authentication error
The specified user was not found or provided invalid credentials.
Missing parameter
A mandatory field was not provided.
Not found
The specified parameter was not found.