listOrganizations
get
/ccstore/v1/organizations
List Organizations. This operation is used to get the collection of customer organizations from Oracle Commerce Cloud. It can also be used to return the list on a searched string and in a sorted order against various properties of organization.Optionally takes the X-CCOrganization header to specify current Organization id of logged in user.
Request
Supported Media Types
- application/json
Query Parameters
- limit
-
Type:
string
This is the field to determine number of records to be fetched per REST call.- offset
Type:string
This field determines the offset/starting index from which data to be fetched.- q
Type:string
Query string built as per the SCIM standards that helps to search entered string across account properties like 'name'.- sort
Type:string
This field determines the sort order of the list to be fetched.Response
Supported Media Types- application/json
200 ResponseFollowing model is returned when operation succeeds.BodyRoot Schema : listOrganizations_response- items
-
Type:
array
itemsAdditional Properties Allowed:list of organizations - limit
-
Type:
string
Number of records to be fetched. - offset
-
Type:
string
The offset provided. - total
-
Type:
string
Total number of records present in database matching the searched string. - totalResults
-
Type:
string
Total number of records present in database matching the searched string.
Nested Schema : itemsNested Schema : itemsType:object
- active
-
Type:
boolean
Active status of an Organization. Should be true or false. By default the value is set to true - id
-
Type:
string
Id of the Organization - name
-
Type:
string
The name for Organization - repositoryId
-
Type:
string
repository Id of the Organization
Example application/json
{ "total":1, "totalResults":1, "offset":0, "limit":1, "links":[ { "rel":"self", "href":"http://localhost:8080/ccstoreui/v1/organizations?members=bb-110034" } ], "sort":[ { "property":"name", "order":"asc" } ], "items":[ { "name":"National Discount Auto Parts", "repositoryId":"or-100001", "active":true, "id":"or-100001" } ] }
Default ResponseThe error response. The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud: |Error Code|Description| |------------------|------------------| |100070|Invalid Query Expression.| |10002|The value x for parameter 'y' is invalid. 'y' can be 'limit', 'offset' or 'sort'.| |100018|If invalid input is passed.| |100019|If there was any internal error while getting organizations list.|BodyRoot Schema : errorModelType:object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - errors
-
Type:
array
errorsAdditional Properties Allowed:An optional list of errors if multiple errors were encountered - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code - type
-
Type:
string
The URI to the HTTP state code definition
Nested Schema : errorsNested Schema : itemsType:object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code
Examples
Sample Response Payload returned by endpoint:
{ "total": 1, "totalResults": 1, "offset": 0, "limit": 1, "links": [{ "rel": "self", "href": "http://localhost:8080/ccstoreui/v1/organizations?members=bb-110034" }], "sort": [{ "property": "name", "order": "asc" }], "items": [{ "name": "National Discount Auto Parts", "repositoryId": "or-100001", "active": true, "id": "or-100001" }] }