Skip to main content
GET
/
api
/
v1
/
submission
/
{pingid}
/
cat
/
acc-loc-files
/
{uuid}
Acc/Loc File Status
curl --request GET \
  --url https://vision.pingintel.com/api/v1/submission/{pingid}/cat/acc-loc-files/{uuid} \
  --header 'Authorization: <api-key>'
{
  "uuid": "a1b2c3d4-0000-0000-0000-000000000001",
  "status": "I",
  "processing_pct_complete": 50,
  "modeling_sets": [
    {
      "status": "I",
      "acc_file_url": null,
      "loc_file_url": null,
      "cat_model_type": "AIR",
      "use_secondary_modifiers": true,
      "use_ping_geocoding": false,
      "modeling_option_uuid": "a1b2c3d4-0000-0000-0000-000000000001",
      "coverate_option_uuid": "a1b2c3d4-0000-0000-0000-000000000010",
      "layer_structure_uuid": "a1b2c3d4-0000-0000-0000-000000009999",
      "layer_uuids": [
        "a1b2c3d4-0000-0000-0000-000000000101",
        "a1b2c3d4-0000-0000-0000-000000000102"
      ],
      "layer_output": "C"
    },
    {
      "status": "F",
      "acc_file_url": null,
      "loc_file_url": null,
      "cat_model_type": "AIR",
      "use_secondary_modifiers": true,
      "use_ping_geocoding": false,
      "modeling_option_uuid": "a1b2c3d4-0000-0000-0000-000000000002",
      "coverate_option_uuid": "a1b2c3d4-0000-0000-0000-000000000011",
      "layer_structure_uuid": "a1b2c3d4-0000-0000-0000-000000009999",
      "layer_uuids": [
        "a1b2c3d4-0000-0000-0000-000000000101",
        "a1b2c3d4-0000-0000-0000-000000000102"
      ],
      "layer_output": "C"
    }
  ]
}

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.

uuid
string
required

UUID of the acc/loc file generation job.

Response

200 - application/json
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.

processing_pct_complete
integer
required

An integer from 0 to 100 indicating the percentage of the job that is complete. When status is C, this will be 100; when status is I, this may be 0 or some intermediate value; when status is F, this may be 0, 100, or some intermediate value depending on when the failure occurred.

status
enum<string>
required

N: job is not processed. I: job is in progress. C: files are ready. F: generation encountered an error.

  • N - Not Processed
  • I - In Progress
  • C - Completed
  • F - Failed
Available options:
N,
I,
C,
F
uuid
string<uuid>
required

Unique identifier for this generation job.