# Update client **POST /2023-03-01/management/client** Update attributes of the client. Update the `name`, `client_secret`, or `webhook_uri` of the client ## Servers - Production server (EU): https://api.affixapi.com (Production server (EU)) - Development server (EU): https://dev.api.affixapi.com (Development server (EU)) ## Authentication methods - Basic ## Parameters ### Body: application/json (object) - **client_secret** (array[string]) The client secret(s). It is an array datatype to allow for rotation of secrets without downtime for your customers - **redirect_uris** (array[string]) Indicates the URI to return the user to after authorization is complete, which is the endpoint on your server to receive the authorization_code. Must be identical to the redirect URI provided in the original link. Please email me after signup and I will set both your client secret and redirect_uri (required) when you reach out. - **name** (string) Name of your app that shows up in the Affix Connect application - **webhook_uri** (string | null) If enabled, webhooks will be sent to this endpoint ## Responses ### 200 Success #### Body: application/json (object) - **client_id** (string) The client ID you received when you first created the application - **client_secret** (array[string]) The client secret(s). It is an array datatype to allow for rotation of secrets without downtime for your customers - **redirect_uris** (array[string]) Indicates the URI to return the user to after authorization is complete, which is the endpoint on your server to receive the authorization_code. Must be identical to the redirect URI provided in the original link. Please email me after signup and I will set both your client secret and redirect_uri (required) when you reach out. - **name** (string) Name of your app that shows up in the Affix Connect application - **webhook_uri** (string | null) If enabled, webhooks will be sent to this endpoint ### 400 Bad Request #### Body: application/json (object) - **message** (string) - **validation_error** (string) ### 401 Authentication Error #### Body: application/json (object) - **error** (string) The type of error - **message** (string) A descriptive description of the error - **code** (string) ### 409 Not Found #### Body: application/json (object) - **code** (string) The authorization code insert that caused a conflict - **token** (string) The access token insert that caused a conflict - **error** (string) The description of the type of error, ie conflict of two requests of the the same authorization code ### 429 Rate Limited / Too Many Requests #### Headers - **Retry-After** (integer) Retry your call after the specified amount of seconds #### Body: application/json (object) - **message** (string) ### 500 Server Error #### Body: application/json (object) - **message** (string) [Powered by Bump.sh](https://bump.sh)