Scheduleitems

The scheduleitems object captures the planned individual transactions that make up a schedule. This object enables merchants to create and make one-time adjustments to a scheduled transaction such as the amount or status of the transaction.

Scheduleitems Object

Parameter

Description

Type

Req

organization_id

The identification number of the associated organization. For example, org_5551236.

string

R

location_id

The identification number of the associated location. For example, loc_1234568.

string

R

schedule_id

A unique string used to represent a schedule. For example, sch_2e5770ae-c120-414f-ae8c-d065753567e7. [max length = 40]

string

R

customer_token

A unique string used to represent a customer. For example, cst_SoGUG6mcLUS1nVzYBIbk3g. [max length = 26]

string

R

paymethod_token

A unique string used to represent a payment method. For example, mth_1578436587. [max length = 26]

string

R

action

The supported transaction types include the following values:

sale - Creates an ad-hoc or token transaction that will settle at the end of the day
credit - Used to send funds back to the account/card holder rather than collecting funds from an account/card holder.

string

R

schedule_quantity

Indicates the quantity of transactions to perform. For continuous schedules, set the value of this field to 0. [max length = 6]

integer

R

schedule_frequency

Indicates the frequency of the scheduled transactions. The supported values for this field include the following:

one_time_future
weekly
bi_weekly
monthly
bi_monthly
semi_monthly
quarterly
semi_annually
annually

string

R

schedule_amount

Indicates the amount of each recurring transaction plus any sales taxes, shipping fees, tips or other extraneous amounts. For service fee transactions, use this parameter as the base amount for calculating a service fee. The value of this parameter depends on the value in the schedule_frequency parameter. [max length = 6]

decimal

O

schedule_service_fee_amount

The amount of the service fee (i.e., convenience fee).

decimal

O

schedule_authorization_amount

Indicates the amount of the recurring payment. For service fee transactions, this parameter is the resulting sum of the schedule_amount and the schedule_service_fee_amount values.

decimal

R

schedule_start_date

Indicates the start day of the next recurring transaction in MM/DD/YYYY format. This date can be today's date or greater. NOTE: If the merchant does not specify this value, the system defaults to today's date. [max length = 10]

datetime

R

schedule_created_date

The date the schedule was created. This parameter is return only.

datetime

--

customer_acct_code

The customer accounting code. This field only applies to credit card transactions. [max length = 17]

string

--

schedule_status

The current status of the schedule. The supported values for this field include the following:

active - The schedule is active.
suspended - The schedule is suspended.
completed - The schedule is completed

string

O

item_description

The check number or other description of the item to be processed. [max length = 50]

string

O

reference_id

A merchant-defined string that identifies the transaction. [max length = 50]

O

order_number

A merchant-assigned ID code that is returned with the transaction response. [max length = 26]

string

O

customer_id

A merchant-defined string created at the customer level to identify the customer. [max length = 15]

string

O

echeck

The eCheck Object

object

O

echeck.sec_code

The Standard Entry Class code for the transaction. This field is required for echeck transactions. Additionally, the available options for this field depend on your merchant configuration [max length = 3]

string

R

summary

The Summary Object

object

O

summary.schedule_next_amount

The amount of the next scheduled transaction that will be processed. This parameter is return only.

decimal

--

summary.schedule_next_date

The next date when a scheduled transaction will be processed. This parameter is return only.

datetime

--

summary.schedule_last_amount

The authorization amount for the last scheduled transaction that Forte processed. This parameter is return only.

decimal

--

summary.schedule_last_date

The date and timestamp when Forte processed the last scheduled transaction. This parameter is return only.

datetime

--

summary.schedule_successful_amount

The total amount of the successful transactions for this schedule. This parameter is return only.

decimal

--

summary.schedule_successful_authorization_amount

The authorization amount of the last scheduled transaction that Forte successfully processed. This parameter is return only.

decimal

--

summary.schedule_successful_quantity

The total number of successful transactions for this schedule. This parameter is return only.

integer

--

summary.schedule_failed_amount

The total amount of failed transactions for this schedule. This parameter is return only.

decimal

--

summary.schedule_failed_quantity

The total number of failed transactions for this schedule. This parameter is return only.

