Create the import
Fist step of the import process, must be mapped before it can be started Must be of Content-Type multipart/form-data
Headers
-
Content-Type string
-
Accept string
Body Required
-
Type of record to import, available records are business_staff_members, charges, clients, group_scheme_members, notes, plans, premiums, tasks and valuations
-
Type of import mode to enforce, available modes are store, update and validate
-
CSV file with import records
POST /api/v1/import
curl \
-X POST https://api.plannrcrm.com/api/v1/import \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: multipart/form-data" \
-H "Accept: application/json" \
-F "type=clients" \
-F "mode=store" \
-F "file=@file"
Response examples (200)
{
"mode": "store",
"type": "clients",
"uuid": "bf338d7e-14f0-40b0-a4ca-98b1356e4496",
"errors": {
"client": {
"example": [],
"description": "Client that failed importing"
},
"errors": {
"example": {
"send_welcome_email": [
"The send welcome email field is required."
]
},
"description": "The reasons why the client failed importing"
}
},
"status": "processing",
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "7d4cd72d-5b97-4f54-938a-506cbe5e00aa",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2024-11-20T13:23:59+00:00",
"first_name": "Gareth",
"updated_at": "2024-11-20T13:23:59+00:00",
"with_login": true,
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2024-11-20T13:23:59+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2024-11-20T13:23:59+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"previous_review_date": "2024-11-20T13:23:59+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2024-11-20T13:23:59+00:00"
},
"headers": [
"fname",
"lname",
"email"
],
"mapping": {
"email": "email",
"fname": "first_name",
"lname": "last_name"
},
"progress": 100,
"created_at": "2024-11-20T13:23:59+00:00",
"total_jobs": 4,
"updated_at": "2024-11-20T13:23:59+00:00",
"failed_jobs": 1,
"error_report": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Welcome to Plannr",
"size": "21691783",
"tags": "App\\Http\\Resources\\TagResource",
"type": "type",
"uuid": "d95afc54-16c8-4c16-8449-29c18df3a562",
"parent": "Object",
"status": "uploaded",
"account": "App\\Http\\Resources\\AccountResource",
"filename": "Welcome to Plannr.pdf",
"progress": "100",
"extension": "pdf",
"created_at": "2024-11-20T13:23:59+00:00",
"updated_at": "2024-11-20T13:23:59+00:00",
"folder_name": "folder 2",
"uploaded_at": "2024-11-20T13:23:59+00:00",
"download_url": "https://plannr.valet/file/48b7142c-986b-4b12-b807-c2e57c46db28/download",
"last_modified": "2024-11-20T13:23:59+00:00",
"original_created_at": "2024-11-20T13:23:59+00:00"
},
"jobs_remaining": 1
}