#### POST http://localhost:5000/oauth/clients Example curl request: ```bash $ curl http://localhost:5000/oauth/clients \ -X POST \ -d '{"redirect_uris":["https://ernser.com","https://schultz.biz"],"client_name":"Jeffrey Jewess","token_endpoint_auth_method":"client_secret_basic","logo_uri":"https://hagenesjohnson.com","jwks_uri":"https://balistreri.biz"}' \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "User-Agent: net/hippie 0.1.9" \ -H "Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3" ``` Request: ```text Accept: application/json Content-Type: application/json User-Agent: net/hippie 0.1.9 Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3 ``` ```json { "redirect_uris": [ "https://ernser.com", "https://schultz.biz" ], "client_name": "Jeffrey Jewess", "token_endpoint_auth_method": "client_secret_basic", "logo_uri": "https://hagenesjohnson.com", "jwks_uri": "https://balistreri.biz" } ``` Response: ```text 201 Created Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: application/json; charset=utf-8 X-Request-Id: 7962b362-cf07-4b8e-944c-5a8e699f4f5d Transfer-Encoding: chunked ``` ```json { "client_id": "b982b9b8-a3f8-49c7-ac22-5a1390f473f6", "client_secret": "HNkbB3iTvgVmaiZeCchsaRJC", "client_id_issued_at": 1540834467, "client_secret_expires_at": 0, "redirect_uris": [ "https://ernser.com", "https://schultz.biz" ], "grant_types": [ "authorization_code", "refresh_token", "client_credentials", "password", "urn:ietf:params:oauth:grant-type:saml2-bearer" ], "client_name": "Jeffrey Jewess", "token_endpoint_auth_method": "client_secret_basic", "logo_uri": "https://hagenesjohnson.com", "jwks_uri": "https://balistreri.biz" } ```