Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Tip

Available from CRM.COM R5.0.0

Table of Contents
maxLevel2

GET subscriptions/actions/get_scheduled

This method returns the subscription action which are scheduled to be executed and are in life cycle state Scheduled. Multiple subscription action types are returned by each call

Resource URL

Parameters

...

Name

...

Type

...

Description

...

token

...

String

...

The token retrieved from the login method

...

subscription_identifier

(mandatory)

...

The identifier of the subscription related with the actions that will be retrieved. The allowed subscription identifier fields are the following:

...

behavior_code

(optional)

...

The behavior code of the subscription actions that will be retrieved. If specified then only actions having the specified behavior code will be retrieved. The supported behavior codes are the following:

  1. ACTIVATE_SUBSCRIPTION
  2. ADD_SERVICE
  3. AMEND_BILLING_TERMS
  4. CHANGE_SUBSCRIBER_ACCOUNT
  5. CHANGE_SUBSCRIPTION_LOCATION
  6. DEACTIVATE_SUBSCRIPTION
  7. END_SUBSCRIPTION_RESTING
  8. EXTEND_GRACE_PERIOD
  9. REMOVE_SERVICE
  10. REST_SUBSCRIPTION
  11. START_SERVICE
  12. STOP_SERVICE
  13. SWAP_SERVICE
  14. TERMINATE_SUBSCRIPTION

...

business_classification_code

(optional)

...

The business classification code of the subscription actions that will be retrieved along with the action type. If specified then only actions having the specified business classification code will be retrieved. The supported business classification codes, per behavior code are the following:

  1. ACTIVATE_SUBSCRIPTION
  2.  ADD_SERVICE / ADD_SERVICE_AS_DRAFT
  3.  NEW_BINDING_PERIOD_TERMS / RENEWED_BINDING_PERIOD_TERMS / EXTENDED_BINDING_PERIOD_TERMS / ADJUSTED_BINDING_PERIOD_TERMS / CANCELED_BINDING_PERIOD_TERMS / NO_BINDING_PERIOD_TERM_CHANGES
  4. CHANGE_SUBSCRIBER / CHANGE_ACCOUNTS_RECEIVABLE
  5. CHANGE_SUBSCRIPTION_LOCATION
  6. DEACTIVATE_SUBSCRIPTION
  7. END_SUBSCRIPTION_RESTING
  8. EXTEND_GRACE_PERIOD
  9. REGRET_SERVICE / UNDO_ADD_SERVICE / REGRET_SERVICE / CANCEL_SERVICE
  10. REST_SUBSCRIPTION
  11. START_SERVICE
  12. STOP_SERVICE
  13. UPGRADE_SERVICE / DOWNGRADE_SERVICE / SWITCH_SERVICE

  14. REGRET_SUBSCRIPTION / CANCEL_SUBSCRIPTION

...

number_of_results

(optional)

...

The number of results that can be retrieved through each call

Tip

Available from CRM.COM R13.0.0

...

offset

(optional)

...

Defines the number of entities that should be skipped from the results. If it is set to 0 then none results should be skipped, otherwise the results will begin from the provided offset number

Tip

Available from CRM.COM R13.0.0

...

fields_set

(optional)

...

List of Strings, comma separated 

...

A list of fields that should be included in the results. If not specified then all the available fields will be returned

Response Data

...

Examples

Expand
titleExample 1

HTTP Method: GET

 

Request:

Response:

 

