API DOCUMENTATION
getOperation (pOST)
Returns the operation information given an id.
Body params:
- id_operation (string, required): The operation id.
Request examples
CURL:
curl --location 'https://movin.cloud/api/real-estate/get-operation' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer SECRETOKEN'
Body example:{
"id_operation": "MjQkMzQ2ODk="
}
Response Example
{
"data": {
"id_operation": "MjQkMzQ2ODk=",
"status_info": {
"id_status": 1,
"name": "Negociando"
},
"operation_name": "BelénGonzálezPeñalba_3009-307070",
"customer_info": {
"id_customer": "MjQkMzYxMTQ=",
"name": "Belén",
"surnames": "González Peñalba",
"phone_number": "12345678"
},
"property_info": {
"id_property": "MjYkMzg2NQ==",
"name": "qar",
"reference": null,
"address": "calle poligono, 3",
"price": "95000.00"
},
"user_info": {
"id_user": "MjQkMzQ1Njg=",
"name": "Imma",
"surnames": "Losada",
"email": "imma.losada@namastech.com",
"phone_number": "676052350"
},
"real_estate_charge_amount_signature": 0,
"real_estate_deposit_charge_amount": 0,
"recruiter_1_info": {
"recruiter_1": "MjQkMzQ1Njg=",
"name": "Imma",
"surnames": "Losada",
"email": "imma.losada@namastech.com",
"phone_number": "676052350"
},
"seller_1_info": {
"seller_1": "MjQkMzQ1Njg=",
"name": "Imma",
"surnames": "Losada",
"email": "imma.losada@namastech.com",
"phone_number": "676052350"
},
"operation_type_info": {
"id_operation_type": 1,
"name": "Comprar"
},
"offered_price": "99999.00"
}
}