Update fulfillment status

This API allows you to update the fulfillment status of a reward.

👍

Note

For detailed information about our APIs and for hands-on testing, refer documentation in API overview and step-by-step guide on making your first API call in Make your first API call .

Prerequisites

  • Basic or OAuth Authentication
  • Default access group

Resource information

URI/api_gateway/rewards/core/v1/fulfillmentStatus
HTTP MethodPUT
PaginationNo
Batch supportNo
Rate limit informationNone

API endpoint example

https://eucrm.cc.capillarytech.com/api_gateway/rewards/core/v1/fulfillmentStatus

Request body parameters

ParameterData TypeDescription
id*IntegerUnique identifier for the status
name*StringName of the status
isEnabled*BooleanIndicates if the status is enabled. By default, isEnabled is set to true.
[
     {
        "id": 3,
        "name": "Order confirmed",
        "isEnabled": true
    },
    {
        "id": 4,
        "name": "On the way",
        "isEnabled": true
    }
]

Response parameters

ParameterData TypeDescription
idIntegerUnique identifier for the status
orgIdIntegerID of the org.
nameStringName of the status
isEnabledBooleanIndicates if the status is enabled. By default, isEnabled is set to true.
lastUpdatedByIntegerIdentifier of the user who last updated the status
lastUpdatedOnLongTimestamp of when the status was last updated
[
    {
        "id": 3,
        "orgId": 100458,
        "name": "Order confirmed",
        "isEnabled": true,
        "lastUpdatedBy": 75130850,
        "lastUpdatedOn": 1721724740074
    },
    {
        "id": 4,
        "orgId": 100458,
        "name": "On the way",
        "isEnabled": true,
        "lastUpdatedBy": 75130850,
        "lastUpdatedOn": 1721724740087
    }
]
Language
Authorization
Basic
base64
:
URL
Click Try It! to start a request and see the response here!