Package logs of Application

get

/appstore/publisher/v1/applications/{listingVersionId}/packages/{packageVersionId}/packagelogs

Get the details of the specified package logs( validation / test install).

Request

Path Parameters
Query Parameters
  • logs determines which logs requesting(validationresults/testinstalllogs). if query parameter did not mention, it wil give both validation logs and testinstall logs.
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 : StatusComment
Type: object
Show Source
Nested Schema : Item
Type: object
Show Source
Nested Schema : serviceMappings
Type: array
Show Source
Nested Schema : TASError
Type: object
Show Source
Nested Schema : ServiceMapping
Type: object
Show Source
Nested Schema : CustomerSubscription
Type: object
Show Source

400 Response

Bad Request

401 Response

Not Authorized

404 Response

Entity Not Found

500 Response

System Error
Back to Top

Examples

The following example returns details of a Company(Partner) 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/profile"

Request Header

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

Request Body

None

HTTP Status Code:

200 OK

JSON Response:

{
  "name": "3-6577197834",
  "opnNumber": "3-6577197834",
  "opnLevel": {
    "code": "GOLD",
    "name": "Gold"
  },
  "publisherType": [
    {
      "code": "APPLICATIONS",
      "name": "Applications"
    },
    {
      "code": "SERVICES",
      "name": "Services"
    }
  ],
  "products": [
    {
      "code": "service",
      "name": "Service Cloud"
    }
  ],
  "logoURL": "https://ocm-apis.cloud.oracle.com/partner/content?contentId=9482655",
  "description": "http://www.markeptlace.com/about-us",
  "size": {
    "code": "BETWEEN_ONEHUNDREDANDONE_TO_FIVEHUNDRED",
    "name": "101 to 500 Employees"
  },
  "founded": "2001",
  "city": "Banglaore",
  "state": "karnataka",
  "country": {
    "code": "India",
    "name": "India"
  },
  "contactDetails": {
    "website": "www.marketplace.com",
    "phone": "+91.44.45992000",
    "contactEmail": "john.david@oracle.com",
    "notificationEmail": "john.david@oracle.com",
    "additionalDetails": null
  },
  "partnerPortalOptions": {
    "enableReport": true,
    "enablePrivateListing": false,
    "enableDevInstanceRequest": false,
    "enableAutoApproval": false,
    "enableAutoPublish": false
  },
  "packageConfigurations": {
    "enableDownloadablePackage": false,
    "enablePackageCreation": false,
    "pkgTestInstallMandatory": true
  },
  "partnerDetails": { 
    "opnMemberType": {
      "code": "GOLD",
      "name": "Gold"
  },
  "opnMembershipType": {
    "code": "STANDARD",
    "name": "Standard"
  },
  "opnDesignation": null
  }
}
Back to Top