listOrganizationRequests

get

/ccadmin/v1/organizationRequests

List Organization Requests. This operation is used to get the collection of organization requests 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 request.

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : listOrganizationRequests_response
Type: object
Show Source
Nested Schema : items
Type: array
list of organizations request
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : organization
Type: object
Organization
Show Source
Nested Schema : profile
Type: object
Profile Object
Show Source
Example Response (application/json)
{
    "total":1,
    "totalResults":1,
    "offset":0,
    "limit":1,
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:9080/ccadmin/v1/organizationRequests"
        }
    ],
    "items":[
        {
            "organization":{
                "id":"100001"
            },
            "profile":{
                "id":"100001"
            },
            "name":"Organization request name",
            "id":100001,
            "status":"approved"
        }
    ],
    "___etag___":"eyJ2ZXJzaW9uIjowLCJ1cmkiOiJvcmdhbml6YXRpb25SZXF1ZXN0cyIsImhhc2giOiJ4S1JsMHc9PSJ9"
}

Default Response

The 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| |------------------|------------------| |85000|Invalid Query Expression.| |50012|Invalid Sort options.| |10002|The value x for parameter 'y' is invalid. 'y' can be 'limit', 'offset'.| |100019|If there was any internal error while getting organizations request list.|
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top