post: tags: - Account Billing summary: To get List of Accounts Billing description: Returns list of accounts billing matching with given filters applied. operationId: list requestBody: $ref: "#components/requestBodies/request-body" responses: 200: $ref: "#components/responses/200" 422: $ref: "#components/responses/422" components: requestBodies: request-body: required: true, content: application/json: schema: type: object required: - select properties: select: type: object required: - fields properties: fields: type: array where: type: object limit: type: integer offset: type: integer order: type: object examples: basic: summary: Get only required columns with simple filters value: { "select": { "fields": [ "Id", "Sfid", "Account","CreatedDate","LastModifiedByUser","CreatedBy", ] }, "where": { "Account": "001i000000kZfCVAA1" } } advanced: summary: Get all columns with more advanced filters value: { "select": { "fields": [ "*" ] }, "where": { "Account": { "operator": "in", "value": [ "001i000000kZfCVAA1","001i000000kZfCVAA2" ] } }, "limit": 20, "offset": 0, "order": { "CreatedDate": "asc" } } responses: 200: description: Record found successfully or record not present in the system content: application/json: examples: record-found: summary: Record Found. value: { "data": [ { "Id": 996, "Sfid": "Z6WWygcx1Uh3NJinOa", "Account": "001i000000kZfCVAA1", "CreatedDate": "2022-04-12T10:24:05.000000Z", "LastModifiedDate": "2022-04-12T10:24:05.000000Z", "CreatedBy": "0030H00004r4cgTQAQ" } ] } no-record-found: summary: No Record Found. value: { "data": "" } 422: description: Required data not provided. content: application/json: example: { "errors": { "select": "Please add parameter select in request body.", "select.fields": "Please provide * or column names for fields in request body." } }