API ReferenceProviders

Get provider

Get a single provider by ID.

GET
/v1/providers/{provider_id}

Authorization

authorization
AuthorizationBearer <token>

In: header

Path Parameters

provider_id*string

The provider's unique identifier

Match^prov_\w{12}$

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/providers/prov_abcdef123456"
{  "data": {    "created_at": "2017-09-12T12:34:55Z",    "display_name": "John Smith",    "email": "john@example.com",    "first_name": "John",    "id": "prov_d025a96ac0c6",    "last_name": "Smith",    "metadata": {      "external_id": "123"    },    "object": "provider",    "time_zone": "America/New_York",    "updated_at": "2017-09-13T10:11:12Z"  }}