Mavrck Influencer Contract Campaign Templates API
The InfluencerContractCampaignTemplates API from Mavrck — 2 operation(s) for influencercontractcampaigntemplates.
The InfluencerContractCampaignTemplates API from Mavrck — 2 operation(s) for influencercontractcampaigntemplates.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/mavrck-influencercontractcampaigntemplates-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
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 Contract Campaign Templates API
servers:
- url: http://app.splashscore.com/v1
- url: https://app.splashscore.com/v1
security:
- apiKey: []
tags:
- name: InfluencerContractCampaignTemplates
paths:
/action-groups/{campaignId}/influencer-contract-templates:
get:
tags:
- InfluencerContractCampaignTemplates
operationId: getCampaignTemplate
summary: Get influencer contract template for this action group, referred to as a campaign client-side.
x-handler: influencer_contracts/campaign_templates/influencer_contract_campaign_template_controller.js
x-access:
- administrator
parameters:
- name: campaignId
in: path
required: true
schema:
type: integer
responses:
'200':
description: This campaign's influencer contract template.
content:
application/json:
schema:
$ref: '#/components/schemas/InfluencerContractCampaignTemplate'
'400':
description: Invalid or missing parameter.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Session expired.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'403':
description: Access forbidden.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: Not found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Server error.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
tags:
- InfluencerContractCampaignTemplates
x-access:
- administrator
x-handler: influencer_contracts/campaign_templates/influencer_contract_campaign_template_controller.js
operationId: createCampaignTemplate
summary: Create an influencer contract template for this campaign.
parameters:
- name: campaignId
in: path
required: true
schema:
type: integer
responses:
'200':
description: Influencer contract template successfully created for this action group, referred to as a campaign client-side.
content:
application/json:
schema:
$ref: '#/components/schemas/InfluencerContractCampaignTemplate'
'400':
description: Invalid or missing parameter.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Session expired.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'403':
description: Access forbidden.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: Not found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Server error.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/action-groups/{campaignId}/influencer-contract-templates/{id}:
put:
tags:
- InfluencerContractCampaignTemplates
x-access:
- administrator
x-handler: influencer_contracts/campaign_templates/influencer_contract_campaign_template_controller.js
operationId: updateCampaignTemplate
summary: Generate a contract for this campaign, and update this campaign's template if necessary.
parameters:
- name: campaignId
in: path
required: true
schema:
type: integer
- name: id
in: path
required: true
schema:
type: integer
- $ref: '#/components/parameters/InfluencerContractCampaignTemplate'
responses:
'200':
description: A campaign-level influencer template.
content:
application/json:
schema:
$ref: '#/components/schemas/InfluencerContractCampaignTemplate'
'400':
description: Invalid or missing parameter.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Session expired.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'403':
description: Access forbidden.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: Not found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Server error.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
AdministratorAccountsDeprecated:
type: object
properties:
first_name:
type: string
last_name:
type: string
email:
type: string
communityId:
type: string
id:
type: string
image:
type: string
roles:
type: array
items:
$ref: '#/components/schemas/RoleDeprecated'
RoleDeprecated:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
InfluencerContractCampaignTemplate:
type: object
properties:
id:
type: integer
description: Unique integer identifying a single campaign-level influencer contract template.
campaignId:
type: integer
description: Unique integer identifying a single action group, referred to as a campaign client-side.
template:
type: string
description: Campaign-level influencer contract template.
contract:
type: string
description: Campaign-level influencer contract.
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
updatedBy:
$ref: '#/components/schemas/AdministratorAccountsDeprecated'
LinksDeprecated:
type: object
x-access:
- anonymous
- influencer
properties:
normal:
type: string
description: A normal link to an entity.
deep:
type: string
description: A deep link to the entity.
Error:
type: object
properties:
type:
type: string
description: A key representing the type of error that has occurred.
error:
type: string
description: A static description of the type of error.
params:
type: array
description: For errors invovling parameters, this is an array containing the invalid parameters.
items:
type: string
keys:
type: array
items:
type:
- string
- object
artifactLinks:
$ref: '#/components/schemas/LinksDeprecated'
parent:
type: object
properties:
type:
type: string
description: A key representing the type of error generated by a request to an external API.
error:
type: string
description: A static description of the parent error.
parameters:
InfluencerContractCampaignTemplate:
name: data
in: body
required: true
schema:
type: object
required:
- campaignId
- template
properties:
id:
type: integer
description: Unique integer identifying a single campaign-level influencer contract template.
campaignId:
type: integer
description: Unique integer identifying a single action group, referred to as a campaign client-side.
template:
type: string
description: Campaign-level influencer contract template.
securitySchemes:
apiKey:
type: apiKey
name: api-key
in: header