Get an individual provider

GET /api/v1/providers/{uuid}

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      UUID of the provider

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • name string

      Provider name

    • slug string

      Provider name slug

GET /api/v1/providers/{uuid}
curl \
 -X GET https://api.plannrcrm.com/api/v1/providers/uuid \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "name": "AJ Bell",
  "slug": "aj-bell",
  "uuid": "9555e4f5-c1e4-446b-8df4-b07f0f39e51b",
  "created_at": "2024-10-16T11:10:12+01:00",
  "updated_at": "2024-10-16T11:10:12+01:00"
}