Insomnia upload pic and post data at same time
you could use multipart form from insomnia with this you could send data and file at the same request
you could use multipart form from insomnia with this you could send data and file at the same request
In your workspace press CTRL+E to open “Manage Environments” window Add a variable like “token” to the environment Put a response function (teal f) as value of this variable by pressing CTRL+SPACE. Select one to your liking from the dropdown, in your case “Response => Body Attribute” should work well. This will open a “Tag” … Read more
Try this out: import * as Yup from ‘yup’; validationSchema: Yup.object({ password: Yup.string().required(‘Password is required’), passwordConfirmation: Yup.string() .oneOf([Yup.ref(‘password’), null], ‘Passwords must match’) });