Skip to main content
POST
/
integrations
/
lookups
/
wells
Create Well Lookup
curl --request POST \
  --url https://v1.api.flux-os.com/integrations/lookups/wells \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-user-id: <api-key>' \
  --data '
{
  "name": "<string>",
  "well": "<unknown>",
  "organization": "<unknown>",
  "start_date": "2023-12-25",
  "end_date": null
}
'
{
  "data": {
    "name": "<string>",
    "well": "<unknown>",
    "organization": "<unknown>",
    "start_date": "2023-12-25",
    "id": "<string>",
    "end_date": null
  }
}

Authorizations

x-api-key
string
header
required
x-user-id
string
header
required

Body

application/json
name
string
required
well
any
required
organization
any
required
start_date
string<date>
required
end_date
string<date> | null

Response

Well lookup created

data
object