Users
Users were retrieved successfully
Input Error
Validation Error
Internal Server Error
GET /api/v4.0/accounts/users HTTP/1.1
Host:
Accept: */*
[
{
"id": "text",
"name": "text",
"users": [
{
"acl": 1,
"contact_name": "text",
"email": "[email protected]",
"id": "text",
"mobile": "text",
"org_id": "text",
"org_name": "text"
}
]
}
]
Create new user
New user was created successfully
Input Error
Validation Error
Internal Server Error
POST /api/v4.0/accounts/users HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 88
{
"acl": 1,
"contact_name": "text",
"email": "[email protected]",
"mobile": "text",
"org_id": "text"
}
{
"id": "text"
}
Account ID
User details were retrieved successfully
Input Error
Validation Error
Internal Server Error
GET /api/v4.0/accounts/{entry_id} HTTP/1.1
Host:
Accept: */*
{
"acl": 1,
"contact_name": "text",
"email": "[email protected]",
"id": "text",
"mobile": "text",
"org_id": "text",
"org_name": "text",
"otpseed": "text"
}
Update details of a user
Account ID
User updated successfully
Input Error
Validation Error
Internal Server Error
PUT /api/v4.0/accounts/{entry_id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 47
{
"acl": 1,
"contact_name": "text",
"mobile": "text"
}
No content
Delete user by user id
Account ID
User was deleted successfully
Input Error
Validation Error
Internal Server Error
DELETE /api/v4.0/accounts/{entry_id} HTTP/1.1
Host:
Accept: */*
No content
API keys received successfully
Input Error
Validation Error
Internal Server Error
GET /api/v4.0/accounts/api-keys HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": [
{
"account_id": "text",
"created_by": "text",
"created_time": 1,
"email": "text",
"id": "text",
"key": "text",
"title": "text"
}
]
}
Revokes API key and makes it unavailable for use
API key ID
API key was revoked successfully
Input Error
Validation Error
Internal Server Error
PUT /api/v4.0/accounts/api-keys/{entry_id} HTTP/1.1
Host:
Accept: */*
No content
Account ID
API keys for specified user were retrieved successfully
Input Error
Validation Error
Internal Server Error
GET /api/v4.0/accounts/{entry_id}/api-keys HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": [
{
"account_id": "text",
"created_by": "text",
"created_time": 1,
"email": "text",
"id": "text",
"key": "text",
"title": "text"
}
]
}
Account ID
API key for specified user was generated successfully
Input Error
Validation Error
Internal Server Error
POST /api/v4.0/accounts/{entry_id}/api-keys HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"title": "text"
}
No content
SSO config retrieved successfully
Bad Request
Validation Error
Internal Server Error
GET /api/v4.0/accounts/sso HTTP/1.1
Host:
Accept: */*
{
"enabled": false,
"params": {
"client_id": "text",
"client_secret": "text",
"issuer": "text",
"roles": [
{
"idp_group": "text",
"reblaze_groups": [
"reblaze-events-viewer"
]
}
],
"roles_claim_key": "text",
"token_expiration_threshold": 1
},
"protocol": "oauth2",
"provider": "okta",
"title": "text"
}
Is that profile enabled or not.
false
SSO provider OAuth2 protocol parameters
SSO protocol
An enumeration.
SSO provider
An enumeration.
Title of the SSO profile that will be displayed on the login page.
SSO config was updated successfully
Bad Request
Validation Error
Internal Server Error
POST /api/v4.0/accounts/sso/oauth2 HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 269
{
"enabled": false,
"params": {
"client_id": "text",
"client_secret": "text",
"issuer": "text",
"roles": [
{
"idp_group": "text",
"reblaze_groups": [
"reblaze-events-viewer"
]
}
],
"roles_claim_key": "text",
"token_expiration_threshold": 1
},
"protocol": "oauth2",
"provider": "okta",
"title": "text"
}
{
"cert_thumbprint": "text",
"code": 1,
"message": "text"
}
Is that profile enabled or not.
false
SSO provider SAML2 protocol parameters
SSO protocol
An enumeration.
SSO provider
An enumeration.
Title of the SSO profile that will be displayed on the login page.
SSO config was updated successfully
Bad Request
Validation Error
Internal Server Error
POST /api/v4.0/accounts/sso/saml2 HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 299
{
"enabled": false,
"params": {
"entityId": "text",
"login_url": "https://example.com",
"roles": [
{
"idp_group": "text",
"reblaze_groups": [
"reblaze-events-viewer"
]
}
],
"roles_claim_key": "text",
"tenantId": "text",
"token_expiration_threshold": 1,
"x509cert": "text"
},
"protocol": "oauth2",
"provider": "okta",
"title": "text"
}
{
"cert_thumbprint": "text",
"code": 1,
"message": "text"
}
Last updated
Was this helpful?