createMember

post

/ccstore/v1/organizationMembers

Create Member. This operation is used to create a profile in Oracle Commerce Cloud for a customer. Optionally takes the x-ccasset-language headers to get translated content in another language. Also it can have optional X-CCOrganization header which is a JSON field to specify current Organization id of logged in user.

Request

Supported Media Types
Header Parameters
Body ()
Root Schema : createMember_request
Type: object
Show Source
Example:
{
    "dynamicProperty":"dynamicProperty value",
    "firstName":"bcd",
    "lastName":"K",
    "roles":[
        {
            "function":"buyer"
        },
        {
            "function":"custom",
            "repositoryId":"customOrganizationalRole"
        }
    ],
    "receiveEmail":"yes",
    "active":true,
    "email":"bcd@example.com"
}
Nested Schema : roles
Type: array
List of role's function that need to associate with the user
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : createMember_response
Type: object
Show Source
Example Response (application/json)
{
    "id":"110026"
}

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| |------------------|------------------| |22003|If the email passed is null or empty| |22004|If there was any internal error while creating the profile| |13001|If role function is given as 'custom' but no repositoryId is given|
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