API UpdateCustomerSettings

Z Podpora.nextis.cz
Verze z 7. 8. 2017, 16:13, kterou vytvořil Chrzaszcz (diskuse | příspěvky) (Založena nová stránka s textem „==== Description ==== Method allows You to update customer settings in system. ==== Exact name ==== <code>API_UpdateCustomerSettings</code> ==== Type ===…“)
(rozdíl) ← Starší verze | zobrazit aktuální verzi (rozdíl) | Novější verze → (rozdíl)
Přejít na: navigace, hledání

Description

Method allows You to update customer settings in system.

Exact name

API_UpdateCustomerSettings

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
@ID int Internal system id API_GetBranches.ID


Example

 DECLARE @IDPartner int
 DECLARE @EnableChildRegistration bit
 DECLARE @Blocked bit

 
 SELECT @IDPartner= [IDPartner], 
       @EnableChildRegistration= [EnableChildRegistration], 
       @Blocked= 1
 FROM   [API_GetCustomerSettings] 
 WHERE  id = 3
 
 EXECUTE [API_UpdateCustomerSettings] 
  @IDPartner,
  @EnableChildRegistration,
  @Blocked

Notices

None.