File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -24304,6 +24304,42 @@ paths:
2430424304 application/json:
2430524305 schema:
2430624306 $ref: '#/components/schemas/PlatformError'
24307+ /api/v2/internal/enterprise/{enterpriseId}/points/verifyRetail:
24308+ post:
24309+ summary: Verifies if a given enterpise is a retail enterprise
24310+ operationId: v2.internal.enterprise.points.verifyRetail
24311+ tags:
24312+ - Enterprise
24313+ parameters:
24314+ - name: enterpriseId
24315+ in: path
24316+ required: true
24317+ schema:
24318+ $ref: '#/components/schemas/EnterpriseIdString'
24319+ - name: authorization
24320+ description: The authorization header
24321+ in: header
24322+ schema:
24323+ type: string
24324+ responses:
24325+ '200':
24326+ description: OK
24327+ content:
24328+ application/json:
24329+ schema:
24330+ $ref: '#/components/schemas/IsRetailEnterprise'
24331+ '400':
24332+ description: Bad Request
24333+ content:
24334+ application/json:
24335+ schema:
24336+ $ref: '#/components/schemas/PlatformError'
24337+ '404':
24338+ description: Not Found
24339+ content:
24340+ application/json:
24341+ schema:
24342+ $ref: '#/components/schemas/PlatformError'
2430724343 /api/v2/organization/{organizationId}/enterprise:
2430824344 get:
2430924345 summary: List enterprises for an organization
@@ -50899,6 +50935,14 @@ components:
5089950935 - claimTransactionByVasp
5090050936 - rejectTransactionByVasp
5090150937 - freezeKey
50938+ IsRetailEnterprise:
50939+ title: IsRetailEnterprise
50940+ type: object
50941+ properties:
50942+ isRetail:
50943+ type: boolean
50944+ required:
50945+ - isRetail
5090250946 parameters:
5090350947 Base:
5090450948 name: base
You can’t perform that action at this time.
0 commit comments