> ## Documentation Index
> Fetch the complete documentation index at: https://developer.worldly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Scope 3 Facility Import

After completing a [facility search ](/v1.0/reference/scope-3-facility-search), the facility import endpoint will ingest eligible FEM modules into the Scope 3 tool. A single request can be made with an array of `femId`s to import

```json theme={null}
{
  "ids": [
    "string"
  ]
}
```

The facility import response will return a list of the requested FEM IDs that either imported successfully or failed:

```json theme={null}
{
  "successIds": [
    "string"
  ],
  "failureIds": [
    "string"
  ]
}
```

The IDs included in the `failureIds` category likely failed for the following reasons:

* The `femId` is incorrect and/or doesn't exist
* The `femId` is ineligible for import due to being in a non-posted status or was not shared with the account requesting it
