API
⌘K
My Developer Account

BlockoutScheduleConflict

Example Request

curl https://api.planningcenteronline.com/services/v2

View in API Explorer →

Example Object

{
  "type": "BlockoutScheduleConflict",
  "id": "1",
  "attributes": {
    "can_accept_partial": true,
    "dates": "string",
    "organization_name": "string",
    "person_avatar": "string",
    "person_name": "string",
    "position_display_times": "string",
    "service_type_name": "string",
    "short_dates": "string",
    "sort_date": "2000-01-01T12:00:00Z",
    "status": "string",
    "team_name": "string",
    "team_position_name": "string"
  },
  "relationships": {
    "organization": {
      "data": {
        "type": "Organization",
        "id": "1"
      }
    },
    "person": {
      "data": {
        "type": "Person",
        "id": "1"
      }
    },
    "plan": {
      "data": {
        "type": "Plan",
        "id": "1"
      }
    },
    "plan_person": {
      "data": {
        "type": "PlanPerson",
        "id": "1"
      }
    },
    "service_type": {
      "data": {
        "type": "ServiceType",
        "id": "1"
      }
    }
  }
}

Attributes

Name Type Description
can_accept_partial boolean
dates string
id primary_key
organization_name string
person_avatar string
person_name string
position_display_times string
service_type_name string
short_dates string
sort_date date_time
status string
team_name string
team_position_name string

Relationships

Name Type Association Type Note
organization Organization to_one
person Person to_one
plan Plan to_one
plan_person PlanPerson to_one
service_type ServiceType to_one

Pagination

Name Parameter Type Description
per_page per_page integer how many records to return per page (min=1, max=100, default=25)
offset offset integer get results from given offset

Endpoints

Listing

HTTP Method Endpoint
GET /services/v2

Reading

HTTP Method Endpoint
GET /services/v2/{id}