Recommended Services for Listing

get

/appstore/publisher/v1/applications/{listingVersionId}/availableservices

Get a list of service integrators. Publishers can recommend particular service integrators for their application listings by adding them to each application listing as recommended services.

Request

Path Parameters
Query Parameters
  • This is a filter. If specified, recommended services specific to the keyword are returned.
  • Limit tells how many records to return (starting from the offset). Limit should be greater than zero and less than or equal to 100 (default=30).
  • Offset and limit together determine how many records to return from the collection. Offset is the starting index of the records to return, which should be greater than or equal to zero (default=0).
Back to Top

Response

Supported Media Types

200 Response

Successful Operation
Body ()
Root Schema : collection
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : recommendedService
Type: object
Show Source

400 Response

Invalid Parameter Value

401 Response

Not Authorized

404 Response

Entity Not Found

500 Response

System Error
Back to Top

Examples

The following example fetches the recommended services for their application listings, by submitting a GET request on the REST resource using cURL.

cURL Example

curl -X GET -H "X-Oracle-UserId: partner-email" -H "Authorization: Bearer Access-token" "https://ocm-apis.cloud.oracle.com/appstore/publisher/v1/applications/6186119/availableservices?keywords=crm&limit=1"

Request Header

X-Oracle-UserId: fname.lname@oracle.com 
Authorization: Bearer Access-token 

Request Body

None

HTTP Status Code:

200 OK

JSON Response:

{
  "items": [
    {
      "recommendedService": {
        "name": "6eTechnologies Cloud Solution",
        "serviceId": 4974621,
        "partnerName": "6e Technologies"
      }
    }
  ],
  "hasMore": true,
  "count": 1,
  "totalResults": 425,
  "links": [
    {
      "rel": "CANONICAL",
      "href": "https://ocm-apis.ocm-apis.cloud.oracle.com/appstore/publisher/v1/applications/6186119/availableservices"
    },
    {
      "rel": "SELF",
      "href": "https://ocm-apis.ocm-apis.cloud.oracle.com/appstore/publisher/v1/applications/6186119/availableservices?keywords=crm&limit=1"
    },
    {
      "rel": "NEXT",
      "href": "https://ocm-apis.ocm-apis.cloud.oracle.com/appstore/publisher/v1/applications/6186119/availableservices?keywords=crm&offset=1&limit=1"
    }
  ]
}
Back to Top