"phone"-JSON (phone, mobilePhone) is part of customerInfo which is sent as "billToCustomer" or "shipToCustomer". An overview of parameters can be found here: 

Data Elements

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

The international ITU-T E.164 phone number is arranged in two code fields:

  • the country code (CC) and

  • the national (significant) number N(S)N.

The national (significant) number may be further subdivided into national destination code (NDC) and subscriber number (SN).


The NDC, often known as area code, is of variable length depending on the the country code. The NDC is

  • four digits of the N(S)N in the case of a country with a three-digit country code;

  • five digits of the N(S)N in the case of a country with a two-digit country code;

  • six digits of the N(S)N in the case of a country with a one-digit country code.


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
}

Sample

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