- Opciones de filtro
- Visión general
- GET /contracts/{contractNo}/classifications
- POST /contracts/{contractNo}/classifications
- POST /contracts/{contractNo}/classifications/activate-deactivate
- POST /contracts/{contractNo}/classifications/cancel
- POST /contracts/{contractNo}/classifications/accept-deny-premium
- Definiciones
Visión general
API to carry out operations on Classifications of clients and Companies
Classifications Query, GET /contracts/{contractNo}/classifications This application allows the query a classification.
Create Classifications, POST /contracts/{contractNo}/classifications This application allows create a individual classifications.
Enable/Disable Classification, POST /contracts/{contractNo}/classifications/activate-deactivate This application allows make a state change (Activate or Deactivate) on Classification.
Annul Classification, POST /contracts/{contractNo}/classifications/cancel This application allows for annul classification.
Accept Deny Premium, POST /contracts/{contractNo}/classifications/accept-deny-premium This application allows for accept and deny Premium.
Sandbox Model
Sample data model available for sandbox testing. Includes examples of allavailable cases with their corresponding input and output data:
Pagination
Not includes pagination.
Security
This API is secured with an OAuth server. You must to request a token before invoking any of its operations. To perform a token request you have to invoke the next endpoint:
https://api.cesce.es/sandbox/oauth2/v1/token
Passing the next data as formData parameters:
- grant_type: You have to set ‘password’ value
- client_id: The client_id of the app you subscribed to this API
- client_secret: The client_secret of the app you subscribed to this API
- scope: The required scope/s to invoke the operation (create, read, update, delete are valid values). You can set one o more at the same time (separated by spaces)
- username: Your username
- password: Your password
Then, you will receive an access_token that you have to include as a Authorization header (Bearer authentication)
Keep in mind you have to subscribe to the OAuth Product API to be able to perform a token request.
If you need more information about autentication features (timeout, refresh token, . . .), you can see more details in the Getting Started section in the following link:
[Getting Started section](Getting Started section**