stoney core: Search Resource Mapping (REST - LDAP)

Revision as of 17:08, 14 May 2014 by Michael (Talk | contribs)


Also visit stoney core: Search Resource - REST API and stoney core: Global Searches.

Overview

stoney core: search resource methods

Global Search (GET)

The global search only incorporates a subset of attributes in the search. Detailed examples are described under stoney core: Global Searches.


Global Search Response Object (stoney core: Resellers Resource)

All the resellers are stored under the sub tree ou=reseller,dc=stoney-cloud,dc=org. The actual LDIF of a reseller is described under Reseller uid (per Reseller).

The following LDAP attributes must be included in the search:

  • uid (id)
  • organizationName (resellerName)

The following LDAP attributes must be returned:

  • uid (id)
  • sstIsCompany (isCompany)
  • sstIsActive (isActive)
  • organizationName (resellerName)
  • countryName (countryCode)
  • postalCode (postalCode)
  • localityName (localityName)

The following sequence describes the resellers search:

  1. ldapsearch -H ldaps://ldapm.tombstone.ch \
    
-b "ou=reseller,dc=stoney-cloud,dc=org" \
 -s one \
 -D "cn=Manager,dc=stoney-cloud,dc=org" \
 -W -x -LLL \
"(|(uid=*res*)(organizationName=*res*))" uid sstIsCompany sstIsActive organizationName


Global Search Response Object (stoney core: Resellers Resource) Mapping

API Attribute LDAP Attribute
id uid
isCompany sstIsCompany
isActive sstIsActive
countryCode postalCode
resellerName organizationName
resellerName postalCode
localityName localityName

Global Search Response Object (stoney core: Customers Resource)

The following sequence describes the customers search:


Global Search Response Object (stoney core: Customers Resource) Mapping

API Attribute LDAP Attribute
id uid
user mail


People Search (GET)

The following sequence describes the people search:


People Search (GET) Mapping

API Attribute LDAP Attribute
id uid
user mail

Links

Last modified on 14 May 2014, at 17:08