integer

--

summary.scheduled_remaining_amount

The total amount of the remaining transactions for this schedule. This parameter is return only.

decimal

--

summary.scheduled_remaining_quantity

The total number of the remaining transactions for this schedule. This parameter is return only.

integer

--

summary.scheduled_suspended_amount

The total amount of the suspended transactions for this schedule. This parameter is return only.

decimal

--

summary.scheduled_suspended_quantity

The total number of suspended transactions for this schedule. This parameter is return only.

integer

--

xdata

The Xdata Object

object

O

xdata.xdata_1-9

Up to nine fields (1-9) of extra data that can be associated with a schedule or transaction. Each xdata_# field can contain up to 255 characters.

string

O

POST Scheduleitems

				
					{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}/scheduleitems/
				
			

This URI creates a new scheduleitem and returns a unique schedule_item_id. If the schedule_item_date or schedule_item_amount fields are not passed, the system automatically calculates these values based on the last scheduleitem and the schedule definition records. The value of the schedule_item_date field must be a future date. NOTE: Scheduleitems cannot be created for non-active or continuous schedules.

AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}
 
Bodyraw
				
					{
       "schedule_id": "sch_ce7b86ea-7510-444e-bd46-431c8d175b7e",
       "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
       "paymethod_token": "mth_cp459q53Q0W5wJdMG35f1w",
       "schedule_item_amount": 100.00,
       "schedule_item_status": "scheduled",
       "schedule_item_date": "12/21/2018"
}
				
			

Example Request

				
					curl --location -g 'https://api.forte.net/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}/scheduleitems/' \
--header 'Authorization: {{Authorization}}' \
--header 'Accept: application/json' \
--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \
--header 'Content-Type: application/json' \
--data '{
       "schedule_id": "sch_ce7b86ea-7510-444e-bd46-431c8d175b7e",
       "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
       "paymethod_token": "mth_cp459q53Q0W5wJdMG35f1w",
       "schedule_item_amount": 100.00,
       "schedule_item_status": "scheduled",
       "schedule_item_date": "12/21/2018"
}'
				
			

Example Response

Edit Content
				
					{
  "schedule_item_id": "sci_b89bebb8-b124-4616-9e25-ce89671d3248",
  "location_id": "loc_192642",
  "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
  "paymethod_token": "mth_cp459q53Q0W5wJdMG35f1w",
  "schedule_id": "sch_ce7b86ea-7510-444e-bd46-431c8d175b7e",
  "schedule_item_amount": 100,
  "schedule_item_status": "scheduled",
  "schedule_item_date": "2018-12-21T00:00:00",
  "response": {
    "environment": "live",
    "response_desc": "Create Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/scheduleitems/sci_b89bebb8-b124-4616-9e25-ce89671d3248"
  }
}
				
			
Edit Content
Headers (13)
access-control-allow-origin
 

*

cache-control

no-cache

connection

keep-alive

content-type

application/json; charset=utf-8

date

Fri, 20 Oct 2017 16:48:21 GMT

expires

-1

pragma

no-cache

server

Microsoft-IIS/8.5

transfer-encoding

chunked

x-aspnet-version

4.0.30319

x-cdn

Incapsula

x-iinfo

4-50415110-50457878 NNNN CT(143 67 0) RT(1508517867264 233523) q(0 0 2 -1) r(4 4) U6

x-powered-by

ASP.NET

GET All Scheduleitems for an Organization

				
					{{baseURI}}/organizations/org_{{organizationID}}/scheduleitems/
				
			

This URI returns all scheduleitems for an Organization. To narrow your search data using specific criteria, use the following parameters to filter your results:

  • location_id

  • customer_token

  • paymethod_token

  • schedule_id

  • schedule_item_amount

  • schedule_item_status

  • start_schedule_item_date / end_schedule_item_date

  • start_schedule_item_processed_date / end_schedule_item_processed_date

  • start_schedule_item_created_date / end_schedule_item_created_date

Note: Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.

AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}

Example Request

				
					curl --location -g 'https://api.forte.net/v3/organizations/org_{{organizationID}}/scheduleitems/' \
