object CreateLocationsBulkOutput

Fields

FieldTypeDescription
request_idString

Public API request ID that identifies the related record.

complexityInt

Complexity as a numeric value.

created_countInt

Number of locations actually created. Can be lower than the requested name count if some names already existed - those are skipped, not treated as an error, so the call is safe to retry.

skipped_countInt

Number of requested names that already existed and were skipped.

skipped_names[String]

Names that already existed and were skipped, truncated to the first 100; use skipped_count for the exact total.

Referenced By

Example

{
  "request_id": "UmVjb3JkOjEyMzQ=",
  "complexity": 100,
  "created_count": 45,
  "skipped_count": 3,
  "skipped_names": ["A-01-01-A-01"]
}