I'm using a data file for past man with the following JSON with the following data
{
"FirstName": "Jennifer",
"MiddleName": "Geraldine",
"LastName": "Gemma",
"email": "montes.nascetur@vulputatenisisem.net"
"Phone":[{"Number":"55-(622)813-5953"},{"Number":"233-(935)372-8021"}]}
}
I'm attempting to do a post with the following data variables in RAW
{
"FirstName": "{{FirstName}}",
"MiddleName": "{{MiddleName}}",
"LastName": "{{LastName}}",
"email": "{{email}}",
"Phone": {{Phone}}
}
All the data is being populated with the exception of the "Phone". {{Phone}} is not be substituted.
Is there a way of doing this or an alternative way of posting a JSON request?
OR
Is there an alternative way of posting this information in JSON using Postman from a data file?