API customer EN: различия между версиями

Материал из WiKi - UserSide
Нет описания правки
Нет описания правки
Строка 3: Строка 3:
Section '''[[API_EN|API]]''' ERP "UserSide"
Section '''[[API_EN|API]]''' ERP "UserSide"


Purpose: Actions with users. Most actions are relevant for [[Supported_billings|manual billing]].
Purpose: Actions with customers. Most actions are relevant for [[Supported_billings|manual billing]].


  Additional parameters:
  Additional parameters:
Строка 12: Строка 12:
==== add ====
==== add ====
''Modified in: 3.13.25 (added is_corporate parameter)''
''Modified in: 3.13.25 (added is_corporate parameter)''
  Description: Adding a user
  Description: Adding a customer
  Optional parameters:
  Optional parameters:
   fio - name of the user
   fio - name of the customer
   codeti - user id in the billing system
   codeti - customer id in the billing system
   is_potential - flag - potential user
   is_potential - flag - potential customer
   is_corporate - flag - legal entity
   is_corporate - flag - legal entity
   billing_id - billing id
   billing_id - billing id
Строка 25: Строка 25:
  Description: Display transactions with user (financial and other)
  Description: Display transactions with user (financial and other)
  Obligatory parameters:
  Obligatory parameters:
   usercode - ''(for version 3.16 and earlier)''' user ID
   usercode - ''(for version 3.16 and earlier)''' customer ID
   customer_id - ''(for version 3.17 and later)'' user ID
   customer_id - ''(for version 3.17 and later)'' customer ID


==== change_balance ====
==== change_balance ====
Строка 34: Строка 34:
  Description: Balance change (income/expense operation)
  Description: Balance change (income/expense operation)
  Obligatory parameters:
  Obligatory parameters:
  customer_id - user ID
  customer_id - customer ID
   amount - Amount
   amount - Amount
   comment - operation notes
   comment - operation notes
Строка 48: Строка 48:
  Description: Billing modification
  Description: Billing modification
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user id
   customer_id - customer id
   billing_id - billing id
   billing_id - billing id
  Optional parameters:
  Optional parameters:
   billing_user_id - user id in billing
   billing_user_id - customer id in billing


==== change_date_connect ====
==== change_date_connect ====
Строка 58: Строка 58:
  Description: Change the connection date
  Description: Change the connection date
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   value - date
   value - date


==== delete ====
==== delete ====
''Added in: 3.14.21''
''Added in: 3.14.21''
  Description: Deleting a user
  Description: Deleting a customer
  Obligatory parameters:
  Obligatory parameters:
   id - user ID
   id - customer ID


==== edit ====
==== edit ====
Строка 74: Строка 74:
''Added in: 3.12rc2''
''Added in: 3.12rc2''


  Description: Editing a user
  Description: Editing a customer
  Obligatory parameters:
  Obligatory parameters:
   id - user ID
   id - customer ID
  Optional parameters:
  Optional parameters:
   account_number - personal account number
   account_number - personal account number
Строка 92: Строка 92:
   group_id - group id
   group_id - group id
   house_id - house id
   house_id - house id
   is_potential - flag - potential user
   is_potential - flag - potential customer
   login - login
   login - login
   manager_id - id of manager employee
   manager_id - id of manager employee
   name - name of user
   name - name of customer
   parent_id - id of parent user ''(for the child user)''
   parent_id - id of parent customer ''(for the child customer)''
   phone0 - mobile phone number
   phone0 - mobile phone number
   phone1 - home phone number
   phone1 - home phone number
Строка 102: Строка 102:
==== get_activity_counter ====
==== get_activity_counter ====
''Added in: 3.12.81''
''Added in: 3.12.81''
  Description: Retrieve the counter of active users
  Description: Retrieve the counter of active customers
  Obligatory parameters:
  Obligatory parameters:
   type - counter type ''(Possible values: net, internet, personal_area)''
   type - counter type ''(Possible values: net, internet, personal_area)''
