Retrieves all the customer account activities with the organization of logged in profile
get
/ccstore/v1/selfservice/invoices/customerAccountActivities
Request
Supported Media Types
- application/json
Query Parameters
-
finder: array
Filter response fields
-
limit: integer
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.
-
offset: integer
Starting index when paging through Customer Account Activities.
-
orderBy: string
The sort order
-
q: string
The query to use
-
totalResults: boolean
Calculate total results countDefault Value:
false
Response
Supported Media Types
- application/json
200 Response
Returned when operation succeeds.
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.
Root Schema : getCustomerAccountActivities_failure_response