API documentation for User and Account service
User and Account API (Beta) (1.0.0_Beta)
Download OpenAPI description
Languages
Servers
Mock server
https://fnoapi.redocly.app/_mock/apis/rest/user-accounts/user-account-service/
Generated server url
https://flexera1000-uat.flexnetoperations.com/users-accounts-api/
Bodyapplication/jsonrequired
Mandatory fields: accountId, name
Applicable to CUSTOMER and CHANNEL_PARTNER accounts, visible determines whether or not an account unrelated to this account can see the name of this account when it is in a channel partner tier of an entitlement, line item, or device. If visible is false, this account will appear as Name Withheld to unrelated accounts. Default: true
Example: true
Defines the account type. Valid values: CUSTOMER, PUBLISHER, CHANNEL_PARTNER Default: CUSTOMER. (Using REST API, a new account cannot be created with an accountType of SELF_REGISTERED.)
Example: "CUSTOMER"
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/user-accounts/user-account-service/v1/account
- Generated server urlhttps://flexera1000-uat.flexnetoperations.com/users-accounts-api/v1/account
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://fnoapi.redocly.app/_mock/apis/rest/user-accounts/user-account-service/v1/account \
-H 'Content-Type: application/json' \
-d '{
"accountId": "12345",
"name": "Flexera Software LLC",
"description": "Flexera Software LLC - Main Office",
"address1": "123 Flexera St",
"address2": "Suite 100",
"city": "Chicago",
"state": "IL",
"zipcode": "60601",
"country": "US",
"region": "North America",
"visible": true,
"accountType": "CUSTOMER",
"attributes": [
{
"name": "REGION",
"value": "EMEA"
}
]
}'Response
application/json
{ "status": "string" }
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/user-accounts/user-account-service/v1/accounts
- Generated server urlhttps://flexera1000-uat.flexnetoperations.com/users-accounts-api/v1/accounts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/user-accounts/user-account-service/v1/accounts?accountId=string&accountName=string&accountType=CUSTOMER&rootAccountOnly=false&page=0&limit=0'