Строка 108: Строка 108:
==== get_abon_id ====
==== get_abon_id ====
''Modified in: 3.14.34 (added possible account value for data_typer parameter)''
''Modified in: 3.14.34 (added possible account value for data_typer parameter)''
  Description: Retrieving of user ID from incoming data
  Description: Retrieving of customer ID from incoming data
  Obligatory parameters:
  Obligatory parameters:
   data_typer - type of data we are checking ''(possible values: account, billing_uid, codeti, dognumber, ip, login, mac, mail, phone)''
   data_typer - type of data we are checking ''(possible values: account, billing_uid, codeti, dognumber, ip, login, mac, mail, phone)''
   data_value - value
   data_value - value
  Optional parameters:
  Optional parameters:
   is_skip_old - flag - do not search among former users
   is_skip_old - flag - do not search among former customers


==== get_customers_id ====
==== get_customers_id ====
Строка 135: Строка 135:


''Added in: 3.12.8''
''Added in: 3.12.8''
  Description: Retrieve list of user IDs by incoming conditions
  Description: Retrieve list of customer IDs by incoming conditions
  Obligatory parameters:
  Obligatory parameters:
   None
   None
Строка 146: Строка 146:
   date_connect_from - date of connection ''(from)''
   date_connect_from - date of connection ''(from)''
   date_connect_to - date of connection ''(to)''
   date_connect_to - date of connection ''(to)''
   dependence_device_id - id of the device the users depend on
   dependence_device_id - id of the device the customers depend on
   house_id - house id
   house_id - house id
   is_corporate - flag - a legal entity
   is_corporate - flag - a legal entity
   is_ex - flag - former users
   is_ex - flag - former customers
   mark_id - mark id
   mark_id - mark id
   name - name/title of user
   name - name/title of customer
   state_id - status id
   state_id - status id
   tariff_id - tariff id
   tariff_id - tariff id
Строка 158: Строка 158:


==== get_data ====
==== get_data ====
  Description: Receiving user information
  Description: Receiving customer information
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   or
   or
   account_number - user's personal account number
   account_number - customer's personal account number
   +
   +
   billing_id - billing ID
   billing_id - billing ID
Строка 169: Строка 169:


''Added in: 3.12beta35''
''Added in: 3.12beta35''
  Description: Obtain IP,MAC-addresses of users with binding to switches ''(including for work with DHCP)''
  Description: Obtain IP,MAC-addresses of customers with binding to switches ''(including for work with DHCP)''


==== get_last_ip ====
==== get_last_ip ====
  Description: Get the last used IP address for users
  Description: Get the last used IP address for customers


==== get_mac_history ====
==== get_mac_history ====
Строка 178: Строка 178:
''Added to: 3.16dev8''
''Added to: 3.16dev8''


  Description: Get MAC address change history by user
  Description: Get MAC address change history by customer
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID


==== get_max_agreement_number ====
==== get_max_agreement_number ====
Строка 187: Строка 187:
  Description: Get the maximum occupied contract number ''(numeric)''
  Description: Get the maximum occupied contract number ''(numeric)''
  Optional parameters:
  Optional parameters:
   billing_id - billing id of users among which to perform the selection
   billing_id - billing id of customers among which to perform the selection


==== ip_add ====
==== ip_add ====
Строка 196: Строка 196:
  Description: Add IP address
  Description: Add IP address
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   value - IP
   value - IP
  Optional parameters:
  Optional parameters:
   mac - MAC of the user
   mac - MAC of the customer


==== ip_delete ====
==== ip_delete ====
Строка 207: Строка 207:
  Description: Delete IP address
  Description: Delete IP address
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   value - ip
   value - ip


Строка 214: Строка 214:
''Added in: 3.14.71''
''Added in: 3.14.71''


  Description: Adds a subnet of IP addresses for a user
  Description: Adds a subnet of IP addresses for a customer
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   ip - initial ip address
   ip - initial ip address
   subnet - subnet mask/VLSM ''(for example: 24)''
   subnet - subnet mask/VLSM ''(for example: 24)''
