Sonatype Nexus OSS REST API

Data

  • Default Namespace
  • XML Schema File: ns0.xsd

The data in this namespace is divided into elements and types. Types define the structure of the data. Elements define specific instances of the types, and are therefore more relevant to REST endpoints, which generally consume and/or produce elements.

The following elements are members of this namespace:

The following types are members of this namespace:

Element error-report-request

Example XML

<?xml version="1.0" encoding="UTF-8"?> <error-report-request> <data> <!--content of type 'error-report-request-dto'--> <description> <!--content of type 'string'--> ... </description> <title> <!--content of type 'string'--> ... </title> <saveErrorReportingSettings> <!--content of type 'boolean'--> ... </saveErrorReportingSettings> <errorReportingSettings> <!--content of type 'error-reporting-settings'--> <useGlobalProxy> <!--content of type 'boolean'--> ... </useGlobalProxy> <jiraUsername> <!--content of type 'string'--> ... </jiraUsername> <reportErrorsAutomatically> <!--content of type 'boolean'--> ... </reportErrorsAutomatically> <jiraPassword> <!--content of type 'string'--> ... </jiraPassword> </errorReportingSettings> </data> </error-report-request>

Example JSON

{ "data" : { "description" : "...", "title" : "...", "saveErrorReportingSettings" : false, "errorReportingSettings" : { "useGlobalProxy" : false, "jiraUsername" : "...", "reportErrorsAutomatically" : false, "jiraPassword" : "..." } } }

Element global-settings

Example XML

<?xml version="1.0" encoding="UTF-8"?> <global-settings> <data> <!--content of type 'global-settings-item'--> <securityRealms> <securityRealmItem> <!--content of type 'string'--> ... </securityRealmItem> <securityRealmItem> <!--(another 'string' type)--> </securityRealmItem> <!--...more "securityRealmItem" elements...--> </securityRealms> <globalRestApiSettings> <!--content of type 'rest-api-settings'--> <forceBaseUrl> <!--content of type 'boolean'--> ... </forceBaseUrl> <uiTimeout> <!--content of type 'int'--> ... </uiTimeout> <baseUrl> <!--content of type 'string'--> ... </baseUrl> </globalRestApiSettings> <smtpSettings> <!--content of type 'smtp-settings'--> <password> <!--content of type 'string'--> ... </password> <port> <!--content of type 'int'--> ... </port> <username> <!--content of type 'string'--> ... </username> <host> <!--content of type 'string'--> ... </host> <tlsEnabled> <!--content of type 'boolean'--> ... </tlsEnabled> <systemEmailAddress> <!--content of type 'string'--> ... </systemEmailAddress> <sslEnabled> <!--content of type 'boolean'--> ... </sslEnabled> </smtpSettings> <systemNotificationSettings> <!--content of type 'system-notification-settings'--> <emailAddresses> <!--content of type 'string'--> ... </emailAddresses> <roles> <!--content of type 'string'--> ... </roles> <roles> <!--(another 'string' type)--> </roles> <!--...more "roles" elements...--> <enabled> <!--content of type 'boolean'--> ... </enabled> </systemNotificationSettings> <securityAnonymousUsername> <!--content of type 'string'--> ... </securityAnonymousUsername> <securityEnabled> <!--content of type 'boolean'--> ... </securityEnabled> <securityAnonymousAccessEnabled> <!--content of type 'boolean'--> ... </securityAnonymousAccessEnabled> <errorReportingSettings> <!--content of type 'error-reporting-settings'--> <useGlobalProxy> <!--content of type 'boolean'--> ... </useGlobalProxy> <jiraUsername> <!--content of type 'string'--> ... </jiraUsername> <reportErrorsAutomatically> <!--content of type 'boolean'--> ... </reportErrorsAutomatically> <jiraPassword> <!--content of type 'string'--> ... </jiraPassword> </errorReportingSettings> <globalConnectionSettings> <!--content of type 'remote-connection-settings'--> <connectionTimeout> <!--content of type 'int'--> ... </connectionTimeout> <queryString> <!--content of type 'string'--> ... </queryString> <userAgentString> <!--content of type 'string'--> ... </userAgentString> <retrievalRetryCount> <!--content of type 'int'--> ... </retrievalRetryCount> </globalConnectionSettings> <securityAnonymousPassword> <!--content of type 'string'--> ... </securityAnonymousPassword> <globalHttpProxySettings> <!--content of type 'remote-http-proxy-settings'--> <authentication> <!--content of type 'authentication-settings'--> <ntlmHost> <!--content of type 'string'--> ... </ntlmHost> <ntlmDomain> <!--content of type 'string'--> ... </ntlmDomain> <password> <!--content of type 'string'--> ... </password> <username> <!--content of type 'string'--> ... </username> </authentication> <proxyPort> <!--content of type 'int'--> ... </proxyPort> <proxyHostname> <!--content of type 'string'--> ... </proxyHostname> <nonProxyHosts> <!--content of type 'string'--> ... </nonProxyHosts> <nonProxyHosts> <!--(another 'string' type)--> </nonProxyHosts> <!--...more "nonProxyHosts" elements...--> </globalHttpProxySettings> </data> </global-settings>

