openapi: 3.2.0 info: version: 1.0.0 description: Identify your most influential customers and activate them to drive more conversions on social. title: MAVRCK.IO Public API servers: - url: http://app.splashscore.com/v1 - url: https://app.splashscore.com/v1 security: - apiKey: [] tags: - name: public paths: /v2/public/campaigns/{id}: get: operationId: getPublicCampaignById responses: '200': description: Ok content: application/json: schema: $ref: '#/components/schemas/Readonly_any_' '404': description: Resource Not Found content: application/json: schema: $ref: '#/components/schemas/NotFoundError' '422': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/UnprocessableContent' '500': description: Server Error content: application/json: schema: $ref: '#/components/schemas/ServerError' tags: - public parameters: - in: path name: id required: true schema: type: number format: double components: schemas: UnprocessableContent: properties: details: properties: {} additionalProperties: additionalProperties: true type: object message: type: string enum: - Unprocessable Content required: - message type: object additionalProperties: false Readonly_any_: properties: {} type: object description: Make all properties in T readonly ServerError: properties: message: type: string enum: - Server Error details: properties: {} additionalProperties: additionalProperties: true type: object required: - message - details type: object additionalProperties: false NotFoundError: properties: message: type: string enum: - Resource Not Found details: properties: {} additionalProperties: additionalProperties: true type: object required: - message - details type: object additionalProperties: false securitySchemes: apiKey: type: apiKey name: api-key in: header