Строка 224: Строка 224:
''Added to: 3.14.71''
''Added to: 3.14.71''


  Description: Deletes a subnet of IP addresses from a user
  Description: Deletes a subnet of IP addresses from a customer
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   ip - initial ip address
   ip - initial ip address


Строка 233: Строка 233:
''Excluded in: 3.13''
''Excluded in: 3.13''


  Description: List of tariffs available to the user to change tariffs
  Description: List of tariffs available to the customer to change tariffs
  Obligatory parameters:
  Obligatory parameters:
   usercode - user ID
   usercode - customer ID


==== mark_add ====
==== mark_add ====
''Added in: 3.12.82''
''Added in: 3.12.82''
  Description: Adds a label on a user
  Description: Adds a label on a customer
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   mark_id - mark id
   mark_id - mark id


==== mark_delete ====
==== mark_delete ====
''Added in: 3.12.82''
''Added in: 3.12.82''
  Description: Deletes a tag from a user
  Description: Deletes a tag from a customer
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   mark_id - mark id
   mark_id - mark id


Строка 260: Строка 260:
''Modified in: 3.14.53 (added date_add_from, date_add_to, operator_id parameters)''
''Modified in: 3.14.53 (added date_add_from, date_add_to, operator_id parameters)''


  Description: Display correspondence with a user
  Description: Display correspondence with a customer
  Optional parameters ''(but must be one)'':
  Optional parameters ''(but must be one)'':
   usercode - ''(for version 3.16 and earlier)'' user ID
   usercode - ''(for version 3.16 and earlier)'' customer ID
   customer_id - ''(for version 3.17 and later)'' user ID
   customer_id - ''(for version 3.17 and later)'' customer ID
   date_add_from - date of message (from)
   date_add_from - date of message (from)
   date_add_to - date of message (to)
   date_add_to - date of message (to)
Строка 271: Строка 271:
==== msg_add ====
==== msg_add ====
''Added in: 3.13.25''
''Added in: 3.13.25''
  Description: Adds a message from a user
  Description: Adds a message from a customer
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   text - Message text
   text - Message text


Строка 283: Строка 283:
  Description: Change password for logging in to the Personal Cabinet
  Description: Change password for logging in to the Personal Cabinet
  Obligatory parameters:
  Obligatory parameters:
   usercode - ''(for version 3.16 and earlier)'' user ID
   usercode - ''(for version 3.16 and earlier)'' customer ID
   customer_id - ''(for version 3.17 and later)'' user ID
   customer_id - ''(for version 3.17 and later)'' customer ID
   pass_new - new password
   pass_new - new password
  Additional parameters:
  Additional parameters:
Строка 295: Строка 295:
  Description: Add additional service
  Description: Add additional service
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   service_id - id of additional service
   service_id - id of additional service
  Optional parameters:
  Optional parameters:
Строка 307: Строка 307:
  Description: Remove additional service
  Description: Remove additional service
  Obligatory parameters:
  Obligatory parameters:
   customer_id - user ID
   customer_id - customer ID
   service_id - id of additional service
   service_id - id of additional service


Строка 313: Строка 313:


''Added in: 3.12beta35''
''Added in: 3.12beta35''
  Description: specifies the MAC address for the user's IP address
  Description: specifies the MAC address for the customer's IP address
  Obligatory parameters:
  Obligatory parameters:
   ip - IP address of the user (for example: 192.168.0.1)
   ip - IP address of the customer (for example: 192.168.0.1)
   mac - MAC address of the user (for example: 00:11:22:33:44:55)
   mac - MAC address of the customer (for example: 00:11:22:33:44:55)


