Recipero Ltd.

Global property history reporting and due-diligence API

Calls to the API must be for genuine use and responses from the API must not be stored for the purpose of creating an offline copy of the information stored. Failure to comply with this requirement will infringe the API License.

Store API Calls

Create Store

POST /business-units/{businessUnitId}/stores

Purpose

To create a store within a business unit. The business unit must already exist on your account.

Inputs

Example Request


POST /business-units/68/stores HTTP/1.1
Accept: application/json
Content-Type: application/json

{
    "legalName": "Amce Traders Ltd.",
    "reportName": "Amce Traders",
    "city": "Cirencester",
    "county": "Gloucestershire",
    "state": "-",
    "zipcode": "GL7 1LF",
    "country": "United Kingdom",
    "email": "email@example.com",
    "type": "live"
}

Output

A unique store ID. In the event of an error the storeid will not be returned. Instead, a JSON object containing an errors array will be returned. For details on the errors array please read the Errors page.

Example Responses

Response on Success:

HTTP/1.1 201 Created
Content-Type: application/json
Location: stores/64791

{
    "id": 64791,
    "legalName": "Amce Traders Inc.",
    "reportName": "Amce Traders",
    "city": "Cirencester",
    "county": "Gloucestershire",
    "state": "-",
    "zipcode": "GL7 1LF",
    "country": "United Kingdom",
    "type": "test",
    "businessUnitId": 1,
    "status": "activated"
}

Response on Error:

HTTP/1.1 400 Human readable error message
Content-Type: application/json

{
    "errors":
    [
        {
            "id": n,
            "message": "Human readable message"
        }
    ]
}