API UpdateCustomerSettings
Z Podpora.nextis.cz
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.