API CreateCountry
Z Podpora.nextis.cz
Description
Method allows You to create new country in system.
Exact name
API_CreateCountry
Type
Standard executable stored procedure.
Specification
Parameter | Data type | Value range | Description | Relation |
---|---|---|---|---|
@Name | nvarchar(50) | Name | ||
@PhoneNumberPrefix | nvarchar(50) | Phone number prefix | ||
@Code | nvarchar(50) | Code |
Return
0 : OK 100 : Item could not be created
Example
DECLARE @return_value int
EXEC @return_value = [API_CreateCountry] @Name= 'Poland' ,@PhoneNumberPrefix= '0048' ,@Code= 'PL'
Notices
None.