==== state_change ====
==== state_change ====
Строка 324: Строка 324:
''Added in: 3.12.8''
''Added in: 3.12.8''


  Description: change the job status of a user
  Description: change the job status of a customer
  Obligatory parameters:
  Obligatory parameters:
   usercode - ''(for version 3.16 and earlier)'' user ID
   usercode - ''(for version 3.16 and earlier)'' customer ID
   customer_id - ''(for version 3.17 and later)'' user ID
   customer_id - ''(for version 3.17 and later)'' customer ID
   state_id - user status ID (0 - stop, 1 - paused, 2 - active)
   state_id - customer status ID (0 - stop, 1 - paused, 2 - active)


==== tarif_change ====
==== tarif_change ====
Строка 334: Строка 334:
''Modified in: 3.17dev1 (excluded usercode parameter, added customer_id parameter)''
''Modified in: 3.17dev1 (excluded usercode parameter, added customer_id parameter)''


  Description: change of tariff for a user
  Description: change of tariff for a customer
  Obligatory parameters:
  Obligatory parameters:
   usercode - ''(for version 3.16 and earlier)'' user ID
   usercode - ''(for version 3.16 and earlier)'' customer ID
   customer_id - ''(for version 3.17 and later)'' user ID
   customer_id - ''(for version 3.17 and later)'' customer ID
   tarif - new tariff ID
   tarif - new tariff ID


Строка 345: Строка 345:
''Added in: 3.12.69''
''Added in: 3.12.69''


  Description: transfer a user to the ''Former users'' category
  Description: transfer a customer to the ''Former customers'' category
  Obligatory parameters:
  Obligatory parameters:
   usercode - ''(for version 3.16 and earlier)'' user ID
   usercode - ''(for version 3.16 and earlier)'' customer ID
   customer_id - ''(for version 3.17 and later)'' user ID
   customer_id - ''(for version 3.17 and later)'' customer ID


==== to_normal ====
==== to_normal ====
Строка 355: Строка 355:
''Added in: 3.12.90''
''Added in: 3.12.90''


  Description: switch user to normal status (from "Former users")
  Description: switch customer to normal status (from "Former customers")
  Obligatory parameters:
  Obligatory parameters:
   usercode - ''(for version 3.16 and earlier)'' user ID
   usercode - ''(for version 3.16 and earlier)'' customer ID
   customer_id - ''(for version 3.17 and later)'' user ID
   customer_id - ''(for version 3.17 and later)'' customer ID

Версия от 19:13, 29 марта 2024

en | ru

Section API ERP "UserSide"

Purpose: Actions with customers. Most actions are relevant for manual billing.

Additional parameters:
action - subcategory of the request (possible value: see below)

Subcategories

add

Modified in: 3.13.25 (added is_corporate parameter)

Description: Adding a customer
Optional parameters:
 fio - name of the customer
 codeti - customer id in the billing system
 is_potential - flag - potential customer
 is_corporate - flag - legal entity
 billing_id - billing id

abon_hist

Modified in: 3.17dev1 (excluded usercode parameter, added customer_id parameter)

Description: Display transactions with user (financial and other)
Obligatory parameters:
 usercode - (for version 3.16 and earlier)' customer ID
 customer_id - (for version 3.17 and later) customer ID

change_balance

Modified in: 3.16dev2 (removed operator_id parameter, added employee_id parameter)

Modified in: 3.13.22 (added operator_id parameter)

Description: Balance change (income/expense operation)
Obligatory parameters:
customer_id - customer ID
 amount - Amount
 comment - operation notes
Optional parameters:
 employee_id - employee ID
 operator_id - operator ID (before version 3.16dev2)

change_billing

Modified in: 3.16.23 (added billing_user_id parameter)

Added in: 3.12.48

Description: Billing modification
Obligatory parameters:
 customer_id - customer id
 billing_id - billing id
Optional parameters:
 billing_user_id - customer id in billing

change_date_connect

Added in: 3.12.80

Description: Change the connection date
Obligatory parameters:
 customer_id - customer ID
 value - date

delete

Added in: 3.14.21

