Skip to main content

Paligo API

List imports

const headers = {
  'Accept':'application/json'
};

fetch('https://{instance}.paligoapp.com/api/v2/imports/',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

Responses

Status

Meaning

Description

Schema

200

OK

Successful response.

Inline

[
  {
    "id": "123",
    "status": "running",
    "message": "Importing 1 component out of 23.",
    "steps": {
      "total": "20",
      "count": "3"
    },
    "user": 2
  }
]