"phone"-JSON (phone, mobilePhone) ist Teil von "customerInfo", welcher als "billToCustomer" oder "shipToCustomer" gesendet wird. Eine Übersicht der Parameter finden Sie hier:

Oops, it seems that you need to place a table or a macro generating a table within the Table Filter macro.

The table is being loaded. Please wait for a bit ...


KeyFormatCNDDescriptionBeschreibung
1

countryCode

string

M

Country code according to ITU-T E.164. Numbers only. No leading zeros.

Ländercode gemäß ITU-T E.164. Nur Ziffern. Keine führenden Nullen.
2

subscriberNumber

string

M

National number according to ITU-T E.164 including national destination code. Numbers only. No leading zeros.

Nationale Nummer gemäß ITU-T E.164 einschließlich Ortskennzahl. Nur Ziffern. Keine führenden Nullen.

International ITU-T E.164-number structure for geographic areas

Die internationale ITU-T E.164 Telefonnummer ist in zwei Code-Bereichen angeordnet:

  • der Ländercode (CC) und

  • die nationale (signifikante) Nummer N(S)N.

Die nationale (signifikante) Nummer kann weiter unterteilt sein in die Ortskennzahl (NDC) und die Teilnehmernummer (SN).


Die oft als Vorwahl bekannte NDC hat eine variable Länge je nach Ländercode. Die NDC ist

  • vierstellig in der N(S)N im Fall eines Landes mit einem dreistelligem Ländercode;

  • fünfstellig in der N(S)N im Fall eines Landes mit zweistelligem Ländercode;

  • sechsstellig in der N(S)N im Fall eines Landes mit einstelligem Ländercode.


Schema

(info) BASEURL= https://www.computop-paygate.com/schemas

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "BASEURL/phone.json",
    "title": "Phone",
    "description": "Phone number",
    "type": "object",
    "properties": {
        "countryCode": {
            "type": "string",
            "minLength": 1,
            "maxLength": 3
        },
        "subscriberNumber": {
            "type": "string",
            "maxLength": 15
        }
    },
    "required": ["countryCode", "subscriberNumber"],
    "additionalProperties": false
}

Beispiel

{
  "countryCode": "33",
  "subscriberNumber": "12345678910"
}