Example JSON

{ "data" : { "securityRealms" : [ "...", ... ], "globalRestApiSettings" : { "forceBaseUrl" : false, "uiTimeout" : ..., "baseUrl" : "..." }, "smtpSettings" : { "password" : "...", "port" : ..., "username" : "...", "host" : "...", "tlsEnabled" : false, "systemEmailAddress" : "...", "sslEnabled" : false }, "systemNotificationSettings" : { "emailAddresses" : "...", "roles" : [ "...", ... ], "enabled" : false }, "securityAnonymousUsername" : "...", "securityEnabled" : false, "securityAnonymousAccessEnabled" : false, "errorReportingSettings" : { "useGlobalProxy" : false, "jiraUsername" : "...", "reportErrorsAutomatically" : false, "jiraPassword" : "..." }, "globalConnectionSettings" : { "connectionTimeout" : ..., "queryString" : "...", "userAgentString" : "...", "retrievalRetryCount" : ... }, "securityAnonymousPassword" : "...", "globalHttpProxySettings" : { "authentication" : { "ntlmHost" : "...", "ntlmDomain" : "...", "password" : "...", "username" : "..." }, "proxyPort" : ..., "proxyHostname" : "...", "nonProxyHosts" : [ "...", ... ] } } }

Element log-config

Example XML

<?xml version="1.0" encoding="UTF-8"?> <log-config> <data> <!--content of type 'log-config-resource'--> <fileAppenderPattern> <!--content of type 'string'--> ... </fileAppenderPattern> <rootLoggerAppenders> <!--content of type 'string'--> ... </rootLoggerAppenders> <rootLoggerLevel> <!--content of type 'string'--> ... </rootLoggerLevel> <fileAppenderLocation> <!--content of type 'string'--> ... </fileAppenderLocation> </data> </log-config>

Example JSON

{ "data" : { "fileAppenderPattern" : "...", "rootLoggerAppenders" : "...", "rootLoggerLevel" : "...", "fileAppenderLocation" : "..." } }

Element mirror-list-request

Example XML

<?xml version="1.0" encoding="UTF-8"?> <mirror-list-request> <data> <mirrorResource> <!--content of type 'mirror-resource'--> <id> <!--content of type 'string'--> ... </id> <url> <!--content of type 'string'--> ... </url> </mirrorResource> <mirrorResource> <!--(another 'mirror-resource' type)--> </mirrorResource> <!--...more "mirrorResource" elements...--> </data> </mirror-list-request>

Example JSON

{ "data" : [ { "id" : "...", "url" : "..." }, ... ] }

Element privilege-request

Example XML

<?xml version="1.0" encoding="UTF-8"?> <privilege-request> <data> <!--content of type 'privilege'--> <type> <!--content of type 'string'--> ... </type> <repositoryTargetId> <!--content of type 'string'--> ... </repositoryTargetId> <methods> <method> <!--content of type 'string'--> ... </method> <method> <!--(another 'string' type)--> </method> <!--...more "method" elements...--> </methods> <repositoryId> <!--content of type 'string'--> ... </repositoryId> <repositoryGroupId> <!--content of type 'string'--> ... </repositoryGroupId> <name> <!--content of type 'string'--> ... </name> <description> <!--content of type 'string'--> ... </description> </data> </privilege-request>

Example JSON

{ "data" : { "type" : "...", "repositoryTargetId" : "...", "methods" : [ "...", ... ], "repositoryId" : "...", "repositoryGroupId" : "...", "name" : "...", "description" : "..." } }

Element repo-group

Example XML

