/
4.1.16 Plan manager

4.1.16 Plan manager

Plan manager


URL/pl.ashx

Authorization

The method requires authorization using basic authentication. Please use your SIP account login and password.

Description


The list of methods:

  • getPlan - reading information about the plan, tariff names, plan value
  • buyPlan - buy a plan
  • cancelPlan - cancellation of the period plan
  • getPlans - a list of available plans, along with a selection of the client's active plans.

Service parameters:

  • m - method name
  • pm - method parameters (JSON obiect)

Method description:

Pobranie listy planów

To download the plans, call the /pl.ashx method with the following parameters:

Parameter

Description

m

parameter specifies the name of the method. If you download a list of plans, you must set "getPlans" value

pm

optional parameter

  • in case of downloading plans for a specific country, set a JSON object containing co - country (possible values are two-letter country codes in accordance with the ISO 3166-1 alpha-2 standard):
{"co": string}


curl --location --request POST 'https://xxxxxxxxxx/emcd/pl.ashx?m=getPlans' \
--header 'User-Agent: vippie;ios;1.2.3' \
--header 'Content-Type: text/plain' \
--header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \
--header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \
--header 'X-VIPPIE-DEVICE-NAME: iPhone8,1'

Return value

[
    {
        "id": 2,
        "n": "330 min to UK",
        "ds": "330 min to UK",
        "pn": 1,
        "pt": 1,
        "pr": true,
        "pc": 4.9900,
        "sc": 4.9900,
        "a": false,
        "av": true,
        "da": false,
        "ex": "",
        "dl": "",
        "ss": ""
    },
    {
        "id": 1,
        "n": "sms bundle",
        "ds": "sms",
        "pn": 1,
        "pt": 4,
        "pr": false,
        "pc": 0.0000,
        "sc": 1.0000,
        "a": false,
        "av": true,
        "da": false,
        "ex": "",
        "dl": "",
        "ss": ""
    }
]

Return value

  • If successful, we will receive a JSON object

    Response
    [
     {
      "id" :integer,
      "ds" :string,
      "n"  :string,
      "pr" :bool,
      "pt" :integer,
      "pn" :integer,
      "pc" :decimal,
      "sc" :decimal,
      "a"  :bool,
      "av" :bool,
      "ex" :string,
      "dl" :integer,
      "da" :bool,
      "ss" :string
       }
    ]

    where:

    • id - plan id
    • ds - description 
    • n - plan name
    • pt - period type: 1 - month, 2 - week, 4 - day, 5 - year, 6 - quarter, example: Fri = 1 and Mon = 2 means that the plan is for two months.
    • pr - whether the plan is periodic
    • pn - period length
    • pc - period cost
    • sc - startup cost
    • a -if true - the plan purchased by the customer
    • av - if true - plan available, you can buy it
    • ex - Expiration date - in case of periodic plan it means the next payment date, in case of single plan it means the end date of the plan. Date format "yyyy-MM-dd"
    • dl - Days left - this is the expiration date given in days
    • da - if true - select the DID number when purchasing the plan
    • ss - means whether the plan is paid for by Apple App Store or Google Play subscriptions. Possible values:
      • a - active subscription, has been purchased,
      • i - subscription inactive, subscriptions can be purchased,
      • empty value - not applicable, subscriptions cannot be associated with the plan

Download details of plans

To download the plans, call the /pl.ashx method (GET) with the following parameters:

Parameter

Description

m

parameter specifies the name of the method. If you want to download a list of plans, set the value to "getPlan"

pm

JSON object containing the plan id, example:

{"id": integer}


curl --location 'https://xxxxxxx/emcd/pl.ashx?m=getPlan&pm={"id":2}' \
--header 'User-Agent: vippie;ios;1.2.3' \
--header 'Content-Type: text/plain' \
--header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \
--header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \
--header 'X-VIPPIE-DEVICE-NAME: iPhone8,1'

Return value

{
"id": 2,
"as": false,
"tp": [
        {
"id": 15,
"n": "United Kingdom",
"v": 330.0,
"as": -1.0,
"ut": null,
"ft": null
        }
    ]
}

Return value

  • If successful, we will receive a JSON object

    Response
    {
      "id": 2,
      "tp":
        [
          {
            "id": integer,
            "v" : decimal,
            "n" : string, 
            "as": decimal,
            "ut": string,
            "ft": string
          }
       ]
    }

    where:

    • id - plan id
    • tp - tariff plan table
    • tp.id - tariff plan id
    • tp.v - value - tariff plan value
    • tp.n - name -name of the plan's tariff prefix
    • tp.as - account state - current status of the customer's account, the value -1 means that the tariff plan is not assigned to the customer
    • tp.ut - unit - tariff plan unit - currently may contain the following values: mm - minutes or ss - seconds. This unit is set on the server side in the AppSettings.config file using the key
      <add key="tariff_plan_ID_value_unit" value="unit"/>, example  <add key="tariff_plan_33_value_unit" value="ss"/> which means that tariff plan with id = 33 is defined in seconds
    • tp.ft  - format - format in which we want to show the tariff plan value, currently it may contain the following values: mm - minutes or ss - seconds. This unit is set on the server side in the AppSettings.config file using the key <add key="tariff_plan_ID_value_format" value="unit"/>, example  <add key="tariff_plan_33_value_format" value="mm"/> which means that for tariff plan with id = 33, the value should be shown in minutes. Note: when displaying the tariff plan values, they should be grouped by the id field, because several or a dozen prefixes (name field) may be defined for one tariff plan.

      Below is an example in which for a plan with id = 2 we have 3 "prefixes" - name but only 2 different tariff plans

      Name (prefix)ValueValue - formattedAccount stateAccount state - formatted
      Poland - ORANGE360060 minutes348058 minutes.
      Poland - PLAY
      Poland360060 minutes360060 minutes.
      Response
      {
        "id": 2,
        "tp":
          [
            {
              "id": 10,
              "v" : 3600,
              "n" : Poland - ORANGE, 
              "as": 3480,
              "ut": "ss",
              "ft": "mm"
            },
            {
              "id": 10,
              "v" : 3600,
              "n" : Poland - PLAY, 
              "as": 3480,
              "ut": "ss",
              "ft": "mm"
            },
            {
              "id": 11,
              "v" : 3600,
              "n" : Poland, 
              "as": 3600,
              "ut": "ss",
              "ft": "mm"
            },
         ]
      }

