patch: tags: - Account Billing summary: Update Account Billing description: Returns id and sfid of updated account billing record. operationId: update requestBody: content: application/json: schema: $ref: '#/components/request/update' responses: 200: $ref: "#/components/responses/200" 422: $ref: "#/components/responses/422" components: request: update: properties: Sfid: type: string example: R4FS3sKmnnHpkBAHct Account: type: string example: AXsEWTt4o4Pnl2josP LastModifiedByUser: type: string example: 0030H00004r4cgTQAJ required: - Sfid - Account - LastModifiedByUser example: { "Account": "001i000000kZfCVAA2", "LastModifiedByUser": "0030H00004r4cgTQAQ", "KeyAccount": false, "KeyPilotAccount": false } responses: 200: description: Record updated successfully or update ignored. content: application/json: examples: success: summary: Record updated successfully. value: { "data": [ { "Id": 1000, "Sfid": "mXSRtcPEcpBYmDfbFy" } ] } ignored: summary: Update Ignored. value: { "message": "Update Ignored.", "data": { "Id": 1000, "Sfid": "mXSRtcPEcpBYmDfbFy" } } 422: description: Required data not provided. e.g Validation errors, record not present in the system etc. content: application/json: examples: validations: summary: Validation Errors. value: { "errors": { "Account": "The sfid or account is required", "LastModifiedByUser": "The lastmodifiedbyuser is required" } } record-not-exists: summary: Record not present in the System. value: { "errors": { "Sfid": "Model is not found." } }