Search for existing answers to your product and support questions.
Familiarize yourself with our support site and learn best practices in working with our team.
Manage Service Requests, View and update service requests submitted by you and others in your organization.
Submit a new issue to our technical support team.
Oracle B2C Service insights from our Technical Support team subject matter experts
Browse resources to assist you in launching your implementation and ensure a successful go-live.
Access your OCI account.
Find product documentation for supported versions of B2C and documentation libraries for related service solutions.
You will have the tools to improve your customers' experience when you learn about all the things our products can do.
Find links for API documentation, Custom Processes, Customer Portal, and Agent Browser UI Extensibility Framework.
Explore how accelerators are designed to demonstrate how an integration scenario could be built using the public integration and extension capabilities of the Oracle B2C Service.
Prepare for a successful transition by reviewing upcoming release changes and enhancements.
Explore webinars, events, and feature kits to learn about B2C Service features, functionality, and best practices from the technical experts.
Oracle MyLearn offers a portfolio of free and paid subscription-based learning resources to help you gain valuable skills, accelerate cloud adoption, increase productivity, and transform your business.
Empower your team with the skills to implement, configure, manage, and use your applications with Customer Experience Cloud Training.
Our goal is to facilitate a friendly, supportive environment where members can easily collaborate with each other on solutions and best practices.
Ask and answer questions specific to B2C.
This is an exciting resource intended to help with your Oracle Service Cloud Analytics.
Share product improvement ideas and enhancement requests with Oracle Development, while collaborating with other Oracle customers and partners.
Update your phone number, email notification preferences, and severity 1 and severity 2 contact preferences.
View the contact managers within your organization.
Find contact information of the Technical Account Manager (TAM) and Client Success Manager (CSM) for your organization.
Environment:
Connect REST API, Connect Web Services for SOAP (CWS)Oracle B2C ServiceOracle B2C Service Issue:When using the Oracle B2C Service REST and SOAP APIs, clients may encounter HTTP 503 Service Unavailable responses. These responses typically occur due to API throttling, a built-in product feature that limits the rate of incoming API requests to maintain service stability.Details about API throttling are available in the product documentation [here], the [REST API documentation], and the [SOAP API documentation] under the "API Throttling" section.
Resolution:503 Service Unavailable due to ThrottlingWhen API rate limits are exceeded, Oracle B2C Service will respond with an HTTP status code of 503
For SOAP APIs, please note the exception: throttling at the application layer returns a SOAP fault with HTTP 500 and OSVCStatus header set to 503, while gateway-level throttling returns a bare HTTP 503 without a SOAP fault.
Best Practices for Handling 503 ErrorsImplement Retry LogicHTTP 503 errors are often temporary, especially when caused by throttling. Clients should implement a retry mechanism to gracefully handle such responses. Suggested approach:
This ensures that client applications remain resilient during short-lived service constraints without overloading the system.
Monitor and Log 503 EventsRecord all 503 responses with key details such as:
This data helps with troubleshooting and can be shared with Oracle Support when needed.
EscalationIf 503 errors are frequent or do not resolve after retries:
Note on Other 5xx ErrorsWhile this article focuses on 503 responses, other 5xx errors such as 500, 502, and 504 may also occur occasionally. These errors are typically transient and can also be retried using the same retry strategy outlined above.