# POST Postback API v2

Send data in POST payload to the v2 Postback endpoint.

Authentication is header-only. Provide one of:
1. Authorization: TD1 
2. X-TD-Write-Key: 

URL-path keys (?td_write_key=...) accepted by the legacy endpoint are not supported here. If both headers are sent, Authorization takes precedence.

Note: Requests with an invalid API key return a 200 HTTP status code. This behavior is intentional and ensures a fast response, preventing ingestion from being canceled due to slow response. After the response is returned, the endpoint performs asynchronous validations. If the API key is invalid, an authentication failure will be raised despite the initial 200 status.

Maximum request body size is 1,048,064 bytes; larger payloads are rejected with 413.

Endpoint: POST /postback/v3/event/{database_name}/{table_name}
Version: 2.0.0
Security: TD1Authorization, XTDWriteKey

## Path parameters:

  - `database_name` (string, required)
    Name of the database the table is in. Name may contain letters, numbers or _ .

  - `table_name` (string, required)
    Name of the table to log data to. Name may contain letters, numbers or _ .

## Response 200 fields (application/json):

  - `Content-Type` (string)
    Example: "application/json"

  - `Date` (string)
    Example: "Wed, DD MM YYYY xx:yy:zz GMT"

  - `Strict-Transport-Security` (string)
    Example: "max-age=31536000"

  - `Content-Length` (integer)
    Example: 2

  - `Connection` (string)
    Example: "keep-alive"


