API → OrgsGet the privacy settings for an org

This endpoint requires authentication by an org admin. It gets the privacy settings for the authenticated user's org.

Parameters

No parameters

Returns

  • 200 OK

    successful operation

    Name

    Type

    Req.

    body

    object
    optional

    Privacy settings for an org or user.

    Object Properties
    • can_train_on_data

      boolean
      optional

      If we can train on the data. If the user is a member of an organization, the organization's setting will override this. The organization's setting takes priority.

get
/org/privacy
$ curl "https://api.zoo.dev/org/privacy" \
	--header "Authorization: Bearer $TOKEN"
200 OK
Response
{
  "can_train_on_data": false
}