--header 'Authorization: {{Authorization}}' \
--header 'Accept: application/json' \
--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \
--data ''
				
			

Example Response

Edit Content
				
					{
  "number_results": 10,
  "search_criteria": {
    "page_size": 50,
    "page_index": 0,
    "home_organization_id": "org_334316",
    "resource_specific": {}
  },
  "results": [
    {
      "schedule_item_id": "sci_f7c0a527-075c-4311-9b9e-63f6380256d4",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2016-12-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.88",
      "schedule_item_description": "Item 1 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_f7c0a527-075c-4311-9b9e-63f6380256d4"
      }
    },
    {
      "schedule_item_id": "sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-01-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.937",
      "schedule_item_description": "Item 2 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03"
      }
    },
    {
      "schedule_item_id": "sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-02-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.96",
      "schedule_item_description": "Item 3 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90"
      }
    },
    {
      "schedule_item_id": "sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-03-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.973",
      "schedule_item_description": "Item 4 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f"
      }
    },
    {
      "schedule_item_id": "sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-04-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.99",
      "schedule_item_description": "Item 5 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e"
      }
    },
    {
      "schedule_item_id": "sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-05-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.003",
      "schedule_item_description": "Item 6 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a"
      }
    },
    {
      "schedule_item_id": "sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-06-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.003",
      "schedule_item_description": "Item 7 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102"
      }
    },
    {
      "schedule_item_id": "sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-07-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.007",
      "schedule_item_description": "Item 8 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0"
      }
    },
    {
      "schedule_item_id": "sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-08-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.007",
      "schedule_item_description": "Item 9 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9"
      }
    },
    {
      "schedule_item_id": "sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-09-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.01",
      "schedule_item_description": "Item 10 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182"
      }
    }
  ],
  "response": {
    "environment": "live",
    "response_desc": "Get Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/scheduleitems/",
    "next": "https://api.forte.net/v3/scheduleitems/?page_index=1"
  }
}
				
			
Edit Content
Headers (12)

cache-control

no-cache

connection

keep-alive

content-type

application/json; charset=utf-8

date

Fri, 20 Oct 2017 16:30:23 GMT

expires

-1

pragma

no-cache

server

Microsoft-IIS/8.5

transfer-encoding

chunked

x-aspnet-version

4.0.30319

x-cdn

Incapsula

x-iinfo

4-50268422-50268425 NNNN CT(37 72 0) RT(1508517023360 49) q(0 0 1 -1) r(2 2) U16

x-powered-by

ASP.NET

GET All Scheduleitems for a Location

				
					{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/scheduleitems/
				
			

This URI returns all scheduleitems for a Location. To narrow your search data using specific criteria, use the following parameters to filter your results:

  • customer_token
  • paymethod_token
  • schedule_id
  • schedule_item_amount
  • schedule_item_status
  • start_schedule_item_date / end_schedule_item_date
  • start_schedule_item_processed_date / end_schedule_item_processed_date
  • start_schedule_item_created_date / end_schedule_item_created_date
AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}

Example Request

				
					curl --location -g 'https://api.forte.net/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/scheduleitems/' \
--header 'Authorization: {{Authorization}}' \
--header 'Accept: application/json' \
--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \
--data ''
				
			

Example Response

Edit Content
				
					{
  "number_results": 10,
  "search_criteria": {
    "page_size": 50,
    "page_index": 0,
    "home_organization_id": "org_334316",
    "resource_specific": {
      "location_id": "loc_192642"
    }
  },
  "results": [
    {
      "schedule_item_id": "sci_f7c0a527-075c-4311-9b9e-63f6380256d4",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2016-12-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.88",
      "schedule_item_description": "Item 1 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_f7c0a527-075c-4311-9b9e-63f6380256d4"
      }
    },
    {
      "schedule_item_id": "sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-01-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.937",
      "schedule_item_description": "Item 2 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03"
      }
    },
    {
      "schedule_item_id": "sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-02-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.96",
      "schedule_item_description": "Item 3 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90"
      }
    },
    {
      "schedule_item_id": "sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-03-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.973",
      "schedule_item_description": "Item 4 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f"
      }
    },
    {
      "schedule_item_id": "sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-04-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.99",
      "schedule_item_description": "Item 5 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e"
      }
    },
    {
      "schedule_item_id": "sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-05-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.003",
      "schedule_item_description": "Item 6 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a"
      }
    },
    {
      "schedule_item_id": "sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-06-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.003",
      "schedule_item_description": "Item 7 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102"
      }
    },
    {
      "schedule_item_id": "sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-07-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.007",
      "schedule_item_description": "Item 8 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0"
      }
    },
    {
      "schedule_item_id": "sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-08-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.007",
      "schedule_item_description": "Item 9 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9"
      }
    },
    {
      "schedule_item_id": "sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-09-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.01",
      "schedule_item_description": "Item 10 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182"
      }
    }
  ],
  "response": {
    "environment": "live",
    "response_desc": "Get Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/scheduleitems/",
    "next": "https://api.forte.net/v3/scheduleitems/?page_index=1"
  }
}
				
			
Edit Content
Headers (12)

