Start Task
POST /genesys/1/cs/services/${service_id}/tasks/start |
Description
This operation starts a task of a given type for the given service. The type is one of the enumerated values recorded for the corresponding business attribute. See Business Attributes in Context Services for further details. UCS assigns auto-incrementing identifiers to states, services, and tasks. For states and tasks, the assigned identifiers are 32-bit integers; for services the identifier is a 64-bit integer.
Operation
ID | CV.WS.SRV.8 | ||
---|---|---|---|
Method | POST | ||
URL | /genesys/1/cs/services/${service_id}/tasks/start | ||
Field Name | Type | Mandatory | Description |
URI Parameters | |||
${service_id} | integer | yes | The unique 64-bit ID of the service. |
Body: Task Start Event This body contains fields from the Task Start Event resources. | |||
state_id | integer | no | The 32-bit integer ID of the state. See State. |
task_type | long or string | no | The unique ID associated with the type of task, typically the DB ID of a value in a Business Attribute representing customer service tasks for the given organization
Refer to Configuration Options for more details on Business Attribute mapping.</ref>. |
session_id | string | no | The ID of the related session, for instance, the orchestration session or any other business session. |
interaction_id | string | no | The ID of the related Genesys interaction. This ID can be used by other Genesys reporting products such as Stat Server, URS, Composer, and GVP. |
application_type | long or string | no | The unique ID associated with the type or class of application issuing the service event. May be used to group related applications, potentially across resource types. |
application_id | integer | no | The unique ID (Genesys DB ID) for the application issuing the event, such as a GVP VoiceXML application or an Orchestration SCXML application. |
resource_type | long or string | no | The unique ID associated with the type or class of resource which provides the service (such as GVP, Agent Desktop, or Orchestration). |
resource_id | integer | no | The unique DB ID for the specific resource which provides the service. For instance:
|
media_type | long or string | no | The media type applicable to the given task; for instance, email, voice, or chat. |
est_duration | integer | no | The estimated task duration in seconds. |
timestamp | date/time | no | The UTC time at which the event was raised, with a precision of milliseconds, using the ISO 8601 representation : [YYYY]-[MM]-[DD]T[HH]:[mm]:[ss].[SSS]Z. If the application does not specify this timestamp, the server does it when the event is processed. |
<extension key> | Any JSON type | no | Service attached data as key-value pairs. You can add as many key-value pairs as needed. |
Response
The Context Management Service API answers with HTTP codes for every request. The following table shows the correct response for a successful request. See HTTP Response Codes and Errors for further details on the possible codes that this operation can return.
HTTP code | 201 |
---|---|
HTTP message | Created |
Header | Location: ${base_uri}/service/${service_id}/tasks/${task_id}
where:
|
Body | {"task_id": ${task_id}}
where:
|
Example
Operation
POST /genesys/1/cs/services/21456878/tasks/start { "interaction_id":42, "est_duration":460, "state_id":24, "task_type":customer info, "Survey": { "url":"http://ourServer/storage/userAnswers", "question1":7, "question2":true, "question3":"will be better with cable tv and on-demand video" }, "Proposal": [ { "car type":"cabriolet", "price":25 000, "seats":2, "comments":"200 cv, hardtop" }, { "car type":"S.U.V.", "price":70 000, "seats":8, "comments":"4wd, leather seats" } ] }
Result
{"task_id": 15928}