Retrieves the payment method with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The payment method id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the payment method, or 404 Not Found if it doesn't exist.

db_title
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Display name of this title, in the language identified by .

string
db_language_id

Foreign key of the language this title's is translated into.

globally unique identifier
language_iso_code

ISO code of the language identified by (denormalized copy).

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "c1e97788-6805-4e5a-83dd-bd314c779711",
  "name": "sample string 2",
  "db_language_id": "68f2308c-8d4e-4166-b44f-1a5396990949",
  "language_iso_code": "sample string 4",
  "modified_dateutc": "2026-09-16T08:35:17.108556+00:00"
}

application/xml, text/xml

Sample:
<db_title xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_language_id>68f2308c-8d4e-4166-b44f-1a5396990949</db_language_id>
  <id>c1e97788-6805-4e5a-83dd-bd314c779711</id>
  <language_iso_code>sample string 4</language_iso_code>
  <modified_dateutc>2026-09-16T08:35:17.108Z</modified_dateutc>
  <name>sample string 2</name>
</db_title>