POST datastore/schemas

(Difference between revisions)
Jump to: navigation, search
(Request)
Line 61: Line 61:
 
=== Request ===
 
=== Request ===
  
Creates a new schema named "first_schema" with two fields, one named "first_field" with "string" type and another named "second_field" with "integer" type.
+
Creates a new schema named "first_schema" with two fields, one named "first_field" with "string" type and another one named "second_field" with "integer" type.
  
 
  curl -iX POST 'https://api.socialidnow.com/v1/marketing/datastore/schemas' \
 
  curl -iX POST 'https://api.socialidnow.com/v1/marketing/datastore/schemas' \

Revision as of 15:29, 3 November 2014

Contents

Description

Creates a new Schema.

Resource URL

  POST https://api.socialidnow.com/v1/marketing/datastore/schemas

Parameters

JSON Parameters

schema required a hash in the format field:value, with the necessary fields to create a schema:
name required schema name.
fields optional an array of hashed in the format field:value, with the necessary fields to create a field:
name required field name.
type required field type (array, boolean, date, datetime, float, hash, integer, string, time).

Authentication

This API requires Marketing Account authentication. See Authentication.

Response

Response Status

created (201) The schema was created successfully.
bad_request (400) Some required parameter was not informed.
unauthorized (401) The authentication is wrong. See Authentication.
unprocessable_entity (422) Validation error in the field "schema".
internal_server_error (500) An unknown error happened.

Examples

Request

Creates a new schema named "first_schema" with two fields, one named "first_field" with "string" type and another one named "second_field" with "integer" type.

curl -iX POST 'https://api.socialidnow.com/v1/marketing/datastore/schemas' \
-d '{
      "schema": {
        "name":"first_schema",
        "fields":[
          { "name":"first_field", "type":"string" },
          { "name":"second_field", "type":"integer" }
        ]
       }
     }' \
-H 'Content-type: application/json' \
--user 138:e8b9ca24f1b590af67e6271297d6e1f7226625d61c5b5daa1b2f215464e292cf

Response

Response Headers

HTTP/1.1 201 Created
Location: 'https://api.socialidnow.com/v1/marketing/datastore/schemas/first_schema'
Status: 201
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox