Skip to main content
cURL
curl --request GET \
  --url https://prolinks.pro/api/v1/organizations/{id} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "type": "Organization",
    "attributes": {
      "name": "<string>",
      "slug": "<string>",
      "email": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of the Organization to get

Response

Organization response

id
integer

The Organization id

type
string

Organization

Example:

"Organization"

attributes
object