> ## Documentation Index
> Fetch the complete documentation index at: https://developers.everflow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Approve or Reject Applications

Bulk approve or reject offer applications. Provide an array of application IDs and a patches array specifying the target status. Optionally send an email notification to the affiliate.


## OpenAPI

````yaml openapi/applications.yaml patch /networks/applications
openapi: 3.0.3
info:
  title: Everflow Network API - Offer Applications
  description: >
    Endpoints for managing offer applications in the Everflow platform.
    Affiliates submit applications to run offers that require approval. Network
    managers can search, approve, or reject these applications.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Offer Applications
    description: Endpoints for searching and managing offer applications.
paths:
  /networks/applications:
    patch:
      tags:
        - Offer Applications
      summary: Approve or Reject Applications
      requestBody:
        required: true
        content:
          application/json:
            example:
              network_application_ids:
                - 3
              patches:
                - field_name: application_status
                  field_value: approved
              send_email: false
            schema:
              type: object
              required:
                - network_application_ids
                - patches
              properties:
                network_application_ids:
                  type: array
                  items:
                    type: integer
                  description: List of application IDs to update.
                patches:
                  type: array
                  description: Array of patch operations to apply.
                  items:
                    type: object
                    required:
                      - field_name
                      - field_value
                    properties:
                      field_name:
                        type: string
                        enum:
                          - application_status
                        description: >-
                          The field to update. Only "application_status" is
                          supported. Modifying application_status also updates
                          the affiliate's offer visibility accordingly.
                      field_value:
                        type: string
                        enum:
                          - approved
                          - rejected
                        description: >-
                          The target status value. Accepted values are
                          "approved" and "rejected".
                send_email:
                  type: boolean
                  description: >-
                    Whether to send an email notification to the affiliate about
                    the status change.
      responses:
        '200':
          description: Applications updated successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
                    description: Whether the operation was accepted.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````