<?xml version="1.0" encoding="UTF-8"?> <repo-group> <data> <!--content of type 'repository-group-resource'--> <repositories> <repo-group-member> <!--content of type 'repository-group-member-repository'--> <name> <!--content of type 'string'--> ... </name> <resourceURI> <!--content of type 'string'--> ... </resourceURI> <id> <!--content of type 'string'--> ... </id> </repo-group-member> <repo-group-member> <!--(another 'repository-group-member-repository' type)--> </repo-group-member> <!--...more "repo-group-member" elements...--> </repositories> </data> </repo-group>

Example JSON

{ "data" : { "repositories" : [ { "name" : "...", "resourceURI" : "...", "id" : "..." }, ... ] } }

Element repo-route

Example XML

<?xml version="1.0" encoding="UTF-8"?> <repo-route> <data> <!--content of type 'repository-route-resource'--> <repositories> <repository> <!--content of type 'repository-route-member-repo'--> <id> <!--content of type 'string'--> ... </id> <resourceURI> <!--content of type 'string'--> ... </resourceURI> <name> <!--content of type 'string'--> ... </name> </repository> <repository> <!--(another 'repository-route-member-repo' type)--> </repository> <!--...more "repository" elements...--> </repositories> <pattern> <!--content of type 'string'--> ... </pattern> <id> <!--content of type 'string'--> ... </id> <groupId> <!--content of type 'string'--> ... </groupId> <ruleType> <!--content of type 'string'--> ... </ruleType> </data> </repo-route>

Example JSON

{ "data" : { "repositories" : [ { "id" : "...", "resourceURI" : "...", "name" : "..." }, ... ], "pattern" : "...", "id" : "...", "groupId" : "...", "ruleType" : "..." } }

Element repository

Example XML

<?xml version="1.0" encoding="UTF-8"?> <repository> <data> <!--content of type 'base-repository'--> <repoType> <!--content of type 'string'--> ... </repoType> <providerRole> <!--content of type 'string'--> ... </providerRole> <format> <!--content of type 'string'--> ... </format> <provider> <!--content of type 'string'--> ... </provider> <exposed> <!--content of type 'boolean'--> ... </exposed> <id> <!--content of type 'string'--> ... </id> <name> <!--content of type 'string'--> ... </name> <contentResourceURI> <!--content of type 'string'--> ... </contentResourceURI> </data> </repository>

Example JSON

{ "data" : { "repoType" : "...", "providerRole" : "...", "format" : "...", "provider" : "...", "exposed" : false, "id" : "...", "name" : "...", "contentResourceURI" : "..." } }

Element repository-status

Example XML

<?xml version="1.0" encoding="UTF-8"?> <repository-status> <data> <!--content of type 'repository-status'--> <id> <!--content of type 'string'--> ... </id> <localStatus> <!--content of type 'string'--> ... </localStatus> <format> <!--content of type 'string'--> ... </format> <dependentRepos> <dependentRepoItem> <!--content of type 'repository-dependent-status'--> <repoType> <!--content of type 'string'--> ... </repoType> <id> <!--content of type 'string'--> ... </id> <format> <!--content of type 'string'--> ... </format> <localStatus> <!--content of type 'string'--> ... </localStatus> </dependentRepoItem> <dependentRepoItem> <!--(another 'repository-dependent-status' type)--> </dependentRepoItem> <!--...more "dependentRepoItem" elements...--> </dependentRepos> <proxyMode> <!--content of type 'string'--> ... </proxyMode> <remoteStatus> <!--content of type 'string'--> ... </remoteStatus> <repoType> <!--content of type 'string'--> ... </repoType> </data> </repository-status>

Example JSON

{ "data" : { "id" : "...", "localStatus" : "...", "format" : "...", "dependentRepos" : [ { "repoType" : "...", "id" : "...", "format" : "...", "localStatus" : "..." }, ... ], "proxyMode" : "...", "remoteStatus" : "...", "repoType" : "..." } }

Element repo-target

Example XML

<?xml version="1.0" encoding="UTF-8"?> <repo-target> <data> <!--content of type 'repository-target-resource'--> <resourceURI> <!--content of type 'string'--> ... </resourceURI> <contentClass> <!--content of type 'string'--> ... </contentClass> <patterns> <pattern> <!--content of type 'string'--> ... </pattern> <pattern> <!--(another 'string' type)--> </pattern> <!--...more "pattern" elements...--> </patterns> <name> <!--content of type 'string'--> ... </name> <id> <!--content of type 'string'--> ... </id> </data> </repo-target>

