# Import

Endpoint that provides methods for importing data, typically in batches into Trigg.

In this endpoint we can receive many formats and types, such as JSON and XML requests. 

To get an example of your specific integration, please contact our support team.

 - [POST /import](https://dev.triggloyalty.com/openapi/import/import_data.md): Imports data into OIP by the body request, this method accepts various formats such as JSON, XML, CSV etc. This method may have to be configured by Oculos before usage and the examples below is just
 - [POST /import/form](https://dev.triggloyalty.com/openapi/import/import_form.md): Imports data into OIP from a form using the `application/x-www-form-urlencoded` content type. The endpoint may have to be configured by Oculos before usage.
 - [POST /import/file](https://dev.triggloyalty.com/openapi/import/import_file.md): Imports a file into OIP. Use multipart/form-data with a required field file (the file to upload). Curl example: `curl -X POST "http://api.oculos.no/v4/import/file" -F "file=@path/to/your/file.txt"` Th
