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 Influencer Polling API servers: - url: http://app.splashscore.com/v1 - url: https://app.splashscore.com/v1 security: - apiKey: [] tags: - name: Influencer Polling paths: /v1/influencer-polling: post: operationId: addInfluencerPollingMessages responses: '200': description: Added pending activations to the queue '400': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/ValidateErrorJSON' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/NotFoundError' '500': description: Server Error content: application/json: schema: $ref: '#/components/schemas/ServerError' tags: - Influencer Polling requestBody: content: application/json: schema: $ref: '#/components/schemas/InfluencerPollingRequestBody' required: true components: schemas: InfluencerPollingRequestBody: properties: globalUserId: type: number format: double actionGroupId: type: number format: double required: - actionGroupId type: object NotFoundError: properties: message: type: string enum: - Resource Not Found details: properties: {} additionalProperties: additionalProperties: true type: object required: - message - details type: object additionalProperties: false ServerError: properties: message: type: string enum: - Server Error details: properties: {} additionalProperties: additionalProperties: true type: object required: - message - details type: object additionalProperties: false ValidateErrorJSON: properties: message: type: string enum: - Validation failed details: properties: {} additionalProperties: additionalProperties: true type: object required: - message - details type: object additionalProperties: false securitySchemes: apiKey: type: apiKey name: api-key in: header