Get Company Profile

get

/appstore/publisher/v1/profile

Fetch the company (partner) profile details.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful Operation
Body ()
Root Schema : CompanyProfile
Type: object
Show Source
Nested Schema : ContactDetails
Type: object
Show Source
Nested Schema : Item
Type: object
Show Source
Nested Schema : PackageConfigurations
Type: object
Show Source
Nested Schema : PartnerDetails
Type: object
Show Source
Nested Schema : PartnerPortalOptions
Type: object
Show Source
Nested Schema : products
Type: array
Show Source
Nested Schema : publisherType
Type: array
Show Source
Nested Schema : AdditionalContactInfo
Type: object
Show Source
Nested Schema : product
Type: object
Show Source
Nested Schema : categories
Type: array
Show Source
Nested Schema : filters
Type: array
Show Source
Nested Schema : ProductFilter
Type: object
Show Source
Nested Schema : values
Type: array
Show Source

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": "Demo QA OEP ALL",
    "opnNumber": "41511899",
    "opnLevel": {
        "code": "SILVER",
        "name": "Silver"
    },
    "publisherType": [
        {
            "code": "APPLICATIONS",
            "name": "Applications"
        },
        {
            "code": "SERVICES",
            "name": "Services"
        }
    ],
    "products": [
        {
            "code": "12CSTAGEPRODUCT",
            "name": "12CStageProduct"
        },
        {
            "code": "ABCS",
            "name": "abcs"
        }
    ],
    "logoURL": "https://partner.cloudmarketplace.oracle.com/partner/content?contentId=2260557",
    "description": "Stage - Company details",
    "size": {
        "code": "ONE_TO_FIFTY",
        "name": "1 to 50 Employees"
    },
    "founded": "2014",
    "city": "London",
    "state": "london stage",
    "country": {
        "code": "United Kingdom",
        "name": "United Kingdom"
    },
    "domicile": "United Kingdom",
    "contactDetails": {
        "website": "https://www.restautoparter.com",
        "phone": "998526875465",
        "contactEmail": "mohan.sambani@oracle.com",
        "notificationEmail": "mohan.sambani@oracle.com",
        "additionalDetails": {
            "facebookURL": null,
            "twitterURL": "https://twitter.com/restautopartner",
            "linkedInURL": "https://www.linkedin.com/restautopartner"
        }
    },
    "partnerMode": {
        "code": "PUBLISH_APP",
        "name": "Publish App"
    },
    "partnerPortalOptions": {
        "enableReport": true,
        "enablePrivateListing": true,
        "enableDevInstanceRequest": true,
        "enableAutoApproval": true,
        "enableAutoPublish": true
    },
    "packageConfigurations": {
        "enableDownloadablePackage": false,
        "enablePackageCreation": true,
        "pkgTestInstallMandatory": false
    },
    "partnerDetails": {
        "opnMemberType": {
            "code": "SILVER",
            "name": "Silver"
        },
        "opnMembershipType": {
            "code": "STANDARD",
            "name": "Standard"
        },
        "opnDesignation": null
    },
    "isMspEnabled": false
}
Back to Top