Example JSON

{ "data" : { "resourceURI" : "...", "contentClass" : "...", "patterns" : [ "...", ... ], "name" : "...", "id" : "..." } }

Element scheduled-task

Example XML

<?xml version="1.0" encoding="UTF-8"?> <scheduled-task> <data> <!--content of type 'scheduled-service-base-resource'--> <typeId> <!--content of type 'string'--> ... </typeId> <schedule> <!--content of type 'string'--> ... </schedule> <properties> <scheduled-task-property> <!--content of type 'scheduled-service-property-resource'--> <value> <!--content of type 'string'--> ... </value> <key> <!--content of type 'string'--> ... </key> </scheduled-task-property> <scheduled-task-property> <!--(another 'scheduled-service-property-resource' type)--> </scheduled-task-property> <!--...more "scheduled-task-property" elements...--> </properties> <name> <!--content of type 'string'--> ... </name> <id> <!--content of type 'string'--> ... </id> <enabled> <!--content of type 'boolean'--> ... </enabled> <alertEmail> <!--content of type 'string'--> ... </alertEmail> </data> </scheduled-task>

Example JSON

{ "data" : { "typeId" : "...", "schedule" : "...", "properties" : [ { "value" : "...", "key" : "..." }, ... ], "name" : "...", "id" : "...", "enabled" : false, "alertEmail" : "..." } }

Element smtp-settings-request

Example XML

<?xml version="1.0" encoding="UTF-8"?> <smtp-settings-request> <data> <!--content of type 'smtp-settings-resource'--> <systemEmailAddress> <!--content of type 'string'--> ... </systemEmailAddress> <tlsEnabled> <!--content of type 'boolean'--> ... </tlsEnabled> <username> <!--content of type 'string'--> ... </username> <password> <!--content of type 'string'--> ... </password> <sslEnabled> <!--content of type 'boolean'--> ... </sslEnabled> <host> <!--content of type 'string'--> ... </host> <port> <!--content of type 'int'--> ... </port> <testEmail> <!--content of type 'string'--> ... </testEmail> </data> </smtp-settings-request>

Example JSON

{ "data" : { "systemEmailAddress" : "...", "tlsEnabled" : false, "username" : "...", "password" : "...", "sslEnabled" : false, "host" : "...", "port" : ..., "testEmail" : "..." } }

Element user-account-request

Example XML

<?xml version="1.0" encoding="UTF-8"?> <user-account-request> <data> <!--content of type 'userAccount'--> <email> <!--content of type 'string'--> ... </email> <firstName> <!--content of type 'string'--> ... </firstName> <userId> <!--content of type 'string'--> ... </userId> <lastName> <!--content of type 'string'--> ... </lastName> </data> </user-account-request>

Example JSON

{ "data" : { "email" : "...", "firstName" : "...", "userId" : "...", "lastName" : "..." } }

Type authentication-settings

Child Elements

name (type) min/max
occurs
description
ntlmHost (string) 0/1 (no documentation provided)
ntlmDomain (string) 0/1 (no documentation provided)
password (string) 0/1 (no documentation provided)
username (string) 0/1 (no documentation provided)

Type base-repository

Child Elements

name (type) min/max
occurs
description
repoType (string) 0/1 (no documentation provided)
providerRole (string) 0/1 (no documentation provided)
format (string) 0/1 (no documentation provided)
provider (string) 0/1 (no documentation provided)
exposed (boolean) 1/1 (no documentation provided)
id (string) 0/1 (no documentation provided)
name (string) 0/1 (no documentation provided)
contentResourceURI (string) 0/1 (no documentation provided)

Type error-reporting-settings

Child Elements

name (type) min/max
occurs
description
useGlobalProxy (boolean) 1/1 (no documentation provided)
jiraUsername (string) 0/1 (no documentation provided)
reportErrorsAutomatically (boolean) 1/1 (no documentation provided)
jiraPassword (string) 0/1 (no documentation provided)

Type errorReportRequest

Child Elements

name (type) min/max
occurs
description
data (error-report-request-dto) 0/1 (no documentation provided)

Type error-report-request-dto

Child Elements

name (type) min/max
occurs
description
description (string) 0/1 (no documentation provided)
title (string) 0/1 (no documentation provided)
saveErrorReportingSettings (boolean) 1/1 (no documentation provided)
errorReportingSettings (error-reporting-settings) 0/1 (no documentation provided)

