My Study Notes for Salesforce Certified Mulesoft Developer - Level2. Go thru chapter wise (DataSheet) reference links for each topic provided below and make notes for quick reference. Take Mulesoft Certified Developer Level2 Practice test provided by MuleSoft training as many times as possible @ https://training.mulesoft.com/certification/developer-mule4-level2/practice-exam MCD Level2 - DataSheet Ch1:Expose production-ready Anypoint Platform managed APIs from Mule applications https://help.mulesoft.com/s/question/0D52T00004mXYC6SAO/horizontal-scaling-vs-vertical-scaling-of-mule-workers Implement versioning of specific API-related artifacts https://docs.mulesoft.com/exchange/to-change-raml-version https://forum.raml.org/t/as-versions-is-managed-in-raml/788/3 Configure custom or out-of-the-box (OOTB) API policies https://docs.mulesoft.com/gateway/policies-included-http-caching https://docs.mulesoft.com/api-manager/1.x/json...
Problem: When using Salesforce Connector in Mule4 - Component - " Create job bulk api v2 " - when job is crated, return error: ClientInputError:LineEnding is invalid on user data. Current LineEnding setting is LF Resolution: to resolve the issue, try adding lineSeparator="\n" in dataweave while building csv payload for bulk job. Screenshot:
The Salesforce Composite API and Composite Graph API are both REST API resources designed to execute multiple operations in a single API call, reducing the number of round-trips and optimizing API usage. However, they differ significantly in their capabilities, limits, and use cases. Salesforce Composite Request The Composite API allows you to execute a series of REST API subrequests in a single call, with the output of one subrequest potentially used as input for subsequent subrequests. It’s designed for simpler, sequential operations. Key Features Endpoint : POST /services/data/vXX.X/composite Subrequest Limit : Up to 25 subrequests in a single call. Supported Operations : Supports CRUD operations (Create, Read, Update, Delete), SOQL queries, and other REST API resources (e.g., sObject operations, query, queryAll). Execution : Subrequests are executed sequentially in the order specified in the request body. Dependency : Subrequests can reference the output of previous...
Comments
Post a Comment