cache-control

no-cache

connection

keep-alive

content-type

application/json; charset=utf-8

date

Fri, 20 Oct 2017 16:44:27 GMT

expires

-1

pragma

no-cache

server

Microsoft-IIS/8.5

transfer-encoding

chunked

x-aspnet-version

4.0.30319

x-cdn

Incapsula

x-iinfo

4-50415110-50415124 NNNN CT(32 71 0) RT(1508517867264 62) q(0 0 1 -1) r(2 2) U16

x-powered-by

ASP.NET

GET All Future Scheduleitems for a Customer Token

				
					{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/scheduleitems?filter=schedule_item_status+eq+'scheduled'
				
			

This URI returns all future scheduleitems for a particular customer using the customer_token.

AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}
 
PARAMS
 
filter                   schedule_item_status+eq+’scheduled’

Example Request

				
					curl --location -g 'https://api.forte.net/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/scheduleitems?filter=schedule_item_status%2Beq%2B%27scheduled%27' \
--header 'Authorization: {{Authorization}}' \
--header 'Accept: application/json' \
--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \
--data ''
				
			

Example Response

Edit Content
				
					{
  "number_results": 2,
  "search_criteria": {
    "page_size": 50,
    "page_index": 0,
    "home_organization_id": "org_300005",
    "resource_specific": {
      "location_id": "loc_124125",
      "customer_token": "cst_4cchlZjaK02XFlTEIIScYA",
      "schedule_item_status": "scheduled"
    }
  },
  "results": [
    {
      "schedule_item_id": "sci_fd527b6b-fa1e-41d9-ab2e-6aa5fd0f56f8",
      "organization_id": "org_300005",
      "customer_token": "cst_4cchlZjaK02XFlTEIIScYA",
      "paymethod_token": "mth_xEtTVUgRiEyFonyM0xtrxA",
      "schedule_id": "sch_a3db1463-af7d-4b84-93f3-a48d7cc4c96f",
      "schedule_item_amount": 5,
      "schedule_item_service_fee_amount": 2,
      "schedule_item_tax_amount": 1,
      "schedule_item_authorization_amount": 7,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2018-04-09T05:00:00",
      "schedule_item_created_date": "2018-03-26T13:41:26.38",
      "schedule_item_description": "Item 2 of 3",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_fd527b6b-fa1e-41d9-ab2e-6aa5fd0f56f8"
      }
    },
    {
      "schedule_item_id": "sci_b62006e5-0b7e-47bb-8e30-e703eda91526",
      "organization_id": "org_300005",
      "customer_token": "cst_4cchlZjaK02XFlTEIIScYA",
      "paymethod_token": "mth_xEtTVUgRiEyFonyM0xtrxA",
      "schedule_id": "sch_a3db1463-af7d-4b84-93f3-a48d7cc4c96f",
      "schedule_item_amount": 5,
      "schedule_item_service_fee_amount": 2,
      "schedule_item_tax_amount": 1,
      "schedule_item_authorization_amount": 7,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2018-04-23T05:00:00",
      "schedule_item_created_date": "2018-03-26T13:41:26.39",
      "schedule_item_description": "Item 3 of 3",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_b62006e5-0b7e-47bb-8e30-e703eda91526"
      }
    }
  ],
  "response": {
    "environment": "live",
    "response_desc": "Get Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/scheduleitems/?filter=schedule_item_status+eq+%27scheduled%27"
  }
}
				
			
Edit Content
Headers (8)
Cache-Control

