Retrieve the data for an existing Extension, based on its ID.
When Extensions
are deleted, they are marked as deleted but are not actually removed from system.
Therefore, it is possible to retrieve a deleted Extension
.
Deleted Extensions
can be identified by the presence of data.meta.deleted_at
.
GET /extensions/:id
curl https://reactor.adobe.io/extensions/:id \
-H "Accept: application/vnd.api+json;revision=1" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer [TOKEN]" \
-H "X-Api-Key: [KEY]" \
-H "X-Gw-Ims-Org-Id: [ORG_ID]" \
-X GET
{
"data": {
"id": "EX54b732c1ac0a4e09b783bd4fc2a8750b",
"type": "extensions",
"attributes": {
"created_at": "2021-10-05T19:10:20.858Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
"name": "kessel-test",
"published": false,
"published_at": null,
"revision_number": 0,
"updated_at": "2021-10-05T19:10:20.858Z",
"delegate_descriptor_id": null,
"display_name": "Kessel Test",
"review_status": "unsubmitted",
"version": "1.2.0",
"settings": "{}"
},
"relationships": {
"libraries": {
"links": {
"related": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b/libraries"
}
},
"revisions": {
"links": {
"related": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b/revisions"
}
},
"notes": {
"links": {
"related": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b/notes"
}
},
"property": {
"links": {
"related": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b/property"
},
"data": {
"id": "PRa4f8797117fb4bd09e76ffb5814b9e58",
"type": "properties"
}
},
"origin": {
"links": {
"related": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b/origin"
},
"data": {
"id": "EX54b732c1ac0a4e09b783bd4fc2a8750b",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
"related": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b/updated_with_extension_package"
},
"data": {
"id": "EP0a210026dfb94796a7dce97a90a8f357",
"type": "extension_packages"
}
},
"extension_package": {
"links": {
"related": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b/extension_package"
},
"data": {
"id": "EP0a210026dfb94796a7dce97a90a8f357",
"type": "extension_packages"
}
}
},
"links": {
"property": "https://reactor.adobe.io/properties/PRa4f8797117fb4bd09e76ffb5814b9e58",
"origin": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b",
"self": "https://reactor.adobe.io/extensions/EX54b732c1ac0a4e09b783bd4fc2a8750b",
"extension_package": "https://reactor.adobe.io/extension_packages/EP0a210026dfb94796a7dce97a90a8f357",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP0a210026dfb94796a7dce97a90a8f357"
},
"meta": {
"latest_revision_number": 1
}
}
}