Type globalConfigurationResourceResponse

Child Elements

name (type) min/max
occurs
description
data (global-settings-item) 0/1 (no documentation provided)

Type global-settings-item

Child Elements

name (type) min/max
occurs
description
securityRealmItem (string) 0/unbounded (no documentation provided)
globalRestApiSettings (rest-api-settings) 0/1 (no documentation provided)
smtpSettings (smtp-settings) 0/1 (no documentation provided)
systemNotificationSettings (system-notification-settings) 0/1 (no documentation provided)
securityAnonymousUsername (string) 0/1 (no documentation provided)
securityEnabled (boolean) 1/1 (no documentation provided)
securityAnonymousAccessEnabled (boolean) 1/1 (no documentation provided)
errorReportingSettings (error-reporting-settings) 0/1 (no documentation provided)
globalConnectionSettings (remote-connection-settings) 0/1 (no documentation provided)
securityAnonymousPassword (string) 0/1 (no documentation provided)
globalHttpProxySettings (remote-http-proxy-settings) 0/1 (no documentation provided)

Type log-config-resource

Child Elements

name (type) min/max
occurs
description
fileAppenderPattern (string) 0/1 (no documentation provided)
rootLoggerAppenders (string) 0/1 (no documentation provided)
rootLoggerLevel (string) 0/1 (no documentation provided)
fileAppenderLocation (string) 0/1 (no documentation provided)

Type logConfigResourceResponse

Child Elements

name (type) min/max
occurs
description
data (log-config-resource) 0/1 (no documentation provided)

Type mirror-resource

Child Elements

name (type) min/max
occurs
description
id (string) 0/1 (no documentation provided)
url (string) 0/1 (no documentation provided)

Type mirrorResourceListRequest

Child Elements

name (type) min/max
occurs
description
mirrorResource (mirror-resource) 0/unbounded (no documentation provided)

Type privilege

Child Elements

name (type) min/max
occurs
description
type (string) 0/1 (no documentation provided)
repositoryTargetId (string) 0/1 (no documentation provided)
method (string) 0/unbounded (no documentation provided)
repositoryId (string) 0/1 (no documentation provided)
repositoryGroupId (string) 0/1 (no documentation provided)
name (string) 0/1 (no documentation provided)
description (string) 0/1 (no documentation provided)

Type privilegeResourceRequest

Child Elements

name (type) min/max
occurs
description
data (privilege) 0/1 (no documentation provided)

Type remote-connection-settings

Child Elements

name (type) min/max
occurs
description
connectionTimeout (int) 1/1 (no documentation provided)
queryString (string) 0/1 (no documentation provided)
userAgentString (string) 0/1 (no documentation provided)
retrievalRetryCount (int) 1/1 (no documentation provided)

Type remote-http-proxy-settings

Child Elements

name (type) min/max
occurs
description
authentication (authentication-settings) 0/1 (no documentation provided)
proxyPort (int) 1/1 (no documentation provided)
proxyHostname (string) 0/1 (no documentation provided)
nonProxyHosts (string) 0/unbounded (no documentation provided)

Type repository-dependent-status

Child Elements

name (type) min/max
occurs
description
repoType (string) 0/1 (no documentation provided)
id (string) 0/1 (no documentation provided)
format (string) 0/1 (no documentation provided)
localStatus (string) 0/1 (no documentation provided)

Type repository-group-member-repository

Child Elements

name (type) min/max
occurs
description
name (string) 0/1 (no documentation provided)
resourceURI (string) 0/1 (no documentation provided)
id (string) 0/1 (no documentation provided)

Type repository-group-resource

Child Elements

name (type) min/max
occurs
description
repo-group-member (repository-group-member-repository) 0/unbounded (no documentation provided)

Type repositoryGroupResourceResponse

Child Elements

name (type) min/max
occurs
description
data (repository-group-resource) 0/1 (no documentation provided)

Type repositoryResourceResponse

Child Elements

name (type) min/max
occurs
description
data (base-repository) 0/1 (no documentation provided)

Type repository-route-member-repo

Child Elements

name (type) min/max
occurs
description
id (string) 0/1 (no documentation provided)
resourceURI (string) 0/1 (no documentation provided)
name (string) 0/1 (no documentation provided)

Type repository-route-resource

Child Elements