no-cache Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds

Connection

keep-alive Options that are desired for the connection

Content-Length

1775 The length of the response body in octets (8-bit bytes)

 

content-type

application/json; charset=utf-8 The mime type of this content

date

Mon, 09 Apr 2018 21:27:35 GMT The date and time that the message was sent

expires

-1 Gives the date/time after which the response is considered stale

pragma

no-cache Implementation-specific headers that may have various effects anywhere along the request-response chain.

server

A name for the server

GET All Future Scheduleitems for a Paymethod Token

				
					{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}/scheduleitems?filter=schedule_item_status+eq+'scheduled'
				
			

This URI returns all future scheduleitems for a particular paymethod using the paymethod_token.

AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}
 
PARAMS
 
filter                   schedule_item_status+eq+’scheduled’

Example Request

				
					curl --location -g 'https://api.forte.net/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}/scheduleitems?filter=schedule_item_status%2Beq%2B%27scheduled%27' \
--header 'Authorization: {{Authorization}}' \
--header 'Accept: application/json' \
--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \
--data ''
				
			

Example Response

Edit Content
				
					{
  "number_results": 18,
  "search_criteria": {
    "page_size": 50,
    "page_index": 0,
    "home_organization_id": "org_334316",
    "resource_specific": {
      "location_id": "loc_192642",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg"
    }
  },
  "results": [
    {
      "schedule_item_id": "sci_f7c0a527-075c-4311-9b9e-63f6380256d4",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2016-12-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.88",
      "schedule_item_description": "Item 1 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_f7c0a527-075c-4311-9b9e-63f6380256d4"
      }
    },
    {
      "schedule_item_id": "sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-01-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.937",
      "schedule_item_description": "Item 2 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03"
      }
    },
    {
      "schedule_item_id": "sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-02-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.96",
      "schedule_item_description": "Item 3 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90"
      }
    },
    {
      "schedule_item_id": "sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-03-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.973",
      "schedule_item_description": "Item 4 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f"
      }
    },
    {
      "schedule_item_id": "sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-04-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:27.99",
      "schedule_item_description": "Item 5 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e"
      }
    },
    {
      "schedule_item_id": "sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-05-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.003",
      "schedule_item_description": "Item 6 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a"
      }
    },
    {
      "schedule_item_id": "sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-06-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.003",
      "schedule_item_description": "Item 7 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102"
      }
    },
    {
      "schedule_item_id": "sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-07-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.007",
      "schedule_item_description": "Item 8 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0"
      }
    },
    {
      "schedule_item_id": "sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-08-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.007",
      "schedule_item_description": "Item 9 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9"
      }
    },
    {
      "schedule_item_id": "sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-09-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.01",
      "schedule_item_description": "Item 10 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182"
      }
    },
    {
      "schedule_item_id": "sci_ae98158b-2c74-4552-aca9-643c61e8f00d",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-10-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.01",
      "schedule_item_description": "Item 11 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_ae98158b-2c74-4552-aca9-643c61e8f00d"
      }
    },
    {
      "schedule_item_id": "sci_1af98a71-cf95-4658-ab68-cd994400130a",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 25,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-11-11T08:00:00",
      "schedule_item_created_date": "2016-10-11T12:44:28.013",
      "schedule_item_description": "Item 12 of 12",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_1af98a71-cf95-4658-ab68-cd994400130a"
      }
    },
    {
      "schedule_item_id": "sci_441fa0ae-b5ab-46b6-abd4-01cd9db68e5e",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 100,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2016-12-21T08:00:00",
      "schedule_item_created_date": "2016-10-21T13:10:26.003",
      "schedule_item_description": "",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_441fa0ae-b5ab-46b6-abd4-01cd9db68e5e"
      }
    },
    {
      "schedule_item_id": "sci_4d6c562a-54a4-446e-abc6-97daaeb159c0",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 100,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2016-12-21T08:00:00",
      "schedule_item_created_date": "2016-11-28T12:44:32.013",
      "schedule_item_description": "",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_4d6c562a-54a4-446e-abc6-97daaeb159c0"
      }
    },
    {
      "schedule_item_id": "sci_b3d46bab-966f-4729-b37e-666b557f4347",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 100,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2016-12-21T08:00:00",
      "schedule_item_created_date": "2016-11-28T13:57:30.127",
      "schedule_item_description": "",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_b3d46bab-966f-4729-b37e-666b557f4347"
      }
    },
    {
      "schedule_item_id": "sci_2bb8953c-9564-49f9-a357-63699b31c237",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 100,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2016-12-21T08:00:00",
      "schedule_item_created_date": "2016-12-14T23:33:36.197",
      "schedule_item_description": "",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_2bb8953c-9564-49f9-a357-63699b31c237"
      }
    },
    {
      "schedule_item_id": "sci_03c0a9be-fa93-478c-afa6-ee73fe9ed7a0",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 100,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-12-21T08:00:00",
      "schedule_item_created_date": "2017-01-06T09:45:09.463",
      "schedule_item_description": "",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_03c0a9be-fa93-478c-afa6-ee73fe9ed7a0"
      }
    },
    {
      "schedule_item_id": "sci_19ccd5d1-f3b4-4888-b183-c62543653d21",
      "organization_id": "org_334316",
      "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
      "paymethod_token": "mth_3urq2yQexUmRWD3v8SOqlg",
      "schedule_id": "sch_efb0d951-3f54-40b2-8ad8-febca0131562",
      "schedule_item_amount": 100,
      "schedule_item_status": "scheduled",
      "schedule_item_date": "2017-12-21T08:00:00",
      "schedule_item_created_date": "2017-01-06T10:25:54.51",
      "schedule_item_description": "",
      "links": {
        "self": "https://api.forte.net/v3/scheduleitems/sci_19ccd5d1-f3b4-4888-b183-c62543653d21"
      }
    }
  ],
  "response": {
    "environment": "live",
    "response_desc": "Get Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/scheduleitems/"
  }
}
				
			
Edit Content
Headers (12)

