# Get Access Token Requests new access token for accessing Keeta API resources. > The client_id and client_secret are issued by Keeta. . The Software Service must obtain the merchant’s authorization before accessing their data. HOST: DIRECTION: Endpoint: POST /oauth/token Version: v.1.0.6 ## Request fields (application/x-www-form-urlencoded): - `client_id` (string, required) Client identifier provided by Keeta. - `client_secret` (string, required) Client Secret provided by Keeta. - `grant_type` (string, required) The OAuth grant type. Currently, the only supported grant type is . Enum: "client_credentials" ## Response 200 fields (application/json): - `access_token` (string, required) A code representing the access token. - `token_type` (string, required) The token type. Currently, the only supported type is Enum: "bearer" - `expires_in` (number) The token expiration time in seconds ## Response 401 fields (application/problem+json): - `title` (string, required) Short description of the problem. Example: "Unexpected error" - `status` (integer, required) HTTP code of the returned status. Example: 500 ## Response 503 fields (application/problem+json): - `title` (string, required) Short description of the problem. Example: "Unexpected error" - `status` (integer, required) HTTP code of the returned status. Example: 500