POST eo-creditcard/delete?ClientId={ClientId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClientId

string

Required

Body Parameters

NameDescriptionTypeAdditional information
SavedCardIds

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "SavedCardIds": [
    "e8779975-e936-4e8c-9bdb-df3450441551",
    "44e75ff0-8c01-44db-a0e1-831f6ddd57e3"
  ]
}

application/xml, text/xml

Sample:
<DeleteCreditCardRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SavedCardIds>
    <guid>e8779975-e936-4e8c-9bdb-df3450441551</guid>
    <guid>44e75ff0-8c01-44db-a0e1-831f6ddd57e3</guid>
  </SavedCardIds>
</DeleteCreditCardRequest>

Response Information

Resource Description

NameDescriptionTypeAdditional information
IsActionSuccessful

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsActionSuccessful": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<CreditCardActionResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IsActionSuccessful>true</IsActionSuccessful>
  <Message>sample string 2</Message>
</CreditCardActionResult>