{ "opencollection": "1.0.0", "info": { "name": "ETSI ISG CIM / NGSI-LD API Entry Point Registrations API", "version": "latest" }, "items": [ { "info": { "name": "Registrations", "type": "folder" }, "items": [ { "info": { "name": "List Registrations", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v2/registrations", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Limit the number of registrations to be retrieved" }, { "name": "offset", "value": "", "type": "query", "description": "Skip a number of registrations" }, { "name": "options", "value": "", "type": "query", "description": "Options dictionary" } ] }, "docs": "Lists all the context provider registrations present in the system." }, { "info": { "name": "Create Registration", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v2/registrations", "headers": [ { "name": "Content-Type", "value": "" } ] }, "docs": "Creates a new context provider registration. This is typically used for binding context sources\nas providers of certain data.\nThe registration is represented by a JSON object as described at the beginning of this section.\nResponse:\n* Successful operation uses 201 Created\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n more details." }, { "info": { "name": "Retrieve Registration", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v2/registrations/:registrationId", "params": [ { "name": "registrationId", "value": "", "type": "path", "description": "registration Id." } ] }, "docs": "The response is the registration represented by a JSON object as described at the beginning of this\nsection.\nResponse:\n* Successful operation uses 200 OK\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n more details." }, { "info": { "name": "Update Registration", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v2/registrations/:registrationId", "headers": [ { "name": "Content-Type", "value": "" } ], "params": [ { "name": "registrationId", "value": "", "type": "path", "description": "registration Id." } ] }, "docs": "Only the fields included in the request are updated in the registration.\nResponse:\n* Successful operation uses 204 No Content\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n more details." }, { "info": { "name": "Delete Registration", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v2/registrations/:registrationId", "params": [ { "name": "registrationId", "value": "", "type": "path", "description": "registration Id." } ] }, "docs": "Cancels a context provider registration.\nResponse:\n* Successful operation uses 204 No Content\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n more details." } ] } ], "bundled": true }