Skip to main content

Response Body

info

Mocktail is still in Beta so if you find any bugs with the app or issues with these docs, please report them on GitHub

Introduction

Mocktail makes it easy to outline the shape of your mocked response bodies. Each key value pair in the response body is represented as a node to give you maximum control.

There are 4 node types to choose from; Parent object, Parent array, Random values and Static values. These can be mixed and matched to create the desired response body. Each of these node types have a required Key Name input, and their own specific options that can be configured on a node-by-node basis.

Response body example
const responseBody = {
data: { // Parent object
users: [ // Parent array
{ // Child
id: '4d4d6e4d-2276-4464-b67c-3fa33eca177d', // Random UUID
firstName: 'Ryan', // Random first name
lastName: 'Smee', // Random last name
isActive: true, // Static value (boolean) - true
},
],
},
}

Parent object

Description:

Parent objects are used to group/next data.

Example of parent object form

Fields:

FieldTypeDescriptionRequired
Key NamestringName of the key (Visible in response)true

Parent array

Description:

A parent array can contain child object or single values. You can define an array name and how many children you would like inside.

Example of parent array form

Fields:

FieldTypeDescriptionRequired
Key NamestringName of the key (Visible in response)true
Total TypeselectSet if there are a fixed number of child items (Fixed) of random in range (Range).true
Total?numberVisible when Total Type is set to "Fixed"true
Min?numberVisible when Total Type is set to "Range"true
Max?numberVisible when Total Type is set to "Range"true

Random values

Description:

You can easily define the type of random value that you want to be returned from a large list of formats including emails, numbers, booleans etc. The values will be different every time you call your mocked endpoint. Mocktail leverages the power of NgNeat/Falso along with some custom functions to generate the random data returned from this node type.

Example of random value form

Fields:

FieldTypeDescriptionRequired
Key NamestringName of the key (Visible in response)true
ValuestringSelect the type of random data returned from field (See Random value type table below for types and modifiers)true

Random value types:

Value typeTypeDescriptionModifiers
AddressobjectInclude county, Include country & Total
AvatarstringTotal
BICstringTotal
Bitcoin AddressstringTotal
BooleanbooleanTotal
CitystringTotal
Clothes SizestringTotal
Colour (Hex)stringTotal
Colour (HSL)stringAlpha & Total
Colour (RGB)stringAlpha & Total
Colour (Text)stringTotal
Coordinates[number, number]Latitude/Longitude tupleTotal
Company NamestringTotal
CountrystringTotal
Country CodestringTotal
CountystringTotal
Credit CardobjectBrand & Total
Credit Card BrandstringTotal
Credit Card CVVnumberTotal
Credit Card NumberstringTotal
Currency CodestringTotal
Currency NamestringTotal
Currency SymbolstringTotal
Database TypestringTotal
Datestring or numberFrom date, To date, Is future date, Is past date, Within 'x' years, Date format & Total
DirectionstringTotal
EmailstringTotal
EmojistringTotal
First NamestringWith accents & Total
Flight DetailsobjectTotal
FloatnumberMin, Max & Total
From ValuesstringReturns a random value from pipe seperated stringTotal
Full NamestringWith accents & Total
IBANstringTotal
IP AddressstringTotal
Job TitlestringTotal
Last NamestringWith accents & Total
LanguagestringTotal
LatitudenumberTotal
LongitudenumberTotal
MonthstringTotal
NumbernumberTotal
Number (String)stringMin, Max & Total
Person TitlestringMin, Max & Total
Phone NumberstringTotal
PronounstringTotal
Routing NumbernumberTotal
Subscription PlanstringTotal
SkillstringTotal
SwiftstringTotal
TextstringCharacter count & Total
UserobjectTotal
UUIDstringTotal
WeekdaystringTotal

Static values

Description:

There are 4 types of static values; string, number, boolean & null. Once set these values will be the same every time you call your endpoint.

Example of static boolean value

Fields:

FieldTypeDescriptionRequired
Key NamestringName of the key (Visible in response)true
TypeselectStatic value type (string, number, boolean, null & Query Paramstrue
Value?-Static value (Not visible for null type)true