cache-control

no-cache

connection

keep-alive

content-type

application/json; charset=utf-8

date

Fri, 20 Oct 2017 16:36:56 GMT

expires

-1

pragma

no-cache

server

Microsoft-IIS/8.5

transfer-encoding

chunked

x-aspnet-version

4.0.30319

x-cdn

Incapsula

x-iinfo

4-50268422-50337173 NNNN CT(0 0 0) RT(1508517023360 393308) q(0 0 0 -1) r(1 1) U16

x-powered-by

ASP.NET

GET A Specific Scheduleitem

				
					{{baseURI}}/organizations/org_{{organizationID}}/scheduleitems/sci_{{scheduleitemID}}
				
			

This URI returns a specific scheduleitem using the schedule_id parameter.

AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}

Example Request

				
					curl --location -g 'https://api.forte.net/v3/organizations/org_{{organizationID}}/scheduleitems/sci_{{scheduleitemID}}' \
--header 'Authorization: {{Authorization}}' \
--header 'Accept: application/json' \
--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \
--data ''
				
			

Example Response

Edit Content
				
					{
  "schedule_item_id": "sci_ef428d98-aaa5-42af-b63e-3ccdad88805b",
  "organization_id": "org_334316",
  "customer_token": "cst_h_TrrHANEU6XjmMV_EMVrA",
  "paymethod_token": "mth_cp459q53Q0W5wJdMG35f1w",
  "schedule_id": "sch_857eed95-b661-468c-8037-1cb63a13f23a",
  "schedule_item_amount": 25,
  "schedule_item_service_fee_amount": 0,
  "schedule_item_authorization_amount": 25,
  "schedule_item_status": "scheduled",
  "schedule_item_date": "2017-07-11T08:00:00",
  "schedule_item_created_date": "2016-11-02T13:19:59.907",
  "schedule_item_description": "Item 8 of 12",
  "response": {
    "environment": "live",
    "response_desc": "Get Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/scheduleitems/sci_ef428d98-aaa5-42af-b63e-3ccdad88805b"
  }
}
				
			
Edit Content
Headers (12)

