Organizations
We are deprecating the API versions namely API v2 and v2.5, to make way for the more usable and maintainable API v3.
As of Nov 30, 2022, API versions, 2 and 2.5 will no longer be operational and relevant requests will begin to fail.
The organizations endpoint handles READ operations for organizations you belong to.
URL: api.transifex.com/organizations/
GET
This request is used to get a list of organizations you are involved with.
The response is a dictionary with information about each organization:
id
- the id of the organizationslug
- the URL slug of the organizationname
- the name of the organizationdescription
- the description of the organizationadministrators
- the username(s) of the Organization Adminscreated
- timestamp of when the organization was createdlast_update
- timestamp of when the organization's details were last modifiedprivate
- whether the organization is private or notlogo_url
- the URL of the organization's logo
Example:
curl -i --user api:<token> -X GET https://api.transifex.com/organizations/
HTTP/1.0 200 OK
...
[
{
"id": 12345,
"slug": "org_slug",
"name": "Organization Name",
"description": "",
"administrators": [
"username1",
"username2"
],
"created": "2017-05-07T21:22:07.965",
"last_update": "2017-05-07T21:22:07.965",
"private": true,
"logo_url": ""
},
...
]