Purchasing a plan

To buy the selected plans, call the /pl.ashx method(POST) with the following parameters:

Parameter

Description

m

parameter specifies the name of the method. If you purchase a plan, set the value to "buyPlan"

pm

JSON object containing the plan id, example:

{"id": integer}

curl --location --globoff --request POST 'https://xxxxxxxxxxx/emcd/pl.ashx?m=buyPlan&pm={"id": 2}' \
--header 'User-Agent: vippie;ios;1.2.3' \
--header 'Content-Type: text/plain' \
--header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \
--header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \
--header 'X-VIPPIE-DEVICE-NAME: iPhone8,1'

{
    "did": "",
    "id": 2,
    "n": "330 min to UK",
    "ds": "330 min to UK",
    "pn": 1,
    "pt": 0,
    "pr": true,
    "pc": 4.9900,
    "sc": 4.9900,
    "a": true,
    "av": false,
    "da": false,
    "ex": "2024-09-27",
    "dl": "31",
    "ss": "i"
}


Return value

  • If successful, we will receive a JSON object

    Response
    {
      "id" :1,
      "ds" :"Europa in your hands",
      "n"  :"PlanEuropa",
      "pr" :true,
      "pn" :3,
      "pc" :25.0000,
      "sc" :15.0000,
      "a"  :true,
      "av" :false,
      "ex" :string,
      "dl" :string
      "ss" :string
    }

    where:

    • id - plan id
    • ds - description
    • n - plan name
    • pr - whether the plan is periodic
    • pn - Period number
    • pc - Period cost
    • sc - Startup cost
    • a - Active - plan purchased by the customer
    • av - Available - Can the plan be purchased.
    • ex - Expiration date - in the case of a periodic plan, it means the date of the next payment, in the case of a one-off plan, it means the end date of the plan. Date format "yyyy-MM-dd"
    • dl - Days left - this is the expiration date given in days
    • ss - indicates whether the plan is paid for by Apple App Store or Google Play subscriptions. Possible values: 
      • a - active subscription, has been purchased,
      • i - subscription inactive, subscriptions can be purchased,
      • empty value - not applicable, subscriptions cannot be associated with the plan

  • If an error occurs on the server or any of the parameters contain an incorrect value, the method will return the appropriate 3-digit error code shown below:

    Code

    Description

    400

    Incorrect parameters - one of the parameters was not provided

    447Plan cannot be canceled.
    500Internal server error

Canceling a periodic plan

To cancel the selected periodic plans, call the /pl.ashx method with the parameters:

Parameter

Description

m

parameter specifies the name of the method. If you cancel a plan, set the value to "cancelPlan"

pm

JSON object containing the plan id, example:

{"id": integer}

curl --location --globoff --request POST 'https://xxxxxxxxx/emcd/pl.ashx?m=cancelPlan&pm={"id": 2}' \
--header 'User-Agent: vippie;ios;1.2.3' \
--header 'Content-Type: text/plain' \
--header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \
--header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \
--header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' \


{
    "id": 2,
    "n": "330 min to UK",
    "ds": "330 min to UK",
    "pn": 1,
    "pt": 0,
    "pr": true,
    "pc": 4.9900,
    "sc": 4.9900,
    "a": true,
    "av": true,
    "da": false,
    "ex": "2024-09-27",
    "dl": "30",
    "ss": null
}

Return value

  • If successful, we will receive a JSON object

    Response
    {
      "id" :1,
      "ds" :"Europa in your hands",
      "n"  :"PlanEuropa",
      "pr" :true,
      "pn" :3,
      "pc" :25.0000,
      "sc" :15.0000,
      "a"  :true,
      "av" :false,
      "ex" :"2013-06-22",
      "dl: :20
    }

    where:

    • id - plan id
    • ds - description 
    • n - plan name
    • pr - whether the plan is periodic
    • pn - Period number
    • pc - Period cost
    • sc - Startup cost
    • a - Active - plan purchased by the customer
    • av - Available - Can the plan be purchased.
    • ex - Expiration date - in the case of a periodic plan, it means the date of the next payment, in the case of a one-off plan, it means the end date of the plan
    • dl - Days left - this is the expiration date in days

  • If an error occurs on the server or any of the parameters contain an incorrect value, the method will return the appropriate 3-digit error code shown below:

    Code

    Description

    400

    Incorrect parameters - one of the parameters was not provided

    447Plan cannot be canceled.
    500Internal server error

Related content