cache-control

no-cache

connection

keep-alive

content-type

application/json; charset=utf-8

date

Fri, 20 Oct 2017 16:33:36 GMT

expires

-1

pragma

no-cache

server

Microsoft-IIS/8.5

transfer-encoding

chunked

x-aspnet-version

4.0.30319

x-cdn

Incapsula

x-iinfo

4-50268422-50302263 NNNN CT(58 49 0) RT(1508517023360 192388) q(0 0 1 -1) r(3 3) U16

x-powered-by

ASP.NET

PUT Update a Scheduleitem

				
					{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/scheduleitems/sci_{{scheduleitemID}}
				
			

This URI updates the specified scheduleitem. Only scheduleitems with a future date value in the schedule_item_date field and a status of scheduled or suspended in the schedule_item_status field can be updated. If the status of a scheduleitem in a continuous schedule is changed to suspended, the status of the schedule definition will also be suspended. NOTE: Updates to the schedule_item_created_date and schedule_item_processed_date are not allowed.

AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}
 
Bodyraw
				
					{
       "schedule_item_amount": 200.00
}
				
			

Example Request

				
					{
  "schedule_item_id": "sci_0d2d949e-b3a9-4e6d-a9c9-db358ae49cfa",
  "location_id": "loc_192642",
  "schedule_item_amount": 200,
  "response": {
    "environment": "live",
    "response_desc": "Update Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/scheduleitems/sci_0d2d949e-b3a9-4e6d-a9c9-db358ae49cfa"
  }
}
				
			

Example Response

Edit Content
				
					{
  "location_id": "loc_208855",
  "hold_funds": false,
  "services": {
    "card": {
      "per_trans_debit": 500,
      "per_trans_credit": 500,
      "daily_debit": 10000,
      "daily_credit": 10000,
      "monthly_debit": 100000,
      "monthly_credit": 100000
    },
    "echeck": {
      "per_trans_debit": 500,
      "per_trans_credit": 500,
      "daily_debit": 1000,
      "daily_credit": 1000,
      "monthly_debit": 50000,
      "monthly_credit": 50000
    }
  },
  "response": {
    "environment": "live",
    "response_desc": "Update Successful."
  },
  "links": {
    "self": "https://api.forte.net/v3/locations/loc_208855"
  }
}
				
			
Edit Content
Headers (13)
access-control-allow-origin
 

*

cache-control

no-cache

connection

keep-alive

content-lenght

301

content-type

application/json; charset=utf-8

date

Fri, 20 Oct 2017 16:50:17 GMT

expires

-1

pragma

no-cache

server

Microsoft-IIS/8.5

transfer-encoding

chunked

x-aspnet-version

4.0.30319

x-cdn

Incapsula

x-iinfo

4-50415110-50477732 NNNN CT(53 73 0) RT(1508517867264 349250) q(0 0 1 -1) r(3 3) U6

x-powered-by

ASP.NET

DELETE Scheduleitem

				
					{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}//scheduleitems/sci_{{scheduleitemID}}
				
			

This URI deletes the specified scheduleitem. Deleting a scheduleitem will not delete the schedule definition.

AUTHORIZATION Basic Auth
 
Username     {{apiaccessid}}
Password      {{apisecurekey}}

Example Request

				
					curl --location -g --request DELETE 'https://api.forte.net/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}//scheduleitems/sci_{{scheduleitemID}}' \
--header 'Authorization: {{Authorization}}' \
--header 'Accept: application/json' \
--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \
--data ''
				
			

Example Response

Edit Content
Edit Content
Headers (13)
access-control-allow-origin
 

*

cache-control

no-cache

connection

keep-alive

content-length

164

content-type

application/json; charset=utf-8

date

Fri, 20 Oct 2017 16:52:22 GMT

expires

-1

pragma

no-cache

server

Microsoft-IIS/8.5

transfer-encoding

chunked

x-aspnet-version

4.0.30319

x-cdn

Incapsula

x-iinfo

4-50415110-50499293 NNNN CT(32 33 0) RT(1508517867264 474988) q(0 0 1 -1) r(2 2) U6

x-powered-by

ASP.NET

On this page