You might consider creating a new object.
If you separated out a friendship object, you would be able to create and modify them without updating the User(s). Each friendship would have two user keys. It would also be a great place to hang extra information about the friendship, such as 'friends since' value.
POST /friendships
{
primaryUser: 43,
secondaryUser: 3
since: "03/16/2010"
}
201 CREATED
location: /friendships/635
Then a query to user 43 could be written to include an array of either user ids, friendship ids, or embedded objects.
GET /users/43
200 SUCCESS
{
id: 43,
name: "john",
friends: [3]
}
Or
200 SUCCESS
{
id: 43,
name: "john",
friends: [635]
}
or
200 SUCCESS
{
id: 43,
name: "john",
friends: [
{
id: 635,
primaryUser: 43,
secondaryUser: 3,
since: "03/16/2010"
}
]
}
Semantics for updating/removing are much more straight forward. 'Removing' a friendship looks better as a DELETE rather than a PATCH or PUT imo.
PUTwith the new friend appended to the user's friend list? – ethagnawl Sep 14 '12 at 14:22