Skip to main content
POST
/
api
/
v1
/
submission
/
{pingid}
/
cat
/
acc-loc-files
Generate Acc/Loc Files
curl --request POST \
  --url https://vision.pingintel.com/api/v1/submission/{pingid}/cat/acc-loc-files \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "coverage_option_uuids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "layer_structure_uuids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "layer_uuids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "cat_model_type": "AIR",
  "use_secondary_modifiers": true,
  "use_ping_geocoding": true,
  "layer_output": "combined"
}
'
{
  "uuid": "a1b2c3d4-0000-0000-0000-000000000001",
  "status": "pending",
  "files": [
    {
      "status": "pending",
      "acc_url": null,
      "loc_url": null,
      "coverate_option_uuid": "a1b2c3d4-0000-0000-0000-000000000010",
      "layer_structire_uuid": "a1b2c3d4-0000-0000-0000-000000009999",
      "layer_uuid": null
    },
    {
      "status": "pending",
      "acc_url": null,
      "loc_url": null,
      "coverate_option_uuid": "a1b2c3d4-0000-0000-0000-000000000011",
      "layer_structire_uuid": "a1b2c3d4-0000-0000-0000-000000009999",
      "layer_uuid": null
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.pingintel.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Supports Token -prefixed API keys and Bearer -prefixed JWT-based authentication.

Path Parameters

pingid
string
required

Ping ID of the submission.

Body

coverage_option_uuids
string<uuid>[] | null

Limit generation to a specific set of coverage options. If omitted, files are generated for all coverage options on the submission.

layer_structure_uuids
string<uuid>[] | null

Limit generation to layers belonging to the specified layer structures.

layer_uuids
string<uuid>[] | null

Limit generation to specific layers.

cat_model_type
enum<string> | null

CAT model to generate files for (AIR or RMS). The submission must have configuration for the requested model via its team/division settings. If omitted, files are generated for all CAT models that are configured for the submission.

  • AIR - AIR
  • RMS - RMS
Available options:
AIR,
RMS,
null
use_secondary_modifiers
boolean | null

When true, secondary modifiers are included in the generated acc/loc files. If omitted, configured default is used.

use_ping_geocoding
boolean | null

When true, Ping-derived lat/longs are included in the generated acc/loc files. If omitted, configured default is used.

layer_output
enum<string> | null

Controls how acc/loc file pairs are generated per tower. combined produces one file pair including all layers; per_layer produces a separate file pair for each layer.If omitted, configured default is used.

  • combined - combined
  • per_layer - per_layer
Available options:
combined,
per_layer,
null

Response

202 - application/json
uuid
string<uuid>
required

Unique identifier for this generation job.

status
enum<string>
required

pending: job is queued or running. complete: files are ready. failed: generation encountered an error.

  • pending - pending
  • complete - complete
  • failed - failed
Available options:
pending,
complete,
failed
modeling_sets
object[]
required

Acc/Loc file pairs being generated. Each entry has its own status and may complete independently before the overall job is finished.