name (type) min/max
occurs
description
repository (repository-route-member-repo) 0/unbounded (no documentation provided)
pattern (string) 0/1 (no documentation provided)
id (string) 0/1 (no documentation provided)
groupId (string) 0/1 (no documentation provided)
ruleType (string) 0/1 (no documentation provided)

Type repositoryRouteResourceResponse

Child Elements

name (type) min/max
occurs
description
data (repository-route-resource) 0/1 (no documentation provided)

Type repository-status

Child Elements

name (type) min/max
occurs
description
id (string) 0/1 (no documentation provided)
localStatus (string) 0/1 (no documentation provided)
format (string) 0/1 (no documentation provided)
dependentRepoItem (repository-dependent-status) 0/unbounded (no documentation provided)
proxyMode (string) 0/1 (no documentation provided)
remoteStatus (string) 0/1 (no documentation provided)
repoType (string) 0/1 (no documentation provided)

Type repositoryStatusResourceResponse

Child Elements

name (type) min/max
occurs
description
data (repository-status) 0/1 (no documentation provided)

Type repository-target-resource

Child Elements

name (type) min/max
occurs
description
resourceURI (string) 0/1 (no documentation provided)
contentClass (string) 0/1 (no documentation provided)
pattern (string) 0/unbounded (no documentation provided)
name (string) 0/1 (no documentation provided)
id (string) 0/1 (no documentation provided)

Type repositoryTargetResourceResponse

Child Elements

name (type) min/max
occurs
description
data (repository-target-resource) 0/1 (no documentation provided)

Type rest-api-settings

Child Elements

name (type) min/max
occurs
description
forceBaseUrl (boolean) 1/1 (no documentation provided)
uiTimeout (int) 1/1 (no documentation provided)
baseUrl (string) 0/1 (no documentation provided)

Type scheduled-service-base-resource

Child Elements

name (type) min/max
occurs
description
typeId (string) 0/1 (no documentation provided)
schedule (string) 0/1 (no documentation provided)
scheduled-task-property (scheduled-service-property-resource) 0/unbounded (no documentation provided)
name (string) 0/1 (no documentation provided)
id (string) 0/1 (no documentation provided)
enabled (boolean) 1/1 (no documentation provided)
alertEmail (string) 0/1 (no documentation provided)

Type scheduled-service-property-resource

Child Elements

name (type) min/max
occurs
description
value (string) 0/1 (no documentation provided)
key (string) 0/1 (no documentation provided)

Type scheduledServiceResourceResponse

Child Elements

name (type) min/max
occurs
description
data (scheduled-service-base-resource) 0/1 (no documentation provided)

Type smtp-settings

Child Elements

name (type) min/max
occurs
description
password (string) 0/1 (no documentation provided)
port (int) 1/1 (no documentation provided)
username (string) 0/1 (no documentation provided)
host (string) 0/1 (no documentation provided)
tlsEnabled (boolean) 1/1 (no documentation provided)
systemEmailAddress (string) 0/1 (no documentation provided)
sslEnabled (boolean) 1/1 (no documentation provided)

Type smtp-settings-resource

Child Elements

name (type) min/max
occurs
description
systemEmailAddress (string) 0/1 (no documentation provided)
tlsEnabled (boolean) 1/1 (no documentation provided)
username (string) 0/1 (no documentation provided)
password (string) 0/1 (no documentation provided)
sslEnabled (boolean) 1/1 (no documentation provided)
host (string) 0/1 (no documentation provided)
port (int) 1/1 (no documentation provided)
testEmail (string) 0/1 (no documentation provided)

Type smtpSettingsResourceRequest

Child Elements

name (type) min/max
occurs
description
data (smtp-settings-resource) 0/1 (no documentation provided)

Type system-notification-settings

Child Elements

name (type) min/max
occurs
description
emailAddresses (string) 0/1 (no documentation provided)
roles (string) 0/unbounded (no documentation provided)
enabled (boolean) 1/1 (no documentation provided)

Type userAccount

Child Elements

name (type) min/max
occurs
description
email (string) 0/1 (no documentation provided)
firstName (string) 0/1 (no documentation provided)
userId (string) 0/1 (no documentation provided)
lastName (string) 0/1 (no documentation provided)

Type userAccountRequestResponseWrapper

Child Elements

name (type) min/max
occurs
description
data (userAccount) 0/1 (no documentation provided)

Home

REST Endpoints

XML Data Elements

XML Data Types