List organization's attribute buckets
Get a list of available attribute buckets for your organization
Header Parameters
- SlashID-OrgID string required
The organization ID
Example: af5fbd30-7ce7-4548-8b30-4cd59cb2aba1
Responses
- 200
- 400
OK
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage stringresult object[]
name stringThe name of the attribute bucket
sharing_scope stringPossible values: [
organization
,person_pool
]The scope in which attributes in this bucket are available
owner_organization_id stringend_user_permissions stringPossible values: [
no_access
,read_only
,read_write
]The access level for end-users to attributes in this bucket.
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
],
"result": [
{
"name": "string",
"sharing_scope": "organization",
"owner_organization_id": "string",
"end_user_permissions": "no_access"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage string
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
]
}