POST Import WordPress Users​
POST
/import/users
Import WordPress users as FluentCRM contacts. Processes users in batches (default 100 per request). Call repeatedly with incrementing page until has_more is false. Assigns tags, lists, and status to imported contacts.
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Request Body​
application/json
JSON
{
"roles": [
"string"
],
"tags": [
0
],
"lists": [
0
],
"map": {
"additionalProperties": "string"
},
"update": "string",
"new_status": "string",
"double_optin_email": "string",
"import_silently": "string",
"page": 1
}
Responses​
Batch import result. Check has_more to determine if additional batches remain.
application/json
JSON
{
"message": "string",
"page_total": 0,
"record_total": 0,
"has_more": true,
"current_page": 0,
"next_page": 0
}