Skip to main content
POST
/
api
/
v1
/
data
/
{uuid}
/
records
Create a record for imported data
curl --request POST \
  --url https://{subdomain}.mindhunters.ai/api/v1/data/{uuid}/records \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "record": {
    "Location": "Los Angeles Headquarters",
    "Price": "1999.00"
  }
}'
{
  "success": true,
  "message": "Record created successfully",
  "data": {
    "data_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "record": {
      "record_id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "field_name": "Field value"
    }
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the data

Body

application/json
  • Option 1 · object
  • Option 2 · object
  • Option 3 · object[]
record
object

Single row keyed by field names

Example:
{
"Location": "Los Angeles Headquarters",
"Price": "1999.00"
}

Response

Record created successfully

success
boolean
Example:

true

message
string
Example:

"Record created successfully"

data
object