ProZ.com global directory of translation services
The translation workplace
Ideas

GET: /follow/:follower_uuid/following/:followee_uuid

Determine if a given user follows another given user.

Parameters

Query parameters:
  • :follower_uuid: (uuid) The UUID of the follower to lookup. Use the special value me to refer to the currently authenticated user.
  • :followee_uuid: (uuid) The UUID of the followee to lookup.

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" \
        https://api.proz.com/v2/follow/me/following/ad00b4f1-7b79-461d-92bd-57b4373ef1cb

Response

If the :follower_uuid is following the :followee_uuid, a 204 No Content response is returned, and if not, a 404 Not Found response is returned.