# Get specific point campaign
You can return a specific point campaign details.
GET
/point-campaign/:id/
Attributes | Type | Required | Description |
---|---|---|---|
id | integer | yes | A unique identifier for the point campaign which is given by User.com |
# Request
- CURL
- JavaScript
- PHP
- Python
curl --location --request GET 'https://<your_app_subdomain>.user.com/api/public/point-campaign/1/' \
--header 'accept: application/json' \
--header 'Authorization: Token <your_64_char_api_key>' \
--header 'Accept: */*; version=2'
# Response
{
"id": 1,
"name": "string",
"start_date": "2022-03-09T13:18:42.359000Z",
"end_date": "2022-03-09T13:18:42.359000Z",
"created_at": "2022-03-09T13:56:21.520067Z",
"status": 1,
"assigned_events": [0],
"assigned_product_events": [0],
"revenue_goal": 0,
"query_map": {}
}