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

GET: /codes/account-type

Get a string representation of an integral ProZ.com account type id.

Parameters

  • codes: One or more comma-separated integer account type ids. If specified, only results for these codes are returned. If omitted, all account types are returned.

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" /codes/account-type?codes=2,1,3

Response

{
  "account_types": [
    {
      "account_type_id": 2,
      "account_type_name": "Freelance translator and/or interpreter"
    },
    {
      "account_type_id": 1,
      "account_type_name": "Translation agency/company"
    },
    {
      "account_type_id": 3,
      "account_type_name": "Freelancer and outsourcer"
    }
  ]
}