MailParrot
mutationupdateProject

Updates the name or other properties of an existing project.

Authentication

Required: x-api-key header or Authorization: Bearer <token>

Arguments

NameTypeDescription
projectId*ID!Project ID
input*UpdateProjectInput!-

GraphQL

POST to /graphql

mutation UpdateProject($projectId: ID!, $input: UpdateProjectInput!) {
  updateProject(projectId: $projectId, input: $input) {
    id
    name
    createdAt
  }
}

Don't have an API key? Sign up to the dashboard to get one for free.

Try it