Retrieves all the customer account activities with the organization of logged in profile

get

/ccstore/v1/selfservice/invoices/customerAccountActivities

Request

Supported Media Types
Query Parameters
  • Filter response fields
  • Specifies the number of invoices to be retrieved starting from offset. Default value for the limit is 25 and max value is also 25. In case this is not present, complete list or max limit list (whichever is lower) of customer account activities will be returned.
  • Starting index when paging through Customer Account Activities.
  • The sort order
  • The query to use
  • Calculate total results count
    Default Value: false
Back to Top

Response

Supported Media Types

200 Response

Returned when operation succeeds.
Body ()
Root Schema : getCustomerAccountActivities_success_response
Example Response (application/json)
{
    "offset":0,
    "count":2,
    "hasMore":false,
    "limit":25,
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:8080/ccstoreui/v1/selfservice/invoices/customerAccountActivities/"
        }
    ],
    "items":[
        {
            "TotalTransactionsDueForAccount":"0",
            "CustomerName":"Computer Service and Rentals",
            "TotalOpenReceivablesForAccount":"0",
            "@context":{
                "key":"300100193129190"
            },
            "AccountNumber":"CDRM_201224"
        },
        {
            "TotalTransactionsDueForAccount":"186589434164.91",
            "CustomerName":"Computer Service and Rentals",
            "TotalOpenReceivablesForAccount":"186589085466.32",
            "@context":{
                "key":"1006"
            },
            "AccountNumber":"1006"
        }
    ]
}

Default Response

Returned when operation fails.
Body ()
Root Schema : getCustomerAccountActivities_failure_response
Back to Top