Einpix API documentation
  1. Venue
Einpix API documentation
  • Changelog
  • About
  • API
    • Task
      • Create
      • List
      • Detail
      • Change status
    • Checklist
      • By task
    • Client
      • List
      • Detail
    • User
      • List
      • Detail
    • Venue
      • Create
        POST
      • List
        GET
      • Detail
        GET
    • Category
      • Task
        • List
        • Detail
    • Tag
      • List
      • Detail
    • Template
      • Checklist
        • List
        • Detail
    • Equipment
      • List
      • Detail
    • Comment
      • Create
      • Detail
    • Worklog
      • List
      • Hisory
    • Materials
      • By task
    • Service
      • By task
  • Schemas
    • User
    • Venue
    • Task
    • Task comment
    • Tag
    • Task category
    • Picture
    • Check item
    • Equipment
    • Client
    • Task severity
    • Attachment
    • Changed log
    • User group
    • WDJ material
    • Unit master
    • WDJ service
    • Worklog History
    • Checklist template
    • Worklog
    • Activity task
    • Downtime task
    • Sla rule
  1. Venue

Create

POST
venues
This API endpoint allows you to create a new venue or project within an organization. Based on user visibility and permissions, you can assign them as a direct venue assignee and optionally add venue or project-related notes. Venue creation may be limited/restricted if the location is outside the organization's registered country.

Request

Header Params

Body Params multipart/form-data

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.einpix.com/public/v1/venues' \
--header 'x-api-key;' \
--form 'name="{% faker address.direction %}"' \
--form 'street_address="{% faker address.streetAddress %}"' \
--form 'city="{% faker address.city %}"' \
--form 'country="{% faker address.country %}"' \
--form 'radius="100"' \
--form 'assignees[]=""' \
--form 'assignees[]="100"' \
--form 'assignees[]="121"' \
--form 'assignees[]="211"' \
--form 'created_by="1"' \
--form 'notes="{% faker lorem.paragraph %}"' \
--form 'latitude="{% faker address.latitude %}"' \
--form 'longitude="{% faker address.longitude %}"'

Responses

🟢201Created
application/json
Body

Example
{
    "success": true,
    "id": 1
}
Modified at 2025-09-11 10:29:01
Previous
Detail
Next
List
Built with