API CreateBranch: Porovnání verzí

Z Podpora.nextis.cz
Přejít na: navigace, hledání
Řádka 1: Řádka 1:
 
==== Description ====
 
==== Description ====
Provides functionality to manage branches within your company. Minimum count of branches is 1 and maximum is not specified (there's no limitation).
+
Method allows You to create new branch in system.
  
 
==== Exact name ====
 
==== Exact name ====
Řádka 6: Řádka 6:
  
 
==== Type ====
 
==== Type ====
Standard executable stored procedure
+
Standard executable stored procedure.
  
 
==== Specification ====
 
==== Specification ====

Verze z 24. 7. 2017, 18:19

Description

Method allows You to create new branch in system.

Exact name

API_CreateBranch

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
@WorkshopID int Workshop ID

(could be equal to ID in Your internal system)

API_GetWorkshops.ID
@Name nvarchar(100) Workshop name
@Street nvarchar(200)
@City nvarchar(120)
@ZIPCode nvarchar(15)
@Country nvarchar(70)
@Region nvarchar(70)
@State nvarchar(80)
@StateID int ID of country API_GetCountry.ID
@Phone nvarchar(50) Phone
@Fax nvarchar(50) Fax
@MobilePhone nvarchar(50) Mobile phone
@Email nvarchar(70) Email
@Web nvarchar(120) Web address

Example

EXEC [API_CreateBranch] @WorkshopID = 1 ,@Name = 'Name' ,@Street = 'Street' ,@City = 'City' ,@ZIPCode = 'ZIPCode' ,@Country = 'Country' ,@Region = 'Region' ,@State ='Česká republika' ,@StateID = 15797 ,@Phone = '+420 556 621 300' ,@Fax = '+420 596 790 789' ,@MobilePhone = '+420 556 621 301' ,@Email = 'info@nextis.cz' ,@Web = 'www.nextis.cz'

Notices

Any notices.