SOAP API methode Database_createImport
Beschrijving
Create an import on the database. An import is to fill the database by an external file. Usually it is a tab-delimited file, but the delimiter can be set.
Parameters
Naam | Type | Beschrijving |
---|---|---|
id * | int | Unique identifier (id) of the object Database. The method only applies to the database with this id. |
name * | string | Name of the import. This is the name by which the users can identify the import: for example the original filename |
source | string | Source of the import, this is a url from a remote location using one of the http, https, ftp, ftps, or sftp protocols. If the url isn't set the data has to be added using the addData method. For internal calls (from PxPublisher) it is also possible to pass a PxFile object. |
delimiter | string | Delimiter in the file, default is tab |
privatekey | string | Private key to login with when using sFTP when login credentials are not used. |
sourceformat | string | Format of the import source |
login | Structure of type 'login' | Optional login data (soon deprecated) |
access_token | string | Optional api access token |
* verplichte parameters |
Resultaat
Naam | Type | Beschrijving |
---|---|---|
import | Structure of type 'import' | Could also be false if something went wrong |
Structuur 'login'
Naam | Type | Beschrijving |
---|---|---|
username | string | The username of the login attempt |
account | string | The account name of the login attempt |
password | string | The password for the login attempt |
Structuur 'import'
Naam | Type | Beschrijving |
---|---|---|
id | int | The ID of the import. |
status | string | The status of the import. |
laststarttime | timestamp | The time when the import was started. |
nextstarttime | timestamp | The time when the next import starts. |
strange | boolean | Is the input 'strange'?. |
type | string | The type of the import. |
deletetarget | string | Set the delete target |
ignoreemptyfields | boolean | Should empty fields be ignored in the import? |
removemissing | boolean | Should the missing profiles or subprofiles be removed?. |
name | string | The name of the import. |
repeatable | boolean | Can this import be used as a periodic import?. |
delimiter | string | The delimter to seperate the columns in the data. |
countlines | int | The number of lines in the import. |
countprocessed | int | The number of lines that are already processed. |
maxmatches | int | The max amount of matches there will be changed if there are more profiles/subprofiles. |
datetimeformat | string | The source format of datetime fields in the import file |
rebuilding | boolean | Setting that indicates if the database should be rebuilt afterwards |
notification | string | Returns a string containing one or more e-mail addresses that |
schedule | string | iCalender schedule string that controls when the event runs. If this property is set, the interval and iterations settings can be ignored. |