Find Type

Defines what kind of "find" operation you want to do.

Index

Get a list of all types of "find queries" you may do

Request

GET /api/find-types
Host:          api.happyrmatch.com
Authorization: Bearer eyJ0eXAi1QiLCJ...
Accept:        application/vnd.api+json

Response

HTTP/1.0 200 OK
Cache-Control: no-cache, private
Content-Type:  application/vnd.api+json
Date:          Wed, 14 Sep 2022 05:38:55 GMT

{
    "data": [
        {
            "type": "find-type",
            "id": "85b003ce-9c27-4691-af6a-90ad49a1b227",
            "attributes": {
                "name": "Small"
            }
        },
        {
            "type": "find-type",
            "id": "5e44c355-1299-45be-b21f-3dc85dc5d667",
            "attributes": {
                "name": "Medium"
            }
        }
    ]
}