Get Client Account
This endpoint allows a user to get all available columns in the kanban board. This status can be found on the invoice and dictates in which column the invoice is going to placed in.
Request​
URL​
/credit-decision-status
Method​
GET
Headers​
Content-Type: application/json
Authorization: Bearer eyy...
Response​
Status code200Bodya JSON list of results (paginated) of credit decision status objectsHeaderspagination headers, including link to next page
Response Body
[
    {
        "id": {
            "type": "String",
            "description": null
        },
        "status": {
            "type": "String",
            "description": "The name of the column."
        },
        "description": {
            "type": "String",
            "description": "Description of the column."
        },
        "index": {
            "type": "String",
            "description": "Index decides in what order the columns on the kanban board are displayed."
        },
        "collapsed": {
            "type": "String",
            "description": "Whether the column is collapsed in the UI."
        },
        "enabled": {
            "type": "String",
            "description": "Whether the column is enabled."
        },
    }
]