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": [
    "afa24329-db09-4f2d-939d-31988f88b242",
    "cba3081b-bfad-4c73-bd8f-0d102bc13b99"
  ]
}

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>afa24329-db09-4f2d-939d-31988f88b242</guid>
    <guid>cba3081b-bfad-4c73-bd8f-0d102bc13b99</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>