Build powerful integrations with MAFM's facilities management platform
The MAFM REST API provides a standard HTTP interface to integrate your systems with our facilities management platform. Create, retrieve, update, and delete service requests, move requests, and more through simple RESTful endpoints.
This API uses standard HTTP methods (GET, POST, PUT, DELETE), returns JSON responses, and requires Bearer token authentication for all requests.
mafm_live_)Authorization: Bearer YOUR_TOKEN headerhttps://api.mafm.app/v1
Create, retrieve, update, and manage service requests for building maintenance and repairs.
Handle furniture and equipment move requests across building locations.
Retrieve building and floor information for your company facilities.
All API endpoints require Bearer token authentication. You can create an API token in your MAFM account settings under the "API Tokens" section.
* for full access)Include your API token in the Authorization header using the Bearer scheme:
# Using cURL
curl -X GET https://api.mafm.app/v1/service-requests \
-H "Authorization: Bearer mafm_live_YOUR_TOKEN_HERE" \
-H "Content-Type: application/json"
# Create a service request
curl -X POST https://api.mafm.app/v1/service-requests \
-H "Authorization: Bearer mafm_live_YOUR_TOKEN_HERE" \
-H "Content-Type: application/json" \
-d '{
"description": "Replace ceiling light in Room 205",
"title": "Light Replacement - Room 205",
"priority": "Medium",
"location": {
"building": "A",
"floor": "2",
"area": "Room 205"
}
}'