Description: Deleting a customer
Obligatory parameters:
 id - customer ID

edit

Modified in: 3.16dev3 (added group_id parameter)

Modified in: 3.13.56 (added manager_id parameter)

Added in: 3.12rc2

Description: Editing a customer
Obligatory parameters:
 id - customer ID
Optional parameters:
 account_number - personal account number
 agreement_date - agreement date
 agreement_number - agreement number
 apartment_number - flat number
 comment - notes
 date_activity - date of network activity
 date_activity_inet - date of internet activity
 date_connect - date of connection
 email - email address
 entrance - entrance number
 flag_corporate - flag - legal entity
 floor - floor
 group_id - group id
 house_id - house id
 is_potential - flag - potential customer
 login - login
 manager_id - id of manager employee
 name - name of customer
 parent_id - id of parent customer (for the child customer)
 phone0 - mobile phone number
 phone1 - home phone number

get_activity_counter

Added in: 3.12.81

Description: Retrieve the counter of active customers
Obligatory parameters:
 type - counter type (Possible values: net, internet, personal_area)

get_abon_id

Modified in: 3.14.34 (added possible account value for data_typer parameter)

Description: Retrieving of customer ID from incoming data
Obligatory parameters:
 data_typer - type of data we are checking (possible values: account, billing_uid, codeti, dognumber, ip, login, mac, mail, phone)
 data_value - value
Optional parameters:
 is_skip_old - flag - do not search among former customers

get_customers_id

Modified in: 3.18.10 (added is_corporate parameter)

Modified in: 3.16dev3 (added parameters name, limit, is_like)

Modified in: 3.15.26 (added is_ex parameter)

Modified in: 3.14.71 (added dependence_device_id parameter)

Modified in: 3.14.58 (added balance_from, balance_to, state_id parameters)

Modified in: 3.14.41 (added date_connect_from and date_connect_to parameters)

Modified in: 3.14.5 (added address_unit_id parameter)

Modified in: 3.13.48 (added tariff_id parameter)

Modified in: 3.13.35 (added mark_id parameter)

Added in: 3.12.8

Description: Retrieve list of customer IDs by incoming conditions
Obligatory parameters:
 None
Optional parameters (but at least one condition must be specified):
 address_unit_id - address unit id
 appartment - number of the flat
 balance_from - balance (from)
 balance_to - balance (to)
 billing_id - billing number id
 date_connect_from - date of connection (from)
 date_connect_to - date of connection (to)
 dependence_device_id - id of the device the customers depend on
 house_id - house id
 is_corporate - flag - a legal entity
 is_ex - flag - former customers
 mark_id - mark id
 name - name/title of customer
 state_id - status id
 tariff_id - tariff id
 limit - maximum number of records to return in the response
 is_like - flag - use substring comparison where possible (not a full match)

get_data

Description: Receiving customer information
Obligatory parameters:
 customer_id - customer ID
 or
 account_number - customer's personal account number
 +
 billing_id - billing ID

get_ip_port_device_commutation

Added in: 3.12beta35

Description: Obtain IP,MAC-addresses of customers with binding to switches (including for work with DHCP)

get_last_ip

Description: Get the last used IP address for customers

get_mac_history

Added to: 3.16dev8

Description: Get MAC address change history by customer
Obligatory parameters:
 customer_id - customer ID

get_max_agreement_number

Added in: 3.12.3

Description: Get the maximum occupied contract number (numeric)
Optional parameters:
 billing_id - billing id of customers among which to perform the selection

ip_add

Modified in: 3.17.36 (added mac parameter)

Added in: 3.12.83

Description: Add IP address
Obligatory parameters:
 customer_id - customer ID
 value - IP
Optional parameters:
 mac - MAC of the customer

ip_delete

Added in: 3.12.83

Description: Delete IP address
Obligatory parameters:
 customer_id - customer ID
 value - ip

ip_subnet_add

Added in: 3.14.71

