Quick Start

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can Connect with the Memzo team to create your Keys at any time.

Common API Response

Certainly! Below is the formatted content for direct inclusion in your API documentation:

Case: Invalid API Key

Status: 200 OK Response:

{
    "error": true,
    "message": "Access Denied. Invalid API key"
}

Case: Required parameters are missing

Status: 400 Bad Request Response:

{
    "error": true,
    "message": "Required field(s) __ is missing or empty"
}

Case: Invalid FileType uploaded

Status: 200 OK Response:

jsonCopy code{
    "error": true,
    "message": "File skipped.____. Reason - File type not allowed, use JPG/JPEG file type."
}

Make your first request

To make your first request, send an authenticated request to the pet endpoint. This will create a pet, which is nice.

Good to know: For more detailed information, please refer to the full Postman documentation here.

Last updated