POST api/Account/ManualAccept?customerid={customerid}&accountid={accountid}&aid={aid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerid

string

Required

accountid

string

Required

aid

string

Required

Body Parameters

None.

Response Information

Resource Description

NecpCallbackResponse
NameDescriptionTypeAdditional information
Alert_Reference

string

None.

Status

string

None.

Status_Label

string

None.

Data

CallbackResponse

None.

DataTable

Collection of Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Alert_Reference": "sample string 1",
  "Status": "sample string 2",
  "Status_Label": "sample string 3",
  "Data": {
    "transactionId": "sample string 1"
  },
  "DataTable": [
    {},
    {}
  ]
}

application/xml, text/xml

Sample:
<NecpCallbackResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bankiom.Integrations.NEC">
  <Alert_Reference>sample string 1</Alert_Reference>
  <Data>
    <transactionId>sample string 1</transactionId>
  </Data>
  <DataTable xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:anyType />
    <d2p1:anyType />
  </DataTable>
  <Status>sample string 2</Status>
  <Status_Label>sample string 3</Status_Label>
</NecpCallbackResponse>