Skip to main content
Preview API: This API is in preview and subject to change based on customer feedback. There is no publicly-available authentication mechanism at this time.
API Base URL
https://api.getvero.com/api/v4

Introduction

API for interfacing with Vero to design, update and manage campaigns. This API is in preview: it’s subject to change based on customer feedback.

Authentication

At this time there is no publicly-available means of accessing this API. We have published this documentation to get feedback from our customers to build the best API possible. All requests require an X-Vero-Project-Id header containing your project ID.

Feedback

We want to hear what you think of our API design! We’re actively making changes in the push to launch the full API. Please email us your suggestions via support@getvero.com.

Errors

The Campaigns API uses conventional HTTP response codes to indicate the success or failure of requests.
CodeDescription
200 - OKThe request was successful.
201 - CreatedThe resource was created successfully.
204 - No ContentThe request was successful with no response body.
400 - Bad RequestThe request was invalid or malformed.
401 - UnauthorizedAuthentication credentials are missing or invalid.
403 - ForbiddenYou don’t have permission to access this resource.
404 - Not FoundThe requested resource doesn’t exist.
406 - Not AcceptableThe requested format is not supported.
415 - Unsupported Media TypeThe request content type is not supported.

Error response format

{
  "error": {
    "type": "error",
    "code": "400",
    "message": "A human-readable message providing more details about the error."
  }
}