The following tips will help you be successful when working with APIs.
Read more
- When you call the endpoint through GET, you'll get a list of all available APIs.
- When you call the endpoint through GET with $metadata, you'll get a list of all available APIs with their metadata.
- When you call the endpoint through GET with $filter, you can use the OData filter expressions.
- Each resource is uniquely identified through an ID.
JSONCopy
{
"@odata.context": "<endpoint>/$metadata#companies"...
Read more