[comment]: # ({0a247a7d-0a247a7d})
# graphprototype.delete

[comment]: # ({/0a247a7d-0a247a7d})

[comment]: # ({6433bb0c-8256b270})
#### Het verwijderen van meerdere grafiek-prototypes

Verwijder twee grafiek-prototypes.

[Aanvraag](/manual/api#performing-requests):

```json
{
    "jsonrpc": "2.0",
    "method": "graphprototype.delete",
    "params": [
        "10103",
        "10105"
    ],
    "id": 1
}
```

Reactie:

```json
{
    "jsonrpc": "2.0",
    "result": {
        "graphids": [
            "10103",
            "10105"
        ]
    },
    "id": 1
}
```

[comment]: # ({/6433bb0c-8256b270})

[comment]: # ({3e4a53cc-3e4a53cc})
### Parameters

`(array)` ID's van de grafiekprototypes die moeten worden verwijderd.

[comment]: # ({/3e4a53cc-3e4a53cc})

[comment]: # ({82123f70-82123f70})
### Retourwaarden

`(object)` Retourneert een object dat de ID's van de verwijderde grafiek bevat
prototypes onder de eigenschap `graphids`.

[comment]: # ({/82123f70-82123f70})

[comment]: # ({b41637d2-b41637d2})
### Voorbeelden

[comment]: # ({/b41637d2-b41637d2})

[comment]: # ({ce5f8001-d24b4f06})
#### Het verwijderen van meerdere grafiek-prototypes

Verwijder twee grafiek-prototypes.

[Aanvraag](/manual/api#performing-requests):

```json
{
    "jsonrpc": "2.0",
    "method": "graphprototype.delete",
    "params": [
        "652",
        "653"
    ],
    "id": 1
}
```

Reactie:

```json
{
    "jsonrpc": "2.0",
    "result": {
        "graphids": [
            "652",
            "653"
        ]
    },
    "id": 1
}
```

[comment]: # ({/ce5f8001-d24b4f06})

[comment]: # ({21f88b2f-21f88b2f})
### Bron

CGraphPrototype::delete() in
*ui/include/classes/api/services/CGraphPrototype.php*.

[comment]: # ({/21f88b2f-21f88b2f})
