Download OpenAPI specification:Download
API for manage partners, dealers and stores (v1.155.0)
Returns a list of Stores for a specific Dealer of the Partner
| dealerKey required | string Key that identifies the specific Dealer |
| pageSize | integer <int32> Default: 50 Size of the page |
| pageNumber | integer <int32> Default: 0 Number of page (0-based) |
Adds a new Store for a specific Dealer of the Partner
| dealerKey required | string Key that identifies the specific Dealer |
Request containing the Store information
| name required | string non-empty Name of the store |
| type | string or null <= 255 characters store tipology |
| city required | string non-empty City where the store is located |
| address required | string non-empty Address of the store |
| ownerIban | string or null <= 255 characters IBAN that belongs to the owner of the store (the one that will receive the store funds) |
| ownerName | string or null <= 255 characters Name that belongs to the owner of the store (the one that will receive the store funds) |
| email required | string non-empty ^(?!.*\.\.)(?!.*\+$)[a-zA-Z0-9!#$%&'*\/=?^_`{... Email address |
| phoneNumber required | string non-empty Phone number |
| code required | string non-empty Code of the store. (Optional) Must be unique for the composed key Partner-Dealer. |
| latitude | number or null <double> Latitude of the store (optional) |
| longitude | number or null <double> Longitude of the store (optional) |
{- "name": "string",
- "type": "string",
- "city": "string",
- "address": "string",
- "ownerIban": "string",
- "ownerName": "string",
- "email": "string",
- "phoneNumber": "string",
- "code": "string",
- "latitude": 0.1,
- "longitude": 0.1
}Updates a Store of a specific Dealer
| dealerKey required | string Key that identifies the specific Dealer |
| storeId required | string <uuid> Identifier of the Store to update |
Request containing the Store information to update
| name required | string non-empty Name of the store |
| type | string or null <= 255 characters Store typology |
| city required | string non-empty City where the store is located |
| address required | string non-empty Address of the store |
| ownerIban | string or null <= 255 characters IBAN that belongs to the owner of the store (the one that will receive the store funds) |
| ownerName | string or null <= 255 characters Name that belongs to the owner of the store (the one that will receive the store funds) |
| email required | string non-empty ^(?!.*\.\.)(?!.*\+$)[a-zA-Z0-9!#$%&'*\/=?^_`{... Email address |
| phoneNumber required | string non-empty Phone number |
| code required | string non-empty Code of the store. (Optional) Must be unique for the composed key Partner-Dealer. |
| latitude | number or null <double> Latitude of the store (optional) |
| longitude | number or null <double> Longitude of the store (optional) |
| isActive required | boolean Is this an active store? |
{- "name": "string",
- "type": "string",
- "city": "string",
- "address": "string",
- "ownerIban": "string",
- "ownerName": "string",
- "email": "string",
- "phoneNumber": "string",
- "code": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "isActive": true
}