# Create or run bulk `POST /certificates/bulk` **Required scope:** `certificates:read` Create or run bulk. Requires scope certificates:read. ## Responses | Status | Meaning | |---|---| | `200` | Success | | `400` | BadRequest | | `401` | Unauthorized | | `403` | Forbidden | | `429` | RateLimited | ## Example ```bash curl -X POST "https://backend.immut.io/api/v1/certificates/bulk" \ -H "Authorization: Bearer $IMMUT_API_KEY" ``` ## OpenAPI fragment ```json { "/certificates/bulk": { "post": { "operationId": "postcertificatesbulk", "summary": "Create or run bulk", "description": "Create or run bulk. Requires scope certificates:read.", "responses": { "200": { "description": "Success" }, "400": { "$ref": "#/components/responses/BadRequest" }, "401": { "$ref": "#/components/responses/Unauthorized" }, "403": { "$ref": "#/components/responses/Forbidden" }, "429": { "$ref": "#/components/responses/RateLimited" } }, "tags": [ "Certificates" ], "x-required-scope": "certificates:read" } } } ```