The whole hunk
from line 5, old and new numbered
/
lines
from line 5
55
66# Get RBAC Role
77
8**GET** `/v1/organizations/rbac_roles/{role_id}`
8**GET** `/v1/organizations/rbac_roles/{rbac_role_id}`
99
1010Retrieve an RBAC Role by ID.
1111
from line 13
1313
1414## Path parameters
1515
16- `role_id: string`
16- `rbac_role_id: string`
1717
1818 ID of the RBAC Role.
1919
from line 52
5252## Example
5353
5454```bash
55curl https://api.anthropic.com/v1/organizations/rbac_roles/$ROLE_ID \
55curl https://api.anthropic.com/v1/organizations/rbac_roles/$RBAC_ROLE_ID \
5656 -H 'anthropic-version: 2023-06-01' \
5757 -H "X-Api-Key: $ANTHROPIC_API_KEY"
5858```