Available methods
Add campaign feedback
POST /campaigns/{campaign_id}/feedback
Add feedback on a specific campaign.
Path parameters
campaign_id
The unique id for the campaign.
Request body parameters
block_id
Type: Integer
Title: Block ID
Read only: false
The block id for the editable block that the feedback addresses.
message
Type: String
Title: Message
Read only: false
The content of the feedback.
is_complete
Type: Boolean
Title: Complete
Read only: false
The status of feedback.
Response body parameters
feedback_id
Type: Integer
Title: Feedback ID
Read only: true
The individual id for the feedback item.
parent_id
Type: Integer
Title: Parent ID
Read only: true
If a reply, the id of the parent feedback item.
block_id
Type: Integer
Title: Block ID
Read only: false
The block id for the editable block that the feedback addresses.
message
Type: String
Title: Message
Read only: false
The content of the feedback.
is_complete
Type: Boolean
Title: Complete
Read only: false
The status of feedback.
created_by
Type: String
Title: Created By
Read only: true
The login name of the user who created the feedback.
created_at
Type: String
Title: Created At
Read only: true
The date and time the feedback item was created in ISO 8601 format.
updated_at
Type: String
Title: Updated At
Read only: true
The date and time the feedback was last updated in ISO 8601 format.
source
Type: String
Title: Source
Read only: true
The source of the feedback.
Possible Values:
api
email
sms
web
ios
android
campaign_id
Type: String
Title: Campaign ID
Read only: true
The unique id for the campaign.
_links
Type: Array
Title: Links
Read only: true
A list of link types and descriptions for the API schema documents.
Show properties
rel
Type: String
Title: Rel
Read only: true
As with an HTML ‘rel’ attribute, this describes the type of link.
href
Type: String
Title: Href
Read only: true
This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
method
Type: String
Title: Method
Read only: true
The HTTP method that should be used when accessing the URL defined in ‘href’.
Possible Values:
GET
POST
PUT
PATCH
DELETE
OPTIONS
HEAD
targetSchema
Type: String
Title: Target Schema
Read only: true
For GETs, this is a URL representing the schema that the response should conform to.
schema
Type: String
Title: Schema
Read only: true
For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
Example request
curl --request POST \
--url 'https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback' \
--user 'anystring:apikey' \
--header 'content-type: application/json' \
--data '{"message": "Please make sure we include a link to the joke from last week."}' \
--include
Example response
HTTP/1.1 200 OK
Server: nginx
Content-Type: application/json; charset=utf-8
Content-Length: 1094
Vary: Accept-Encoding
X-Request-Id: facd279d-47e0-4992-abea-440fb77b34fa
Link: <https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json>; rel="describedBy"
Date: Tue, 15 Sep 2015 18:49:11 GMT
Connection: keep-alive
{
"feedback_id": 5445,
"parent_id": 0,
"block_id": 0,
"message": "Please make sure we include a link to the joke from last week.",
"is_complete": false,
"created_by": "Freddie Jokes",
"created_at": "2015-09-15 18:49:11",
"updated_at": "2015-09-15 18:49:11",
"source": "api",
"campaign_id": "42694e9e57",
"_links": [
{
"rel": "self",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "parent",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
},
{
"rel": "update",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "PATCH",
"schema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "delete",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "DELETE",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
}
]
}
Error response
type
Type: String
Title: Problem Type
Read only: false
An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.
title
Type: String
Title: Error Title
Read only: false
A short, human-readable summary of the problem type. It shouldn’t change based on the occurrence of the problem, except for purposes of localization.
status
Type: Integer
Title: HTTP Status Code
Read only: false
The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.
detail
Type: String
Title: Error Message
Read only: false
A human-readable explanation specific to this occurrence of the problem. Learn more about errors .
instance
Type: String
Title: Instance ID
Read only: false
A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.
Get feedback about a campaign
GET /campaigns/{campaign_id}/feedback
Get team feedback while you’re working together on a Mailchimp campaign .
Path parameters
campaign_id
The unique id for the campaign.
Query string parameters
fields
Type: Array
Title: Fields
Read only: false
A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
exclude_fields
Type: Array
Title: Exclude Fields
Read only: false
A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation.
Response body parameters
feedback
Type: Array
Title: Campaign Feedback
Read only: false
A collection of feedback items for a campaign.
Show properties
feedback_id
Type: Integer
Title: Feedback ID
Read only: true
The individual id for the feedback item.
parent_id
Type: Integer
Title: Parent ID
Read only: true
If a reply, the id of the parent feedback item.
block_id
Type: Integer
Title: Block ID
Read only: false
The block id for the editable block that the feedback addresses.
message
Type: String
Title: Message
Read only: false
The content of the feedback.
is_complete
Type: Boolean
Title: Complete
Read only: false
The status of feedback.
created_by
Type: String
Title: Created By
Read only: true
The login name of the user who created the feedback.
created_at
Type: String
Title: Created At
Read only: true
The date and time the feedback item was created in ISO 8601 format.
updated_at
Type: String
Title: Updated At
Read only: true
The date and time the feedback was last updated in ISO 8601 format.
source
Type: String
Title: Source
Read only: true
The source of the feedback.
Possible Values:
api
email
sms
web
ios
android
campaign_id
Type: String
Title: Campaign ID
Read only: true
The unique id for the campaign.
_links
Type: Array
Title: Links
Read only: true
A list of link types and descriptions for the API schema documents.
Show properties
rel
Type: String
Title: Rel
Read only: true
As with an HTML ‘rel’ attribute, this describes the type of link.
href
Type: String
Title: Href
Read only: true
This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
method
Type: String
Title: Method
Read only: true
The HTTP method that should be used when accessing the URL defined in ‘href’.
Possible Values:
GET
POST
PUT
PATCH
DELETE
OPTIONS
HEAD
targetSchema
Type: String
Title: Target Schema
Read only: true
For GETs, this is a URL representing the schema that the response should conform to.
schema
Type: String
Title: Schema
Read only: true
For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
campaign_id
Type: String
Title: Campaign ID
Read only: true
The unique id for the campaign.
total_items
Type: Integer
Title: Item Count
Read only: false
The total number of items matching the query regardless of pagination.
_links
Type: Array
Title: Links
Read only: true
A list of link types and descriptions for the API schema documents.
Show properties
rel
Type: String
Title: Rel
Read only: true
As with an HTML ‘rel’ attribute, this describes the type of link.
href
Type: String
Title: Href
Read only: true
This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
method
Type: String
Title: Method
Read only: true
The HTTP method that should be used when accessing the URL defined in ‘href’.
Possible Values:
GET
POST
PUT
PATCH
DELETE
OPTIONS
HEAD
targetSchema
Type: String
Title: Target Schema
Read only: true
For GETs, this is a URL representing the schema that the response should conform to.
schema
Type: String
Title: Schema
Read only: true
For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
Example request
curl --request GET \
--url 'https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback' \
--user 'anystring:apikey' \
--include
Example response
HTTP/1.1 200 OK
Server: nginx
Content-Type: application/json; charset=utf-8
Content-Length: 2876
Vary: Accept-Encoding
X-Request-Id: f7e26b1b-d4d0-4864-a127-b8aef6e2f59b
Link: <https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json>; rel="describedBy"
Date: Tue, 15 Sep 2015 18:36:13 GMT
Connection: keep-alive
{
"feedback": [
{
"feedback_id": 5437,
"parent_id": 0,
"block_id": 0,
"message": "Can we use the new Freddie image in the header? You know, the one where he's wearing the viking hat?",
"is_complete": false,
"created_by": "Freddie Jokes",
"created_at": "2015-09-15 18:32:00",
"updated_at": "2015-09-15 18:32:01",
"source": "web",
"campaign_id": "42694e9e57",
"_links": [
{
"rel": "self",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5437",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "parent",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
},
{
"rel": "update",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5437",
"method": "PATCH",
"schema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "delete",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5437",
"method": "DELETE",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
}
]
},
{
"feedback_id": 5441,
"parent_id": 0,
"block_id": 0,
"message": "I really like the font in the body, but can we make it a bit bigger?\n\n-Freddie",
"is_complete": false,
"created_by": "freddie@freddiesjokes.com",
"created_at": "2015-09-15 18:33:45",
"updated_at": "2015-09-15 18:33:47",
"source": "email",
"campaign_id": "42694e9e57",
"_links": [
{
"rel": "self",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5441",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "parent",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
},
{
"rel": "update",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5441",
"method": "PATCH",
"schema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "delete",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5441",
"method": "DELETE",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
}
]
}
],
"campaign_id": "",
"total_items": 2,
"_links": [
{
"rel": "parent",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Instance.json"
},
{
"rel": "self",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
},
{
"rel": "create",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback",
"method": "POST",
"schema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
}
]
}
Error response
type
Type: String
Title: Problem Type
Read only: false
An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.
title
Type: String
Title: Error Title
Read only: false
A short, human-readable summary of the problem type. It shouldn’t change based on the occurrence of the problem, except for purposes of localization.
status
Type: Integer
Title: HTTP Status Code
Read only: false
The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.
detail
Type: String
Title: Error Message
Read only: false
A human-readable explanation specific to this occurrence of the problem. Learn more about errors .
instance
Type: String
Title: Instance ID
Read only: false
A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.
Get a specific feedback message
GET /campaigns/{campaign_id}/feedback/{feedback_id}
Get a specific feedback message from a campaign.
Path parameters
campaign_id
The unique id for the campaign.
feedback_id
The unique id for the feedback message.
Query string parameters
fields
Type: Array
Title: Fields
Read only: false
A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
exclude_fields
Type: Array
Title: Exclude Fields
Read only: false
A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation.
Response body parameters
feedback_id
Type: Integer
Title: Feedback ID
Read only: true
The individual id for the feedback item.
parent_id
Type: Integer
Title: Parent ID
Read only: true
If a reply, the id of the parent feedback item.
block_id
Type: Integer
Title: Block ID
Read only: false
The block id for the editable block that the feedback addresses.
message
Type: String
Title: Message
Read only: false
The content of the feedback.
is_complete
Type: Boolean
Title: Complete
Read only: false
The status of feedback.
created_by
Type: String
Title: Created By
Read only: true
The login name of the user who created the feedback.
created_at
Type: String
Title: Created At
Read only: true
The date and time the feedback item was created in ISO 8601 format.
updated_at
Type: String
Title: Updated At
Read only: true
The date and time the feedback was last updated in ISO 8601 format.
source
Type: String
Title: Source
Read only: true
The source of the feedback.
Possible Values:
api
email
sms
web
ios
android
campaign_id
Type: String
Title: Campaign ID
Read only: true
The unique id for the campaign.
_links
Type: Array
Title: Links
Read only: true
A list of link types and descriptions for the API schema documents.
Show properties
rel
Type: String
Title: Rel
Read only: true
As with an HTML ‘rel’ attribute, this describes the type of link.
href
Type: String
Title: Href
Read only: true
This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
method
Type: String
Title: Method
Read only: true
The HTTP method that should be used when accessing the URL defined in ‘href’.
Possible Values:
GET
POST
PUT
PATCH
DELETE
OPTIONS
HEAD
targetSchema
Type: String
Title: Target Schema
Read only: true
For GETs, this is a URL representing the schema that the response should conform to.
schema
Type: String
Title: Schema
Read only: true
For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
Example request
curl --request GET \
--url 'https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445' \
--user 'anystring:apikey' \
--include
Example response
HTTP/1.1 200 OK
Server: nginx
Content-Type: application/json; charset=utf-8
Content-Length: 1094
Vary: Accept-Encoding
X-Request-Id: 22302731-1ce0-426d-a57e-8000259816b0
Link: <https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json>; rel="describedBy"
Date: Tue, 15 Sep 2015 18:56:58 GMT
Connection: keep-alive
{
"feedback_id": 5445,
"parent_id": 0,
"block_id": 0,
"message": "Please make sure we include a link to the joke from last week.",
"is_complete": false,
"created_by": "Freddie Jokes",
"created_at": "2015-09-15 18:49:11",
"updated_at": "2015-09-15 18:49:12",
"source": "api",
"campaign_id": "42694e9e57",
"_links": [
{
"rel": "self",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "parent",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
},
{
"rel": "update",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "PATCH",
"schema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "delete",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "DELETE",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
}
]
}
Error response
type
Type: String
Title: Problem Type
Read only: false
An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.
title
Type: String
Title: Error Title
Read only: false
A short, human-readable summary of the problem type. It shouldn’t change based on the occurrence of the problem, except for purposes of localization.
status
Type: Integer
Title: HTTP Status Code
Read only: false
The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.
detail
Type: String
Title: Error Message
Read only: false
A human-readable explanation specific to this occurrence of the problem. Learn more about errors .
instance
Type: String
Title: Instance ID
Read only: false
A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.
Update a campaign feedback message
PATCH /campaigns/{campaign_id}/feedback/{feedback_id}
Update a specific feedback message for a campaign.
Path parameters
campaign_id
The unique id for the campaign.
feedback_id
The unique id for the feedback message.
Request body parameters
block_id
Type: Integer
Title: Block ID
Read only: false
The block id for the editable block that the feedback addresses.
message
Type: String
Title: Message
Read only: false
The content of the feedback.
is_complete
Type: Boolean
Title: Complete
Read only: false
The status of feedback.
Response body parameters
feedback_id
Type: Integer
Title: Feedback ID
Read only: true
The individual id for the feedback item.
parent_id
Type: Integer
Title: Parent ID
Read only: true
If a reply, the id of the parent feedback item.
block_id
Type: Integer
Title: Block ID
Read only: false
The block id for the editable block that the feedback addresses.
message
Type: String
Title: Message
Read only: false
The content of the feedback.
is_complete
Type: Boolean
Title: Complete
Read only: false
The status of feedback.
created_by
Type: String
Title: Created By
Read only: true
The login name of the user who created the feedback.
created_at
Type: String
Title: Created At
Read only: true
The date and time the feedback item was created in ISO 8601 format.
updated_at
Type: String
Title: Updated At
Read only: true
The date and time the feedback was last updated in ISO 8601 format.
source
Type: String
Title: Source
Read only: true
The source of the feedback.
Possible Values:
api
email
sms
web
ios
android
campaign_id
Type: String
Title: Campaign ID
Read only: true
The unique id for the campaign.
_links
Type: Array
Title: Links
Read only: true
A list of link types and descriptions for the API schema documents.
Show properties
rel
Type: String
Title: Rel
Read only: true
As with an HTML ‘rel’ attribute, this describes the type of link.
href
Type: String
Title: Href
Read only: true
This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
method
Type: String
Title: Method
Read only: true
The HTTP method that should be used when accessing the URL defined in ‘href’.
Possible Values:
GET
POST
PUT
PATCH
DELETE
OPTIONS
HEAD
targetSchema
Type: String
Title: Target Schema
Read only: true
For GETs, this is a URL representing the schema that the response should conform to.
schema
Type: String
Title: Schema
Read only: true
For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
Example request
curl --request PATCH \
--url 'https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445' \
--user 'anystring:apikey' \
--header 'content-type: application/json' \
--data '{"message": "Please make sure we include a link to the jokes from the last two weeks."}' \
--include
Example response
HTTP/1.1 200 OK
Server: nginx
Content-Type: application/json; charset=utf-8
Content-Length: 1104
Vary: Accept-Encoding
X-Request-Id: 482e3405-c601-4d0f-aad4-eb1c08183560
Link: <https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json>; rel="describedBy"
Date: Tue, 15 Sep 2015 19:00:24 GMT
Connection: keep-alive
{
"feedback_id": 5445,
"parent_id": 0,
"block_id": 0,
"message": "Please make sure we include a link to the jokes from the last two weeks.",
"is_complete": false,
"created_by": "Freddie Jokes",
"created_at": "2015-09-15 18:49:11",
"updated_at": "2015-09-15 19:00:24",
"source": "api",
"campaign_id": "42694e9e57",
"_links": [
{
"rel": "self",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "parent",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback",
"method": "GET",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
},
{
"rel": "update",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "PATCH",
"schema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Instance.json"
},
{
"rel": "delete",
"href": "https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445",
"method": "DELETE",
"targetSchema": "https://api.mailchimp.com/schema/3.0/Campaigns/Feedback/Collection.json"
}
]
}
Error response
type
Type: String
Title: Problem Type
Read only: false
An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.
title
Type: String
Title: Error Title
Read only: false
A short, human-readable summary of the problem type. It shouldn’t change based on the occurrence of the problem, except for purposes of localization.
status
Type: Integer
Title: HTTP Status Code
Read only: false
The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.
detail
Type: String
Title: Error Message
Read only: false
A human-readable explanation specific to this occurrence of the problem. Learn more about errors .
instance
Type: String
Title: Instance ID
Read only: false
A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.
Delete a campaign feedback message
DELETE /campaigns/{campaign_id}/feedback/{feedback_id}
Remove a specific feedback message for a campaign.
Example request
curl --request DELETE \
--url 'https://usX.api.mailchimp.com/3.0/campaigns/42694e9e57/feedback/5445' \
--user 'anystring:apikey' \
--include
Example response
HTTP/1.1 204 No Content
Server: nginx
Content-Type: application/json; charset=utf-8
Content-Length: 2
X-Request-Id: 35fdac40-680c-4bb3-9eb4-e75b5efa8933
Date: Tue, 15 Sep 2015 19:02:06 GMT
Connection: keep-alive
Error response
type
Type: String
Title: Problem Type
Read only: false
An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.
title
Type: String
Title: Error Title
Read only: false
A short, human-readable summary of the problem type. It shouldn’t change based on the occurrence of the problem, except for purposes of localization.
status
Type: Integer
Title: HTTP Status Code
Read only: false
The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.
detail
Type: String
Title: Error Message
Read only: false
A human-readable explanation specific to this occurrence of the problem. Learn more about errors .
instance
Type: String
Title: Instance ID
Read only: false
A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.