Resume Security project

POST /api/v1/serverless/projects/security/{id}/_resume

Resume a previously suspended Security project. Projects can be automatically suspended after their trial period has expired.

Headers

  • If-Match string

    ETag value fetched in a previous GET project request. Used to prevent simultaneous updates.

Path parameters

  • id string Required

    The ID of the project

    Format should match the following pattern: ^[a-z0-9]{32}$.

Responses

  • Project resumption scheduled.

    Hide headers attribute Show headers attribute
  • 404 application/json

    Not Found

    Hide response attribute Show response attribute object

    A non-empty list of errors.

    • errors array[object] Required
      Hide errors attributes Show errors attributes object

      An error response returned by the API.

      • message string Required

        A human-readable message of the error.

      • code string Required

        An identifier for this type of error.

POST /api/v1/serverless/projects/security/{id}/_resume
curl \
 -X POST https://api.elastic-cloud.com/api/v1/serverless/projects/security/{id}/_resume \
 -H "If-Match: string"
Response examples (404)
{
  "errors": [
    {
      "message": "Explicative error message",
      "code": "code.error"
    }
  ]
}