action drchrono_billing_profiles_list { label: "billing_profiles_list" description: "Retrieve or search billing profiles" provider: drchrono method: GET path: "/api/billing_profiles" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" properties: { archived: { type: "boolean" } cpt_codes: { type: "array" description: "Array of CPT Code objects" items: { type: "object" description: "CPT Code object" properties: { code: { type: "string" } diagnosis_pointers_icd10: { type: "array" description: "ICD10 codes represented in strings" items: { type: "string" } } diagnosis_pointers_icd9: { type: "array" description: "ICD9 codes represented in strings" items: { type: "string" } } modifiers: { type: "array" description: "Modifiers represented in strings" items: { type: "string" } } ndc_code: { type: "array" description: "Array of NDC Code objects" items: { type: "object" description: "NDC code object" properties: { ndc_package_code: { type: "string" } quantity: { type: "string" } units: { type: "string" description: "Can be one of `F2`(International Unit), `GR`(Gram), `ME`(Milligram), `ML`(Millimeter) or `UN`(Unit)" enum: ["F2", "GR", "ME", "ML", "UN"] } } } } price: { type: "string" description: "This field is represented in string format" } quantity: { type: "string" description: "This field is represented in string format" } } } } created_at: { type: "string" } custom_procedure_codes: { type: "array" description: "Array of custom procedure code objects" items: { type: "object" description: "Custom procedure code object" properties: { code: { type: "string" } price: { type: "string" description: "This field is represented in string format" } quantity: { type: "string" description: "This field is represented in string format" } } } } doctor: { type: "string" } hcpcs_codes: { type: "array" description: "Array of HCPCS Code objects" items: { type: "object" description: "HCPCS code object" properties: { code: { type: "string" } diagnosis_pointers_icd10: { type: "array" description: "ICD10 codes represented in array of strings" items: { type: "string" description: "ICD Code in string format" } } diagnosis_pointers_icd9: { type: "array" description: "ICD9 codes represented in array of strings" items: { type: "string" description: "ICD9 Code in string format" } } modifiers: { type: "array" description: "Modifiers represented in array of strings" items: { type: "string" description: "Modifier in string format" } } ndc_code: { type: "array" description: "Array of NDC Code objects" items: { type: "object" description: "NDC code object" properties: { ndc_package_code: { type: "string" } quantity: { type: "string" } units: { type: "string" description: "Can be one of `F2`(International Unit), `GR`(Gram), `ME`(Milligram), `ML`(Millimeter) or `UN`(Unit)" enum: ["F2", "GR", "ME", "ML", "UN"] } } } } price: { type: "string" description: "This field is represented in string format" } quantity: { type: "string" description: "This field is represented in string format" } } } } icd10_codes: { type: "array" description: "ICD10 Codes represented in string format" items: { type: "string" description: "ICD10 Code in string format" } } icd9_codes: { type: "array" description: "ICD9 Codes represented in string format" items: { type: "string" description: "ICD9 Code in string format" } } id: { type: "integer" } name: { type: "string" } updated_at: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }