+1 vote
in POSTMAN by
What is GUID?

1 Answer

0 votes
by
GUID stands for Global Unique Identifier. It is basically hexadecimal digits separated by hyphens. GUID solves the purpose of uniqueness.

In Postman, we use this to generate and send a random value to APIs.

{

"id": "{{$guid}}",

}

1

2

3

{

"id": "{{$guid}}",

}

Related questions

+1 vote
asked Jan 29, 2023 in POSTMAN by john ganales
+1 vote
asked Jan 29, 2023 in POSTMAN by john ganales
...