Description: Adds a subnet of IP addresses for a customer
Obligatory parameters:
 customer_id - customer ID
 ip - initial ip address
 subnet - subnet mask/VLSM (for example: 24)

ip_subnet_delete

Added to: 3.14.71

Description: Deletes a subnet of IP addresses from a customer
Obligatory parameters:
 customer_id - customer ID
 ip - initial ip address

list_tarif_available

Excluded in: 3.13

Description: List of tariffs available to the customer to change tariffs
Obligatory parameters:
 usercode - customer ID

mark_add

Added in: 3.12.82

Description: Adds a label on a customer
Obligatory parameters:
 customer_id - customer ID
 mark_id - mark id

mark_delete

Added in: 3.12.82

Description: Deletes a tag from a customer
Obligatory parameters:
 customer_id - customer ID
 mark_id - mark id

msg

Modified in: 3.17dev1 (usercode parameter removed, customer_id parameter added)

Modified in: 3.16dev3 (made usercode parameter optional)

Modified in: 3.16dev2 (excluded operator_id parameter, added employee_id parameter)

Modified in: 3.14.53 (added date_add_from, date_add_to, operator_id parameters)

Description: Display correspondence with a customer
Optional parameters (but must be one):
 usercode - (for version 3.16 and earlier) customer ID
 customer_id - (for version 3.17 and later) customer ID
 date_add_from - date of message (from)
 date_add_to - date of message (to)
 employee_id - id of the employee who authored the message
 operator_id - id of the operator who authored the message (before version 3.16dev2)

msg_add

Added in: 3.13.25

Description: Adds a message from a customer
Obligatory parameters:
 customer_id - customer ID
 text - Message text

pass_change

Modified in: 3.17dev1 (usercode parameter removed, customer_id parameter added)

Modified in: 3.15.23 (pass_old parameter became optional)

Description: Change password for logging in to the Personal Cabinet
Obligatory parameters:
 usercode - (for version 3.16 and earlier) customer ID
 customer_id - (for version 3.17 and later) customer ID
 pass_new - new password
Additional parameters:
 pass_old - current password

service_add

Added in: 3.18beta1

Description: Add additional service
Obligatory parameters:
 customer_id - customer ID
 service_id - id of additional service
Optional parameters:
 price - individual price
 comment - notes

service_remove

Added in: 3.18beta1

Description: Remove additional service
Obligatory parameters:
 customer_id - customer ID
 service_id - id of additional service

set_mac_by_ip

Added in: 3.12beta35

Description: specifies the MAC address for the customer's IP address
Obligatory parameters:
 ip - IP address of the customer (for example: 192.168.0.1)
 mac - MAC address of the customer (for example: 00:11:22:33:44:55)

state_change

Modified in: 3.17dev1 (removed usercode parameter, added customer_id parameter)

Added in: 3.12.8

Description: change the job status of a customer
Obligatory parameters:
 usercode - (for version 3.16 and earlier) customer ID
 customer_id - (for version 3.17 and later) customer ID
 state_id - customer status ID (0 - stop, 1 - paused, 2 - active)

tarif_change

Modified in: 3.17dev1 (excluded usercode parameter, added customer_id parameter)

Description: change of tariff for a customer
Obligatory parameters:
 usercode - (for version 3.16 and earlier) customer ID
 customer_id - (for version 3.17 and later) customer ID
 tarif - new tariff ID

to_ex

Modified in: 3.17dev1 (removed usercode parameter, added customer_id parameter)

Added in: 3.12.69

Description: transfer a customer to the Former customers category
Obligatory parameters:
 usercode - (for version 3.16 and earlier) customer ID
 customer_id - (for version 3.17 and later) customer ID

to_normal

Modified in: 3.17dev1 (removed usercode parameter, added customer_id parameter)

Added in: 3.12.90

Description: switch customer to normal status (from "Former customers")
Obligatory parameters:
 usercode - (for version 3.16 and earlier) customer ID
 customer_id - (for version 3.17 and later) customer ID