Get payment account holders

post

/bi/v1/{orgIdentifier}/getPaymentAccountHolderDimensions

First Available Version: 20.1.11

Gets the payment account holder details. This API only returns data for customers using Oracle MICROS Payment Cloud Service.

Request

Path Parameters
Body ()
The request body defines the details of the API request.
Root Schema : paymentAccountHolderPayload
Type: object
Request payload for payment ccount holder dimensions
Show Source
  • Title: Application name
    Maximum Length: 128
    The name of the application which is accessing the API
  • Title: Include
    Maximum Length: 2000
    List of objects to include in response
  • Title: Search criteria
    Maximum Length: 2000
    Search criteria to filter results based on field value
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : paymentAccountHolderDimensions
Type: object
The response body contains information about the payment account holder.
Show Source
Nested Schema : accountHolders
Type: array
An array of account holder details
Show Source
Nested Schema : accountHolders
Type: object
The response body contains information about the account holder.
Show Source

400 Response

Bad Request
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

401 Response

Unauthorized
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

403 Response

Service Unavailable
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

404 Response

Resource Not Found
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

Default Response

Unexpected Error
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source
Back to Top

Examples

The following example shows how to get the payment account holder details by submitting a POST request on the REST resource using cURL. For more information, see Use cURL

curl -i -X POST -H "Authorization: Bearer 
  
   " -H "Content-Type:application/json" -d  https://baseurl/bi/v1/orgidentifier/getPaymentAccountHolderDimensions 
  

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK  Date: Tue, 20 Oct 2020 21:24:33 GMT  Transfer-Encoding: chunked  Content-Type: application/json

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
 "accountHolders":[{
   "acctHldrCode": "123456789",
   "acctHldrName": "Customer 1",
   "stlmtCur": "USD",
   "acctHldrStatus": 2,
   "verification": 1,
   "busEmail": "abc@corporate.com",
   "phoneNum": "9876543210",
   "webAddr": "www.abc.com",
   "streetNum": "12345",
   "streetName": "Boulevard Avenue",
   "city": "Atlanta",
   "state": "GA",
   "zip": "12345",
   "countryCode": "US",
   "createdDt": "2021-04-12"
 }]
}
Back to Top