Sign in

Create card

documented

Create a new card in a pipe with field values.

POST /graphqlPipesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.pipefy.com/graphql" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{ "query": "mutation { createCard(input: { pipe_id: {{$pipe_id}}, fields_attributes: [ { field_id: \\\"employee_name\\\", field_value: \\\"{{$employee_name}}\\\" }, { field_id: \\\"department\\\", field_value: \\\"{{$department}}\\\" }, { field_id: \\\"start_date\\\", field_value: \\\"{{$start_date}}\\\" }, { field_id: \\\"end_date\\\", field_value: \\\"{{$end_date}}\\\" }, { field_id: \\\"reason\\\", field_value: \\\"{{$reason}}\\\" }, { field_id: \\\"priority\\\", field_value: [\\"{{$priority}}\\"] } ] }) { card { id } } }" }'"