...
Code Block |
---|
|
curl --insecure -X GET "https://localhost:7443/customerid-rest/services/2.1/organizations/27e326f1-b6ad-46a6-917f-1c3c377c73ee?username=restuser&password=secret" |
Response Document
Note: Organization custom attributes that have not been set (i.e. value is null) will not be returned in API responses.
Code Block |
---|
|
<?xml version="1.0" encoding="utf-8"?>
<Organization xmlns="http://schema.ubisecure.com/customerid/api" inResponseTo="/2.1/users/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" method="GET">
<Attribute name="entityName">
<Value>Organization/EntityName</Value>
</Attribute>
<Attribute name="friendlyName">
<Value>Organization Friendly Name</Value>
</Attribute>
<Attribute name="organizationClass">
<Value>organization type</Value>
</Attribute>
<Attribute name="memberships">
<Value>memberships</Value>
</Attribute>
<Attribute name="customAttribute">
<Value>attributeValue</Value>
</Attribute>
</Organization>
|
...