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": [
    "c51c82eb-9a4d-4514-bc70-2a4057fb9b4f",
    "9655673e-8311-4f89-a95e-e8fa52678cfc"
  ]
}

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>c51c82eb-9a4d-4514-bc70-2a4057fb9b4f</guid>
    <guid>9655673e-8311-4f89-a95e-e8fa52678cfc</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>