API UpdateBranch: Porovnání verzí

Z Podpora.nextis.cz
Přejít na: navigace, hledání
Řádka 1: Řádka 1:
'''API_UpdateBranch'''
+
==== Description ====
@ID int - API_GetBranches.ID
+
Method allows You to update branch in system.
@WorkshopID int - API_GetWorkshops.ID
 
@Name nvarchar(100)
 
@Street nvarchar(200)
 
@City nvarchar(120)
 
@ZIPCode nvarchar(15)
 
@Country nvarchar(70)
 
@Region nvarchar(70)
 
@State nvarchar(80)
 
@StateID int - API_GetCountry.ID
 
@Phone nvarchar(50)
 
@Fax nvarchar(50)
 
@MobilePhone nvarchar(50)
 
@Email nvarchar(70)
 
@Web nvarchar(120)
 
  
 +
==== Exact name ====
 +
<code>API_UpdateBranch</code>
  
''Example:''
+
==== Type ====
 +
Standard executable stored procedure.
 +
 
 +
==== Specification ====
 +
{| class="wikitable"
 +
!Parameter
 +
!Data type
 +
!Value range
 +
!Description
 +
!Relation
 +
|-
 +
|@ID
 +
|int
 +
|
 +
|Branches ID
 +
(could be equal to ID in Your internal system)
 +
|API_GetBranches.ID
 +
|-
 +
|@WorkshopID
 +
|int
 +
|
 +
|Workshops ID
 +
(could be equal to ID in Your internal system)
 +
|API_GetWorkshops.ID
 +
|-
 +
|@Name
 +
|nvarchar(100)
 +
|
 +
|Branch name
 +
|
 +
|-
 +
|@Street
 +
|nvarchar(200)
 +
|
 +
|Street
 +
|
 +
|-
 +
|@City
 +
|nvarchar(120)
 +
|
 +
|City
 +
|
 +
|-
 +
|@ZIPCode
 +
|nvarchar(15)
 +
|
 +
|ZIP Code
 +
|
 +
|-
 +
|@Country
 +
|nvarchar(70)
 +
|
 +
|Country
 +
|
 +
|-
 +
|@Region
 +
|nvarchar(70)
 +
|
 +
|Region
 +
|
 +
|-
 +
|@State
 +
|nvarchar(80)
 +
|
 +
|State
 +
|
 +
|-
 +
|@StateID
 +
|int
 +
|
 +
|ID of country from country list (see relation)
 +
|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 ====
 +
<syntaxhighlight lang="sql">
 
  DECLARE @ID INT  
 
  DECLARE @ID INT  
 
  DECLARE @WorkshopID INT  
 
  DECLARE @WorkshopID INT  
Řádka 68: Řádka 163:
 
   @Email,  
 
   @Email,  
 
   @Web
 
   @Web
 +
</syntaxhighlight>
 +
 +
==== Notices ====
 +
None.

Verze z 25. 7. 2017, 09:07

Description

Method allows You to update branch in system.

Exact name

API_UpdateBranch

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
@ID int Branches ID

(could be equal to ID in Your internal system)

API_GetBranches.ID
@WorkshopID int Workshops ID

(could be equal to ID in Your internal system)

API_GetWorkshops.ID
@Name nvarchar(100) Branch name
@Street nvarchar(200) Street
@City nvarchar(120) City
@ZIPCode nvarchar(15) ZIP Code
@Country nvarchar(70) Country
@Region nvarchar(70) Region
@State nvarchar(80) State
@StateID int ID of country from country list (see relation) 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

 DECLARE @ID INT 
 DECLARE @WorkshopID INT 
 DECLARE @Name NVARCHAR(100) 
 DECLARE @Street NVARCHAR(200) 
 DECLARE @City NVARCHAR(120) 
 DECLARE @ZIPCode NVARCHAR(15) 
 DECLARE @Country NVARCHAR(70) 
 DECLARE @Region NVARCHAR(70) 
 DECLARE @State NVARCHAR(80) 
 DECLARE @StateID INT 
 DECLARE @Phone NVARCHAR(50) 
 DECLARE @Fax NVARCHAR(50) 
 DECLARE @MobilePhone NVARCHAR(50) 
 DECLARE @Email NVARCHAR(70) 
 DECLARE @Web NVARCHAR(120) 
 
 SELECT @ID = id, 
       @WorkshopID = [workshopid], 
       @Name = 'Name2', 
       @Street = [street], 
       @City = [city], 
       @ZIPCode = [zipcode], 
       @Country = [country], 
       @Region = [region], 
       @State = [state], 
       @StateID = [stateid], 
       @Phone = [phone], 
       @Fax = [fax], 
       @MobilePhone = [mobilephone], 
       @Email = [email], 
       @Web = [web] 
 FROM   [api_getbranches] 
 WHERE  id = 3
 
 EXECUTE [Api_updatebranch] 
  @ID, 
  @WorkshopID, 
  @Name, 
  @Street, 
  @City, 
  @ZIPCode, 
  @Country, 
  @Region, 
  @State, 
  @StateID, 
  @Phone, 
  @Fax, 
  @MobilePhone, 
  @Email, 
  @Web

Notices

None.