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

GET: /follow/:uuid/followers

Get list of users who follow a given user.

Parameters

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

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" https://api.proz.com/v2/follow/me/followers

Response

Returns a collection of User summary objects that follow the given user.

{
  "users": [
    {
      "self_link": "https://api.proz.com/v2/users/349b7739-c5d7-4d9c-86ea-d9bfec9ccd45",
      "uuid": "349b7739-c5d7-4d9c-86ea-d9bfec9ccd45",
      "site_name": "Matt Petrowski",
      "account_type": 2,
      "freelancer_profile_link": "https://api.proz.com/v2/freelancer/349b7739-c5d7-4d9c-86ea-d9bfec9ccd45",
      "profile_url": "http://www.proz.com/profile/878225",
      "image_url": "https://static-ssl.proz.com/profile_resources/878225_r50253f6c2e377.png",
      "is_proz_member": true,
      "proz_membership_type": "individual",
      "is_cpn": false,
      "cpn_language_pair": null,
      "native_languages": [
        "eng"
      ],
      "timezone": null,
      "country": "us",
      "skype": null
    }
  ]
}