Code Block
themeConfluence
languagejavascript
linenumberstrue
 
      {
    "status":
    {
        "message": null,
        "description": null,
        "code": "OK"
    },
    "data":
    [
        {
            "scheduled_date": "2015-03-15T15:49:59",
            "action_type":
            {
                "name": "Deactivate subscribers",
                "id": "C61522563EAEBEDC5E44114BEBFCC8AC",
                "alternative_code": "00302"
            },
            "submitted_on": "2015-03-10T18:26:43",
            "sub_action_type":
            {
                "name": "Deactivation",
                "id": "4812DDB00F0940144053FA6B67AA4080",
                "alternative_code": "00303"
            },
            "business_classification_code": "DEACTIVATE_SUBSCRIPTION",
            "number": "721",
            "executed_on": null,
            "life_cycle_state": "SCHEDULED",
            "performed_by":
            {
                "person_name": "mpadministrator",
                "username": "mpadministrator",
                "id": "1"
            },
            "behavior_code": "DEACTIVATE_SUBSCRIPTION",
            "submitted_by":
            {
                "person_name": "mpadministrator",
                "username": "mpadministrator",
                "id": "1"
            },
            "id": "66FC63054A3E43AC951A99823ACA8B6A",
            "subscription":
            {
                "accounts_receivable":
                {
                    "account_owner":
                    {
                        "last_name": "Kuriakou",
                        "life_cycle_state": "FINANCIAL",
                        "middle_name": null,
                        "company_profile": null,
                        "title": null,
                        "type": "PERSON",
                        "first_name": "Kakos",
                        "name": "Kakos Kuriakou",
                        "id": "0C93319EC1B536ED3A9EF3D2C21F1342",
                        "company_name": null,
                        "demographics":
                        {
                            "gender": null,
                            "passport_issued_by_country": null,
                            "passport_number": null,
                            "social_security_number": null,
                            "country_of_residence":
                            {
                                "name": "JAPAN",
                                "id": "237"
                            },
                            "industry_sector": null,
                            "date_of_birth":
                            {
                                "month": null,
                                "day": null,
                                "year": null
                            },
                            "name_day":
                            {
                                "month": null,
                                "day": null
                            },
                            "id_number": null,
                            "id_issued_by_country": null,
                            "industry": null
                        }
                    },
                    "life_cycle_state": "ACTIVE",
                    "number": "82",
                    "name": "Kuriakou",
                    "id": "C977389E2F7BCAA0047BC6ADC2F8D2E2"
                },
                "life_cycle_state": "EFFECTIVE",
                "number": "S60058",
                "type":
                {
                    "name": "Normal Subscription",
                    "id": "6BB2B984CC9309775D06650C7493A836",
                    "description": null,
                    "alternative_code": "ST"
                },
                "id": "C8E3D014A8FAE4D352CDBDE30F7CC877"
            },
            "performed_on": "2015-03-10T18:26:43"
        }
    ]
}

POST subscriptions/actions/cancel

This method cancels a scheduled action. This web API method can be used only on actions which are in a scheduled life cycle state. A single subscription action can be cancelled by each call

Resource URL

Parameters

...

Name

...

Type

...

Description

...

token

...

String

...

The token retrieved from the login method

...

subscription_action_identifier

(mandatory)

...

The subscription action to be cancelled. The allowed subscription action identifier fields are the following:

...

fields_set

(optional)

...

Response Data

...

Examples

 

HTTP Method: POST

 

Request:

Body:

Expand
titleExample 1
Code Block
themeConfluence
languagejavascript
linenumberstrue
 {
  "token": "BAB61C7163984029A3E4877F727B145A",
  "subscription_action_identifier":{"id":"1F46975162B043F793845CF623DB30C3"}
}

Response:

Code Block
themeConfluence
languagejavascript
linenumberstrue
  { "status": { "message": null, "description": null, "code": "OK" }, "data": { "scheduled_date": "2015-03-06T00:00:00", "action_type": null, "submitted_on": "2015-03-05T12:15:06", "sub_action_type": null, "business_classification_code": "REST_SUBSCRIPTION", "number": "652", "executed_on": null, "life_cycle_state": "CANCELLED", "performed_by": { "person_name": "mpadministrator", "username": "mpadministrator", "id": "1" }, "behavior_code": "REST_SUBSCRIPTION", "submitted_by": { "person_name": "mpadministrator", "username": "mpadministrator", "id": "1" }, "id": "1F46975162B043F793845CF623DB30C3", "subscription": { "accounts_receivable": { "account_owner": { "last_name": "Ioannou62", "life_cycle_state": "FINANCIAL", "middle_name": null, "company_profile": null, "title": null, "type": "PERSON", "first_name": "Marios", "name": "Marios Ioannou62", "id": "ED341F6221594379885524F4881A0644", "company_name": null, "demographics": { "gender": null, "passport_issued_by_country": null, "passport_number": null, "social_security_number": null, "country_of_residence": { "name": "UNITED KINGDOM", "id": "126" }, "industry_sector": null, "date_of_birth": { "month": null, "day": null, "year": null }, "name_day": { "month": null, "day": null }, "id_number": null, "id_issued_by_country": null, "industry": null } }, "life_cycle_state": "ACTIVE", "number": "440", "name": "mar62", "id": "DF02CC62D9DE76DEB5C6B32BEBCBFDF1" }, "life_cycle_state": "NOT_EFFECTIVE", "number": "S60246", "type": { "name": "Digital", "id": "BF666FA094CA88E36BA6AE1F924C69F9", "description": null, "alternative_code": "DST" }, "id": "B4BB0997B5B62B1FAB5297E82AE14E4A" }, "performed_on": "2015-03-05T12:10:02" } } Panel
nameblue

Child pages (Children Display)
excerpttrue