PROD

This service will return the operation types available for the properties published of the website

Resource information
AuthenticationRequired (API Token, Bearer)
Scopeexpress-base
HTTP MethodGET
ResponseJSON
Version1

Resource URL

https://mapaprop.app/api/action/express-v1/operations

Sample code

GET /api/action/express-v1/operations HTTP/1.1
Host: mapaprop.app
Content-Type: application/x-www-form-urlencoded
Content-Length: 0
Authorization: Bearer {access_token}

Response

A JSON document with the list of types available for the published properties of the customer. Also read Constants

ObjectFieldTypeRequiredDescription
ResponseoperationsArray of TypeyesThe list of Operation objects
typesdescriptionstringyesThe description of property type for customer Country
idintyesThe Id of property type

Sample response

{
    "operations": [
        {
            "description": "Venta",
            "id": 1
        },
        {
            "description": "Alquiler Temporario",
            "id": 3
        },
        {
            "description": "Permuta",
            "id": 4
        },
        {
            "description": "Alquiler",
            "id": 2
        },
        {
            "description": "Remate",
            "id": 7
        },
        {
            "description": "Compartir",
            "id": 6
        }
    ]
}