post: tags: - Account Setting summary: Create a new Account Setting. description: Returns Id and Sfid of new account setting record. operationId: create requestBody: $ref: "#/components/requestBodies/create" responses: 200: $ref: "#/components/responses/200" 422: $ref: "#/components/responses/422" components: requestBodies: create: required: true, content: application/json: schema: type: object required: - Account - CreatedBy properties: Account: type: string created_by: type: string example: { "Account": "AXsEWTt4o4Pnl2josH", "AllowOtherReasonClosing": true, "AllowOtherReasonMoving": false, "MeeteLiseAgentName": "Test Agent", "CreatedBy": "0030H00005FwwWFQAZ" } responses: 200: description: Record created successfully. content: application/json: example: { "data": { "Id": 3534, "Sfid": "oAj5IpHQ2YB37WEg56" } } 422: description: Required data not provided. content: application/json: example: { "errors": { "Account": "Account is required", "CreatedBy": "Created By is required" } }