Reclaim

Field Status Definitions
Required Required fields must be sent. If the data is not sent Ravelin will return an error.
Important Important fields are crucial for performance where that data is relevant for your business.
Optional Optional fields are additional data points that can be shared with Ravelin.
These fields are unlikely to impact performance but may be visible in the Ravelin dashboard.

POST api.ravelin.com/v2/reclaim

Show all
timestamp integer required

Unix timestamp with milliseconds (nanoseconds also accepted)

customers array required

An array of up to 1000 customers whose accounts have been reclaimed.

Show definition
source string optional
deprecated

Indicates the source of the request. This field is deprecated. Please, use customer.reportedBy instead.

Only: ATO.

POST https://api.ravelin.com/v2/reclaim HTTP/1.1
Authorization: token ...
Content-Type: application/json

{
  "timestamp": 1512828988826,
  "customers": [
    {
      "customerId": "abc-123-ZYZ",
      "method": "Other",
      "reportedBy": "CUSTOMER",
      "atoEvents": [
        {
          "loginId": "42bd8af9-1ac2-7b2c-cd6a-a6a33c723510"
        }
      ]
    }
  ]
}

Response

Show all
status integer

The HTTP response status code.

message string

A message reporting how many customer accounts were successfully reclaimed.

Feedback